From db76c46a771467b040c322a52827e3a1611f153e Mon Sep 17 00:00:00 2001 From: Toni000 Date: Wed, 10 Jul 2024 12:09:54 +0200 Subject: [PATCH 01/25] #267 backend: new deployment that hopefully runs https --- README.md | 2 +- .../dps_training_k/configuration/settings.py | 9 ----- .../deployment/django/entrypoint | 1 - .../deployment/nginx/Dockerfile | 3 +- .../deployment/nginx/nginx.conf | 33 +++++++--------- .../deployment/nginx/server_nginx.conf | 39 +++++++++++++++++++ backend/dps_training_k/docker-compose.yml | 7 ++-- backend/dps_training_k/game/urls.py | 4 +- docker-compose.yml | 12 ++++-- .../src/components/widgets/LoginPatient.vue | 2 +- .../src/components/widgets/LoginTrainer.vue | 2 +- 11 files changed, 71 insertions(+), 43 deletions(-) create mode 100644 backend/dps_training_k/deployment/nginx/server_nginx.conf diff --git a/README.md b/README.md index 49b44b0e..a8399cdf 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Replace `` with `prod` or `dev` in the following commands to use the r /docker-compose.yml, ./.env.). 2. Recommended: As the env files are probably stored in a public repository, it is strongly encouraged to change the SECRET_KEY and the POSTGRES_PASSWORD variables in the used `.env.` file. -3. Log into the GitHub Packages registry with the following command. Ask a team member for valid credentials. +3. Log into the GitHub Packages registry with the following command. Ask a team member for valid credentials. Note: passing secrets as command line arguments is insecure. consider using `--password-stdin` instead ```bash docker login ghcr.io -u -p ``` diff --git a/backend/dps_training_k/configuration/settings.py b/backend/dps_training_k/configuration/settings.py index d53a39a7..442519b4 100644 --- a/backend/dps_training_k/configuration/settings.py +++ b/backend/dps_training_k/configuration/settings.py @@ -50,7 +50,6 @@ "django.contrib.contenttypes", "django.contrib.sessions", "django.contrib.messages", - "django.contrib.staticfiles", "corsheaders", "game.apps.GameConfig", "helpers.apps.GameConfig", @@ -134,12 +133,6 @@ USE_TZ = True - -# Static files (CSS, JavaScript, Images) -# https://docs.djangoproject.com/en/5.0/howto/static-files/ - -STATIC_URL = "static/" - # Default primary key field type # https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field @@ -163,8 +156,6 @@ AUTH_USER_MODEL = "game.User" -STATIC_ROOT = os.path.join(BASE_DIR, "staticfiles") - # Celery # ------------------------------------------------------------------------------ # See: http://docs.celeryproject.org/en/latest/userguide/configuration.html diff --git a/backend/dps_training_k/deployment/django/entrypoint b/backend/dps_training_k/deployment/django/entrypoint index 5191dd85..97e2582c 100644 --- a/backend/dps_training_k/deployment/django/entrypoint +++ b/backend/dps_training_k/deployment/django/entrypoint @@ -7,7 +7,6 @@ if [ "${RUN_MIGRATIONS:-0}" = "1" ]; then python manage.py makemigrations python manage.py migrate - python manage.py collectstatic --noinput python manage.py import_patient_information python manage.py loaddata patient_states.json python manage.py import_actions diff --git a/backend/dps_training_k/deployment/nginx/Dockerfile b/backend/dps_training_k/deployment/nginx/Dockerfile index df3b3f4f..6acb950d 100644 --- a/backend/dps_training_k/deployment/nginx/Dockerfile +++ b/backend/dps_training_k/deployment/nginx/Dockerfile @@ -1,4 +1,3 @@ FROM nginx:latest -RUN rm /etc/nginx/conf.d/default.conf -COPY nginx.conf /etc/nginx/conf.d \ No newline at end of file +RUN rm /etc/nginx/conf.d/default.conf \ No newline at end of file diff --git a/backend/dps_training_k/deployment/nginx/nginx.conf b/backend/dps_training_k/deployment/nginx/nginx.conf index be69df13..a445d986 100644 --- a/backend/dps_training_k/deployment/nginx/nginx.conf +++ b/backend/dps_training_k/deployment/nginx/nginx.conf @@ -1,27 +1,22 @@ -upstream configuration { - server django:8000; -} - server { - listen 80; - location / { - proxy_pass http://configuration; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection "Upgrade"; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + location /api { + proxy_pass http://django:8000/api; proxy_set_header Host $host; - proxy_redirect off; - } - - - location /static/ { - alias /app/staticfiles/; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; } - location /media/ { - alias /app/mediafiles/; + location /ws { + proxy_pass http://django:8000/ws; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; } - } \ No newline at end of file diff --git a/backend/dps_training_k/deployment/nginx/server_nginx.conf b/backend/dps_training_k/deployment/nginx/server_nginx.conf new file mode 100644 index 00000000..bd002e08 --- /dev/null +++ b/backend/dps_training_k/deployment/nginx/server_nginx.conf @@ -0,0 +1,39 @@ +server { + listen 80; + server_name klinik-dps.de www.klinik-dps.de; + location / { + return 301 https://$host$request_uri; + } +} +server { + listen 443 ssl; + server_name klinik-dps.de www.klinik-dps.de; + + ssl_certificate /etc/nginx/ssl/fullchain.pem; + ssl_certificate_key /etc/nginx/ssl/privkey.pem; + + location / { + proxy_pass http://frontend:5173; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + location /api { + proxy_pass http://django:8000/api; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + location /ws { + proxy_pass http://django:8000/ws; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } +} \ No newline at end of file diff --git a/backend/dps_training_k/docker-compose.yml b/backend/dps_training_k/docker-compose.yml index b6472ed1..7e3f085b 100644 --- a/backend/dps_training_k/docker-compose.yml +++ b/backend/dps_training_k/docker-compose.yml @@ -42,8 +42,8 @@ services: volumes: - static_volume:/app/staticfiles - .:/app:z - expose: - - 8000 + ports: + - 8000:8000 command: uvicorn configuration.asgi:application --host 0.0.0.0 --reload stdin_open: true tty: true @@ -82,8 +82,9 @@ services: container_name: K-dPS-nginx volumes: - static_volume:/app/staticfiles + - ./deployment/nginx/nginx.conf:/etc/nginx/conf.d/nginx.conf ports: - - "8000:80" + - "80:80" depends_on: - django diff --git a/backend/dps_training_k/game/urls.py b/backend/dps_training_k/game/urls.py index e3471e33..97655839 100644 --- a/backend/dps_training_k/game/urls.py +++ b/backend/dps_training_k/game/urls.py @@ -2,6 +2,6 @@ from django.urls import path urlpatterns = [ - path("patient/access", PatientAccessView.as_view(), name="patient-access"), - path("trainer/login", TrainerLoginView.as_view(), name="trainer-login") + path("api/patient/access", PatientAccessView.as_view(), name="patient-access"), + path("api/trainer/login", TrainerLoginView.as_view(), name="trainer-login") ] diff --git a/docker-compose.yml b/docker-compose.yml index 1286e83f..72ac7aea 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -48,8 +48,8 @@ services: - RUN_MIGRATIONS=1 # only django should run migrations volumes: - static_volume:/app/staticfiles - expose: - - 8000 + ports: + - 8000:8000 command: uvicorn configuration.asgi:application --host 0.0.0.0 --reload # Celery worker service (e.g. scheduled tasks) @@ -86,11 +86,15 @@ services: - django volumes: - static_volume:/app/staticfiles + - /etc/letsencrypt/live/klinik-dps.de/fullchain.pem:/etc/nginx/ssl/fullchain.pem:ro + - /etc/letsencrypt/live/klinik-dps.de/privkey.pem:/etc/nginx/ssl/privkey.pem:ro + - /etc/nginx/conf.d:/etc/nginx/conf.d ports: - - "8000:80" + - "80:80" + - "443:443" # Frontend service - web: + frontend: image: ghcr.io/hpi-sam/dps_training_k-frontend:${IMAGE_TAG} container_name: K-dPS-frontend labels: diff --git a/frontend/src/components/widgets/LoginPatient.vue b/frontend/src/components/widgets/LoginPatient.vue index 9e2f76df..dd1b764e 100644 --- a/frontend/src/components/widgets/LoginPatient.vue +++ b/frontend/src/components/widgets/LoginPatient.vue @@ -26,7 +26,7 @@ "patientId": patientId, } - fetch('http://' + import.meta.env.VITE_SERVER_URL + ':8000/patient/access', { + fetch('http://' + import.meta.env.VITE_SERVER_URL + '/api/patient/access', { method: 'POST', headers: { 'Content-Type': 'application/json', diff --git a/frontend/src/components/widgets/LoginTrainer.vue b/frontend/src/components/widgets/LoginTrainer.vue index 6f13e1a9..22633695 100644 --- a/frontend/src/components/widgets/LoginTrainer.vue +++ b/frontend/src/components/widgets/LoginTrainer.vue @@ -17,7 +17,7 @@ "password": password, } - fetch('http://' + import.meta.env.VITE_SERVER_URL + ':8000/trainer/login', { + fetch('http://' + import.meta.env.VITE_SERVER_URL + '/api/trainer/login', { method: 'POST', headers: { 'Content-Type': 'application/json', From 937204167b896cd4c37145fc7abdfc06b2c3059d Mon Sep 17 00:00:00 2001 From: Toni000 Date: Wed, 10 Jul 2024 12:39:06 +0200 Subject: [PATCH 02/25] 267: clean up frontend url and vite server url --- .env.dev | 2 +- .env.prod | 2 +- backend/dps_training_k/.env.dev | 2 +- backend/dps_training_k/.env.prod | 2 +- backend/dps_training_k/configuration/settings.py | 2 +- frontend/.env.prod | 2 +- frontend/src/sockets/SocketPatient.ts | 2 +- frontend/src/sockets/SocketTrainer.ts | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.env.dev b/.env.dev index ecab1677..b9734c4f 100644 --- a/.env.dev +++ b/.env.dev @@ -16,4 +16,4 @@ POSTGRES_DB=dps POSTGRES_USER=dps POSTGRES_PASSWORD=dps -FRONTEND_URL=localhost +FRONTEND_URL=http://localhost diff --git a/.env.prod b/.env.prod index 8f26db2d..ecc52c70 100644 --- a/.env.prod +++ b/.env.prod @@ -16,4 +16,4 @@ POSTGRES_DB=dps POSTGRES_USER=dps POSTGRES_PASSWORD=ozuCk0rrF6nzkzcR1TQMR93m3iYUzMBG -FRONTEND_URL=klinik-dps.de +FRONTEND_URL=https://klinik-dps.de diff --git a/backend/dps_training_k/.env.dev b/backend/dps_training_k/.env.dev index e8432270..f1d7f593 100644 --- a/backend/dps_training_k/.env.dev +++ b/backend/dps_training_k/.env.dev @@ -14,4 +14,4 @@ POSTGRES_DB=dps POSTGRES_USER=dps POSTGRES_PASSWORD=dps -FRONTEND_URL=localhost +FRONTEND_URL=http://localhost diff --git a/backend/dps_training_k/.env.prod b/backend/dps_training_k/.env.prod index 6c01416c..20324e0a 100644 --- a/backend/dps_training_k/.env.prod +++ b/backend/dps_training_k/.env.prod @@ -14,4 +14,4 @@ POSTGRES_DB=dps POSTGRES_USER=dps POSTGRES_PASSWORD=ozuCk0rrF6nzkzcR1TQMR93m3iYUzMBG -FRONTEND_URL=localhost +FRONTEND_URL=http://localhost diff --git a/backend/dps_training_k/configuration/settings.py b/backend/dps_training_k/configuration/settings.py index 442519b4..78060093 100644 --- a/backend/dps_training_k/configuration/settings.py +++ b/backend/dps_training_k/configuration/settings.py @@ -32,7 +32,7 @@ # SECURITY WARNING: don't run with debug turned on in production! DEBUG = env.bool("DEBUG") CORS_ORIGIN_ALLOW_ALL = DEBUG -CORS_ALLOWED_ORIGINS = ["http://" + env.str("FRONTEND_URL") + ":5173"] +CORS_ALLOWED_ORIGINS = [env.str("FRONTEND_URL")] RUN_CONFIG = env.str("RUN_CONFIG", default="dev") CSRF_TRUSTED_ORIGINS = ["http://localhost:8000"] diff --git a/frontend/.env.prod b/frontend/.env.prod index 6d74ef09..3b3691d6 100644 --- a/frontend/.env.prod +++ b/frontend/.env.prod @@ -4,4 +4,4 @@ SERVER_URL=139.162.170.6 # frontend config for local development without docker VITE_RUN_CONFIG=prod -VITE_SERVER_URL=139.162.170.6 +VITE_SERVER_URL=klinik-dps.de diff --git a/frontend/src/sockets/SocketPatient.ts b/frontend/src/sockets/SocketPatient.ts index 67fe652d..9e00a341 100644 --- a/frontend/src/sockets/SocketPatient.ts +++ b/frontend/src/sockets/SocketPatient.ts @@ -247,7 +247,7 @@ class SocketPatient { } } -const socketPatient = new SocketPatient('ws://' + import.meta.env.VITE_SERVER_URL + ':8000/ws/patient/?token=') +const socketPatient = new SocketPatient('ws://' + import.meta.env.VITE_SERVER_URL + '/ws/patient/?token=') export default socketPatient export const serverMockEvents = [ diff --git a/frontend/src/sockets/SocketTrainer.ts b/frontend/src/sockets/SocketTrainer.ts index bbefae95..3a8d0c34 100644 --- a/frontend/src/sockets/SocketTrainer.ts +++ b/frontend/src/sockets/SocketTrainer.ts @@ -251,7 +251,7 @@ class SocketTrainer { } } -const socketTrainer = new SocketTrainer('ws://' + import.meta.env.VITE_SERVER_URL + ':8000/ws/trainer/?token=') +const socketTrainer = new SocketTrainer('ws://' + import.meta.env.VITE_SERVER_URL + '/ws/trainer/?token=') export default socketTrainer export const serverMockEvents = [ From aa3b9bfd32cac3eb8841cb546ec3d13a1ec29894 Mon Sep 17 00:00:00 2001 From: Toni000 Date: Wed, 10 Jul 2024 14:10:37 +0200 Subject: [PATCH 03/25] #267: change vite server url based on dev/prod --- frontend/.env.dev | 3 ++- frontend/.env.prod | 3 ++- frontend/src/components/widgets/LoginPatient.vue | 2 +- frontend/src/components/widgets/LoginTrainer.vue | 2 +- frontend/src/sockets/SocketPatient.ts | 2 +- frontend/src/sockets/SocketTrainer.ts | 2 +- 6 files changed, 8 insertions(+), 6 deletions(-) diff --git a/frontend/.env.dev b/frontend/.env.dev index 675cb47d..02f19d9c 100644 --- a/frontend/.env.dev +++ b/frontend/.env.dev @@ -4,4 +4,5 @@ SERVER_URL=localhost # frontend config for local development without docker VITE_RUN_CONFIG=dev -VITE_SERVER_URL=localhost +VITE_SERVER_URL_HTTP=http://localhost +VITE_SERVER_URL_WS=ws://localhost diff --git a/frontend/.env.prod b/frontend/.env.prod index 3b3691d6..79fa495a 100644 --- a/frontend/.env.prod +++ b/frontend/.env.prod @@ -4,4 +4,5 @@ SERVER_URL=139.162.170.6 # frontend config for local development without docker VITE_RUN_CONFIG=prod -VITE_SERVER_URL=klinik-dps.de +VITE_SERVER_URL_HTTP=https://klinik-dps.de +VITE_SERVER_URL_WS=wss://klinik-dps.de diff --git a/frontend/src/components/widgets/LoginPatient.vue b/frontend/src/components/widgets/LoginPatient.vue index dd1b764e..67468ce5 100644 --- a/frontend/src/components/widgets/LoginPatient.vue +++ b/frontend/src/components/widgets/LoginPatient.vue @@ -26,7 +26,7 @@ "patientId": patientId, } - fetch('http://' + import.meta.env.VITE_SERVER_URL + '/api/patient/access', { + fetch(import.meta.env.VITE_SERVER_URL_HTTP + '/api/patient/access', { method: 'POST', headers: { 'Content-Type': 'application/json', diff --git a/frontend/src/components/widgets/LoginTrainer.vue b/frontend/src/components/widgets/LoginTrainer.vue index 22633695..796ca0b3 100644 --- a/frontend/src/components/widgets/LoginTrainer.vue +++ b/frontend/src/components/widgets/LoginTrainer.vue @@ -17,7 +17,7 @@ "password": password, } - fetch('http://' + import.meta.env.VITE_SERVER_URL + '/api/trainer/login', { + fetch(import.meta.env.VITE_SERVER_URL_HTTP + '/api/trainer/login', { method: 'POST', headers: { 'Content-Type': 'application/json', diff --git a/frontend/src/sockets/SocketPatient.ts b/frontend/src/sockets/SocketPatient.ts index 9e00a341..f3f2a390 100644 --- a/frontend/src/sockets/SocketPatient.ts +++ b/frontend/src/sockets/SocketPatient.ts @@ -247,7 +247,7 @@ class SocketPatient { } } -const socketPatient = new SocketPatient('ws://' + import.meta.env.VITE_SERVER_URL + '/ws/patient/?token=') +const socketPatient = new SocketPatient(import.meta.env.VITE_SERVER_URL_WS + '/ws/patient/?token=') export default socketPatient export const serverMockEvents = [ diff --git a/frontend/src/sockets/SocketTrainer.ts b/frontend/src/sockets/SocketTrainer.ts index 3a8d0c34..5dd591fb 100644 --- a/frontend/src/sockets/SocketTrainer.ts +++ b/frontend/src/sockets/SocketTrainer.ts @@ -251,7 +251,7 @@ class SocketTrainer { } } -const socketTrainer = new SocketTrainer('ws://' + import.meta.env.VITE_SERVER_URL + '/ws/trainer/?token=') +const socketTrainer = new SocketTrainer(import.meta.env.VITE_SERVER_URL_WS + '/ws/trainer/?token=') export default socketTrainer export const serverMockEvents = [ From f732a2a9f0cc1a7e942b4f3411d0a61c49ede75a Mon Sep 17 00:00:00 2001 From: Toni000 Date: Wed, 10 Jul 2024 14:24:45 +0200 Subject: [PATCH 04/25] #267: update prod env files --- README.md | 2 +- backend/dps_training_k/.env.prod | 2 +- frontend/.env.prod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a8399cdf..f694f57e 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ The application is now deployed and the website should be accessible on port 517 the containers restarted accordingly. Keep in mind that the IP address of the server running the back- and frontend are hardcoded in the environment files. For -the backend a simple correction of the `FRONTEND_URL` variable within the `.env.` file on the server is enough, but fot the frontend the +the backend a simple correction of the `FRONTEND_URL` variable within the `.env.` file on the server is enough, but for the frontend the `SERVER_URL` variable (and `VITE_SERVER_URL` variable for building without docker) has to be adjusted in the associated env file and the image has to be rebuilt and re-uploaded to the GitHub Packages registry. diff --git a/backend/dps_training_k/.env.prod b/backend/dps_training_k/.env.prod index 20324e0a..dbc5809b 100644 --- a/backend/dps_training_k/.env.prod +++ b/backend/dps_training_k/.env.prod @@ -14,4 +14,4 @@ POSTGRES_DB=dps POSTGRES_USER=dps POSTGRES_PASSWORD=ozuCk0rrF6nzkzcR1TQMR93m3iYUzMBG -FRONTEND_URL=http://localhost +FRONTEND_URL=https://klinik-dps.de diff --git a/frontend/.env.prod b/frontend/.env.prod index 79fa495a..c3fcf75a 100644 --- a/frontend/.env.prod +++ b/frontend/.env.prod @@ -1,6 +1,6 @@ # frontend config for production (also: see ../.env.prod) RUN_CONFIG=prod -SERVER_URL=139.162.170.6 +SERVER_URL=klinik-dps.de # frontend config for local development without docker VITE_RUN_CONFIG=prod From ba896277e718428ee50e18f714d6e791f7c241cf Mon Sep 17 00:00:00 2001 From: Toni000 Date: Wed, 10 Jul 2024 14:48:16 +0200 Subject: [PATCH 05/25] #267: clean up frontend env vars --- frontend/.env.dev | 5 ----- frontend/.env.prod | 5 ----- frontend/Dockerfile | 4 ---- 3 files changed, 14 deletions(-) diff --git a/frontend/.env.dev b/frontend/.env.dev index 02f19d9c..df06fbf1 100644 --- a/frontend/.env.dev +++ b/frontend/.env.dev @@ -1,8 +1,3 @@ -# frontend config for local development - docker version (also: see ../.env.dev) -RUN_CONFIG=dev -SERVER_URL=localhost - -# frontend config for local development without docker VITE_RUN_CONFIG=dev VITE_SERVER_URL_HTTP=http://localhost VITE_SERVER_URL_WS=ws://localhost diff --git a/frontend/.env.prod b/frontend/.env.prod index c3fcf75a..3845a0cb 100644 --- a/frontend/.env.prod +++ b/frontend/.env.prod @@ -1,8 +1,3 @@ -# frontend config for production (also: see ../.env.prod) -RUN_CONFIG=prod -SERVER_URL=klinik-dps.de - -# frontend config for local development without docker VITE_RUN_CONFIG=prod VITE_SERVER_URL_HTTP=https://klinik-dps.de VITE_SERVER_URL_WS=wss://klinik-dps.de diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 54371859..cba8d25a 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -2,14 +2,10 @@ FROM node:latest LABEL authors="Wolkenfarmer, Joshua Riewesell" WORKDIR /app RUN npm install -g vite -ARG RUN_CONFIG -ARG SERVER_URL RUN if [ "$RUN_CONFIG" = "prod" ]; then npm install -g serve; fi COPY package*.json ./ RUN npm install COPY . . -ENV VITE_RUN_CONFIG=$RUN_CONFIG -ENV VITE_SERVER_URL=$SERVER_URL ENV PORT=5173 EXPOSE 5173 RUN if [ "$RUN_CONFIG" = "prod" ]; then npm run build-only; fi From 74e287c804b9d63017f5a0adee0fd39c57483aab Mon Sep 17 00:00:00 2001 From: Toni000 Date: Wed, 10 Jul 2024 14:52:47 +0200 Subject: [PATCH 06/25] #267: remove args from frontend docker-compose --- frontend/docker-compose.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/docker-compose.yml b/frontend/docker-compose.yml index d572731b..5cc7c733 100644 --- a/frontend/docker-compose.yml +++ b/frontend/docker-compose.yml @@ -5,9 +5,6 @@ services: web: build: context: . - args: - SERVER_URL: ${SERVER_URL} - RUN_CONFIG: ${RUN_CONFIG} image: dps_training_k-frontend container_name: K-dPS-frontend env_file: From 66ff9ac49a246acf3ae1a965572a3f8f1250b762 Mon Sep 17 00:00:00 2001 From: Toni000 Date: Wed, 10 Jul 2024 14:55:29 +0200 Subject: [PATCH 07/25] #267: fix run config issue --- frontend/.env.dev | 2 +- frontend/.env.prod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/.env.dev b/frontend/.env.dev index df06fbf1..47fd20d5 100644 --- a/frontend/.env.dev +++ b/frontend/.env.dev @@ -1,3 +1,3 @@ -VITE_RUN_CONFIG=dev +RUN_CONFIG=dev VITE_SERVER_URL_HTTP=http://localhost VITE_SERVER_URL_WS=ws://localhost diff --git a/frontend/.env.prod b/frontend/.env.prod index 3845a0cb..5a9a1c41 100644 --- a/frontend/.env.prod +++ b/frontend/.env.prod @@ -1,3 +1,3 @@ -VITE_RUN_CONFIG=prod +RUN_CONFIG=prod VITE_SERVER_URL_HTTP=https://klinik-dps.de VITE_SERVER_URL_WS=wss://klinik-dps.de From ce2febd1dac16e2b89ee0d0e09e1e013126cdb2a Mon Sep 17 00:00:00 2001 From: Toni000 Date: Wed, 10 Jul 2024 15:19:19 +0200 Subject: [PATCH 08/25] #267: persist frontend env vars in image --- frontend/Dockerfile | 5 +++++ frontend/docker-compose.yml | 3 +++ 2 files changed, 8 insertions(+) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index cba8d25a..9b812a78 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,6 +1,11 @@ FROM node:latest LABEL authors="Wolkenfarmer, Joshua Riewesell" WORKDIR /app +# set env vars to persist them in the image +ARG VITE_SERVER_URL_HTTP +ARG VITE_SERVER_URL_WS +ENV VITE_SERVER_URL_HTTP=${VITE_SERVER_URL_HTTP} +ENV VITE_SERVER_URL_WS=${VITE_SERVER_URL_WS} RUN npm install -g vite RUN if [ "$RUN_CONFIG" = "prod" ]; then npm install -g serve; fi COPY package*.json ./ diff --git a/frontend/docker-compose.yml b/frontend/docker-compose.yml index 5cc7c733..d233c5ba 100644 --- a/frontend/docker-compose.yml +++ b/frontend/docker-compose.yml @@ -5,6 +5,9 @@ services: web: build: context: . + args: + - VITE_SERVER_URL_HTTP=${VITE_SERVER_URL_HTTP} + - VITE_SERVER_URL_WS=${VITE_SERVER_URL_WS} image: dps_training_k-frontend container_name: K-dPS-frontend env_file: From 16f3e45160c5e3f2343d3ee5bf8eae7b149f1651 Mon Sep 17 00:00:00 2001 From: Toni000 Date: Wed, 10 Jul 2024 15:31:56 +0200 Subject: [PATCH 09/25] #267: fix cypress tests --- frontend/cypress/e2e/pass-through.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/cypress/e2e/pass-through.cy.ts b/frontend/cypress/e2e/pass-through.cy.ts index af42a636..cc0e59ae 100644 --- a/frontend/cypress/e2e/pass-through.cy.ts +++ b/frontend/cypress/e2e/pass-through.cy.ts @@ -1,6 +1,6 @@ describe('pass-through tests', () => { beforeEach(() => { - cy.visit('http://localhost:5173/') + cy.visit('http://localhost/') }) it('trainer failed login test', () => { From 5e670aa4893020f08783334e6984bf46c9dbccdd Mon Sep 17 00:00:00 2001 From: Toni000 Date: Wed, 10 Jul 2024 16:06:30 +0200 Subject: [PATCH 10/25] #267 backend: fix CORS error --- backend/dps_training_k/configuration/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/dps_training_k/configuration/settings.py b/backend/dps_training_k/configuration/settings.py index 78060093..f786136c 100644 --- a/backend/dps_training_k/configuration/settings.py +++ b/backend/dps_training_k/configuration/settings.py @@ -32,7 +32,7 @@ # SECURITY WARNING: don't run with debug turned on in production! DEBUG = env.bool("DEBUG") CORS_ORIGIN_ALLOW_ALL = DEBUG -CORS_ALLOWED_ORIGINS = [env.str("FRONTEND_URL")] +CORS_ALLOWED_ORIGINS = ["https://klinik-dps.de", "https://www.klinik-dps.de", "http://localhost"] RUN_CONFIG = env.str("RUN_CONFIG", default="dev") CSRF_TRUSTED_ORIGINS = ["http://localhost:8000"] From e3b0e0298a3c69367ec6360fc5c8f5f716183bee Mon Sep 17 00:00:00 2001 From: Toni000 Date: Wed, 10 Jul 2024 16:07:07 +0200 Subject: [PATCH 11/25] #267: split deploy compose setup to fix tests --- .github/workflows/ci-tests.yml | 2 +- docker-compose.dev.yml | 102 ++++++++++++++++++ docker-compose.yml => docker-compose.prod.yml | 4 - 3 files changed, 103 insertions(+), 5 deletions(-) create mode 100644 docker-compose.dev.yml rename docker-compose.yml => docker-compose.prod.yml (98%) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 07c4334d..84599a0f 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -88,7 +88,7 @@ jobs: - name: Run docker containers with deploy dev configuration run: | - docker-compose --env-file .env.dev up -d + docker-compose -f docker-compose.dev.yml up -d - name: Run integration tests run: | diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml new file mode 100644 index 00000000..5f781045 --- /dev/null +++ b/docker-compose.dev.yml @@ -0,0 +1,102 @@ +version: '3.8' + +services: + # Update service for self-hosted Docker images for completely automatic deployment + # Only updates images marked with the label "com.centurylinklabs.watchtower.enable=true" + watchtower: + image: containrrr/watchtower + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - /root/.docker/config.json:/config.json + command: --interval 60 --label-enable + + # Database service + postgres: + image: ghcr.io/hpi-sam/dps_training_k-postgres:${IMAGE_TAG} + container_name: K-dPS-postgres + labels: + - "com.centurylinklabs.watchtower.enable=true" + env_file: + - .env.dev + volumes: + - local_postgres_data:/var/lib/postgresql/data:Z + - local_postgres_data_backups:/backups:z + healthcheck: + test: [ "CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}" ] + interval: 10s + timeout: 5s + retries: 5 + + # Caching service + redis: + image: redis:7.2.5 + container_name: K-dPS-redis + + # Backend service + django: + image: ghcr.io/hpi-sam/dps_training_k-django:${IMAGE_TAG} + container_name: K-dPS-django + labels: + - "com.centurylinklabs.watchtower.enable=true" + restart: unless-stopped + depends_on: + - postgres + - redis + env_file: + - .env.dev + environment: + - RUN_MIGRATIONS=1 # only django should run migrations + volumes: + - static_volume:/app/staticfiles + command: uvicorn configuration.asgi:application --host 0.0.0.0 --reload + + # Celery worker service (e.g. scheduled tasks) + celeryworker: + image: ghcr.io/hpi-sam/dps_training_k-celeryworker:${IMAGE_TAG} + container_name: K-dPS-celeryworker + labels: + - "com.centurylinklabs.watchtower.enable=true" + depends_on: + - django + env_file: + - .env.dev + command: /start-celeryworker + + # Celery beat service (e.g. scheduled tasks) + celerybeat: + image: ghcr.io/hpi-sam/dps_training_k-celerybeat:${IMAGE_TAG} + container_name: K-dPS-celerybeat + labels: + - "com.centurylinklabs.watchtower.enable=true" + depends_on: + - django + env_file: + - .env.dev + command: /start-celerybeat + + # Nginx service (reverse proxy for Backend) + nginx: + image: ghcr.io/hpi-sam/dps_training_k-nginx:${IMAGE_TAG} + container_name: K-dPS-nginx + labels: + - "com.centurylinklabs.watchtower.enable=true" + depends_on: + - django + volumes: + - static_volume:/app/staticfiles + - ./backend/dps_training_k/deployment/nginx/nginx.conf:/etc/nginx/conf.d/nginx.conf + ports: + - "80:80" + - "443:443" + + # Frontend service + frontend: + image: ghcr.io/hpi-sam/dps_training_k-frontend:${IMAGE_TAG} + container_name: K-dPS-frontend + labels: + - "com.centurylinklabs.watchtower.enable=true" + +volumes: + local_postgres_data: { } + local_postgres_data_backups: { } + static_volume: { } diff --git a/docker-compose.yml b/docker-compose.prod.yml similarity index 98% rename from docker-compose.yml rename to docker-compose.prod.yml index 72ac7aea..786a1d32 100644 --- a/docker-compose.yml +++ b/docker-compose.prod.yml @@ -48,8 +48,6 @@ services: - RUN_MIGRATIONS=1 # only django should run migrations volumes: - static_volume:/app/staticfiles - ports: - - 8000:8000 command: uvicorn configuration.asgi:application --host 0.0.0.0 --reload # Celery worker service (e.g. scheduled tasks) @@ -99,8 +97,6 @@ services: container_name: K-dPS-frontend labels: - "com.centurylinklabs.watchtower.enable=true" - ports: - - "5173:5173" volumes: local_postgres_data: { } From 062061c83aaeb72c446b84ea5ee2af5bb5e154b2 Mon Sep 17 00:00:00 2001 From: Toni000 Date: Wed, 10 Jul 2024 16:15:09 +0200 Subject: [PATCH 12/25] #267: fix image tags not working --- docker-compose.dev.yml | 12 ++++++------ docker-compose.prod.yml | 20 ++++++++++---------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index 5f781045..ae9a0541 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -12,7 +12,7 @@ services: # Database service postgres: - image: ghcr.io/hpi-sam/dps_training_k-postgres:${IMAGE_TAG} + image: ghcr.io/hpi-sam/dps_training_k-postgres:dev container_name: K-dPS-postgres labels: - "com.centurylinklabs.watchtower.enable=true" @@ -34,7 +34,7 @@ services: # Backend service django: - image: ghcr.io/hpi-sam/dps_training_k-django:${IMAGE_TAG} + image: ghcr.io/hpi-sam/dps_training_k-django:dev container_name: K-dPS-django labels: - "com.centurylinklabs.watchtower.enable=true" @@ -52,7 +52,7 @@ services: # Celery worker service (e.g. scheduled tasks) celeryworker: - image: ghcr.io/hpi-sam/dps_training_k-celeryworker:${IMAGE_TAG} + image: ghcr.io/hpi-sam/dps_training_k-celeryworker:dev container_name: K-dPS-celeryworker labels: - "com.centurylinklabs.watchtower.enable=true" @@ -64,7 +64,7 @@ services: # Celery beat service (e.g. scheduled tasks) celerybeat: - image: ghcr.io/hpi-sam/dps_training_k-celerybeat:${IMAGE_TAG} + image: ghcr.io/hpi-sam/dps_training_k-celerybeat:dev container_name: K-dPS-celerybeat labels: - "com.centurylinklabs.watchtower.enable=true" @@ -76,7 +76,7 @@ services: # Nginx service (reverse proxy for Backend) nginx: - image: ghcr.io/hpi-sam/dps_training_k-nginx:${IMAGE_TAG} + image: ghcr.io/hpi-sam/dps_training_k-nginx:dev container_name: K-dPS-nginx labels: - "com.centurylinklabs.watchtower.enable=true" @@ -91,7 +91,7 @@ services: # Frontend service frontend: - image: ghcr.io/hpi-sam/dps_training_k-frontend:${IMAGE_TAG} + image: ghcr.io/hpi-sam/dps_training_k-frontend:dev container_name: K-dPS-frontend labels: - "com.centurylinklabs.watchtower.enable=true" diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index 786a1d32..a7b16c80 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -12,12 +12,12 @@ services: # Database service postgres: - image: ghcr.io/hpi-sam/dps_training_k-postgres:${IMAGE_TAG} + image: ghcr.io/hpi-sam/dps_training_k-postgres:prod container_name: K-dPS-postgres labels: - "com.centurylinklabs.watchtower.enable=true" env_file: - - .env.${RUN_CONFIG} + - .env.prod volumes: - local_postgres_data:/var/lib/postgresql/data:Z - local_postgres_data_backups:/backups:z @@ -34,7 +34,7 @@ services: # Backend service django: - image: ghcr.io/hpi-sam/dps_training_k-django:${IMAGE_TAG} + image: ghcr.io/hpi-sam/dps_training_k-django:prod container_name: K-dPS-django labels: - "com.centurylinklabs.watchtower.enable=true" @@ -43,7 +43,7 @@ services: - postgres - redis env_file: - - .env.${RUN_CONFIG} + - .env.prod environment: - RUN_MIGRATIONS=1 # only django should run migrations volumes: @@ -52,31 +52,31 @@ services: # Celery worker service (e.g. scheduled tasks) celeryworker: - image: ghcr.io/hpi-sam/dps_training_k-celeryworker:${IMAGE_TAG} + image: ghcr.io/hpi-sam/dps_training_k-celeryworker:prod container_name: K-dPS-celeryworker labels: - "com.centurylinklabs.watchtower.enable=true" depends_on: - django env_file: - - .env.${RUN_CONFIG} + - .env.prod command: /start-celeryworker # Celery beat service (e.g. scheduled tasks) celerybeat: - image: ghcr.io/hpi-sam/dps_training_k-celerybeat:${IMAGE_TAG} + image: ghcr.io/hpi-sam/dps_training_k-celerybeat:prod container_name: K-dPS-celerybeat labels: - "com.centurylinklabs.watchtower.enable=true" depends_on: - django env_file: - - .env.${RUN_CONFIG} + - .env.prod command: /start-celerybeat # Nginx service (reverse proxy for Backend) nginx: - image: ghcr.io/hpi-sam/dps_training_k-nginx:${IMAGE_TAG} + image: ghcr.io/hpi-sam/dps_training_k-nginx:prod container_name: K-dPS-nginx labels: - "com.centurylinklabs.watchtower.enable=true" @@ -93,7 +93,7 @@ services: # Frontend service frontend: - image: ghcr.io/hpi-sam/dps_training_k-frontend:${IMAGE_TAG} + image: ghcr.io/hpi-sam/dps_training_k-frontend:prod container_name: K-dPS-frontend labels: - "com.centurylinklabs.watchtower.enable=true" From 973f5784ca526ce62359e18a1d77be5914e68254 Mon Sep 17 00:00:00 2001 From: Toni000 Date: Wed, 10 Jul 2024 16:31:29 +0200 Subject: [PATCH 13/25] #267: fix error in preparing deployment files --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7c25ed87..a2d97936 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -48,7 +48,7 @@ jobs: - name: Prepare deployment files run: | mkdir deployment_files - cp docker-compose.yml deployment_files/ + cp docker-compose.prod.yml deployment_files/ cp ./.env.prod deployment_files/ cp ./.env.dev deployment_files/ From 0cc93b2281b93269d89db53341d8b5bc4f720d83 Mon Sep 17 00:00:00 2001 From: Toni000 Date: Wed, 10 Jul 2024 17:00:29 +0200 Subject: [PATCH 14/25] #267: create another nginx.conf for dev deploy --- .../deployment/nginx/nginx_deploy_dev.conf | 30 +++++++++++++++++++ ...rver_nginx.conf => nginx_deploy_prod.conf} | 0 docker-compose.dev.yml | 2 +- docker-compose.prod.yml | 12 ++++---- 4 files changed, 37 insertions(+), 7 deletions(-) create mode 100644 backend/dps_training_k/deployment/nginx/nginx_deploy_dev.conf rename backend/dps_training_k/deployment/nginx/{server_nginx.conf => nginx_deploy_prod.conf} (100%) diff --git a/backend/dps_training_k/deployment/nginx/nginx_deploy_dev.conf b/backend/dps_training_k/deployment/nginx/nginx_deploy_dev.conf new file mode 100644 index 00000000..7688912e --- /dev/null +++ b/backend/dps_training_k/deployment/nginx/nginx_deploy_dev.conf @@ -0,0 +1,30 @@ +server { + listen 80; + + location / { + proxy_pass http://frontend:5173; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + location /api { + proxy_pass http://django:8000/api; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + location /ws { + proxy_pass http://django:8000/ws; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } +} \ No newline at end of file diff --git a/backend/dps_training_k/deployment/nginx/server_nginx.conf b/backend/dps_training_k/deployment/nginx/nginx_deploy_prod.conf similarity index 100% rename from backend/dps_training_k/deployment/nginx/server_nginx.conf rename to backend/dps_training_k/deployment/nginx/nginx_deploy_prod.conf diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index ae9a0541..eefdc242 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -84,7 +84,7 @@ services: - django volumes: - static_volume:/app/staticfiles - - ./backend/dps_training_k/deployment/nginx/nginx.conf:/etc/nginx/conf.d/nginx.conf + - ./backend/dps_training_k/deployment/nginx/nginx_deploy_dev.conf:/etc/nginx/conf.d/nginx.conf ports: - "80:80" - "443:443" diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index a7b16c80..cc1f2a64 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -12,7 +12,7 @@ services: # Database service postgres: - image: ghcr.io/hpi-sam/dps_training_k-postgres:prod + image: ghcr.io/hpi-sam/dps_training_k-postgres:latest container_name: K-dPS-postgres labels: - "com.centurylinklabs.watchtower.enable=true" @@ -34,7 +34,7 @@ services: # Backend service django: - image: ghcr.io/hpi-sam/dps_training_k-django:prod + image: ghcr.io/hpi-sam/dps_training_k-django:latest container_name: K-dPS-django labels: - "com.centurylinklabs.watchtower.enable=true" @@ -52,7 +52,7 @@ services: # Celery worker service (e.g. scheduled tasks) celeryworker: - image: ghcr.io/hpi-sam/dps_training_k-celeryworker:prod + image: ghcr.io/hpi-sam/dps_training_k-celeryworker:latest container_name: K-dPS-celeryworker labels: - "com.centurylinklabs.watchtower.enable=true" @@ -64,7 +64,7 @@ services: # Celery beat service (e.g. scheduled tasks) celerybeat: - image: ghcr.io/hpi-sam/dps_training_k-celerybeat:prod + image: ghcr.io/hpi-sam/dps_training_k-celerybeat:latest container_name: K-dPS-celerybeat labels: - "com.centurylinklabs.watchtower.enable=true" @@ -76,7 +76,7 @@ services: # Nginx service (reverse proxy for Backend) nginx: - image: ghcr.io/hpi-sam/dps_training_k-nginx:prod + image: ghcr.io/hpi-sam/dps_training_k-nginx:latest container_name: K-dPS-nginx labels: - "com.centurylinklabs.watchtower.enable=true" @@ -93,7 +93,7 @@ services: # Frontend service frontend: - image: ghcr.io/hpi-sam/dps_training_k-frontend:prod + image: ghcr.io/hpi-sam/dps_training_k-frontend:latest container_name: K-dPS-frontend labels: - "com.centurylinklabs.watchtower.enable=true" From 58932687673113fbca1b19ee2dc515bf868fb22d Mon Sep 17 00:00:00 2001 From: Toni000 Date: Wed, 10 Jul 2024 17:10:31 +0200 Subject: [PATCH 15/25] #267: add ports to websocket URLs --- frontend/.env.dev | 2 +- frontend/.env.prod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/.env.dev b/frontend/.env.dev index 47fd20d5..8ceee2ba 100644 --- a/frontend/.env.dev +++ b/frontend/.env.dev @@ -1,3 +1,3 @@ RUN_CONFIG=dev VITE_SERVER_URL_HTTP=http://localhost -VITE_SERVER_URL_WS=ws://localhost +VITE_SERVER_URL_WS=ws://localhost:80 diff --git a/frontend/.env.prod b/frontend/.env.prod index 5a9a1c41..76e840a1 100644 --- a/frontend/.env.prod +++ b/frontend/.env.prod @@ -1,3 +1,3 @@ RUN_CONFIG=prod VITE_SERVER_URL_HTTP=https://klinik-dps.de -VITE_SERVER_URL_WS=wss://klinik-dps.de +VITE_SERVER_URL_WS=wss://klinik-dps.de:443 From 1af48602d1c952a97cf2d99c249dff23a61f4453 Mon Sep 17 00:00:00 2001 From: Wolkenfarmer Date: Wed, 10 Jul 2024 18:39:20 +0200 Subject: [PATCH 16/25] #267 frontend: fix env variables for non-docker execution --- frontend/.env.dev | 2 +- frontend/.env.prod | 2 +- frontend/Dockerfile | 12 +++++++----- frontend/docker-compose.yml | 3 ++- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/frontend/.env.dev b/frontend/.env.dev index 8ceee2ba..7a2316ea 100644 --- a/frontend/.env.dev +++ b/frontend/.env.dev @@ -1,3 +1,3 @@ -RUN_CONFIG=dev +VITE_RUN_CONFIG=dev VITE_SERVER_URL_HTTP=http://localhost VITE_SERVER_URL_WS=ws://localhost:80 diff --git a/frontend/.env.prod b/frontend/.env.prod index 76e840a1..9831a4c0 100644 --- a/frontend/.env.prod +++ b/frontend/.env.prod @@ -1,3 +1,3 @@ -RUN_CONFIG=prod +VITE_RUN_CONFIG=prod VITE_SERVER_URL_HTTP=https://klinik-dps.de VITE_SERVER_URL_WS=wss://klinik-dps.de:443 diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 9b812a78..874ace92 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -2,16 +2,18 @@ FROM node:latest LABEL authors="Wolkenfarmer, Joshua Riewesell" WORKDIR /app # set env vars to persist them in the image +ARG VITE_RUN_CONFIG ARG VITE_SERVER_URL_HTTP ARG VITE_SERVER_URL_WS -ENV VITE_SERVER_URL_HTTP=${VITE_SERVER_URL_HTTP} -ENV VITE_SERVER_URL_WS=${VITE_SERVER_URL_WS} RUN npm install -g vite -RUN if [ "$RUN_CONFIG" = "prod" ]; then npm install -g serve; fi +RUN if [ "$VITE_RUN_CONFIG" = "prod" ]; then npm install -g serve; fi COPY package*.json ./ RUN npm install COPY . . +ENV VITE_RUN_CONFIG=${VITE_RUN_CONFIG} +ENV VITE_SERVER_URL_HTTP=${VITE_SERVER_URL_HTTP} +ENV VITE_SERVER_URL_WS=${VITE_SERVER_URL_WS} ENV PORT=5173 EXPOSE 5173 -RUN if [ "$RUN_CONFIG" = "prod" ]; then npm run build-only; fi -CMD if [ "$RUN_CONFIG" = "prod" ]; then serve -s dist -l 5173; else npm run dev; fi \ No newline at end of file +RUN if [ "$VITE_RUN_CONFIG" = "prod" ]; then npm run build-only; fi +CMD if [ "$VITE_RUN_CONFIG" = "prod" ]; then serve -s dist -l 5173; else npm run dev; fi \ No newline at end of file diff --git a/frontend/docker-compose.yml b/frontend/docker-compose.yml index d233c5ba..76278a55 100644 --- a/frontend/docker-compose.yml +++ b/frontend/docker-compose.yml @@ -8,9 +8,10 @@ services: args: - VITE_SERVER_URL_HTTP=${VITE_SERVER_URL_HTTP} - VITE_SERVER_URL_WS=${VITE_SERVER_URL_WS} + - VITE_RUN_CONFIG=${VITE_RUN_CONFIG} image: dps_training_k-frontend container_name: K-dPS-frontend env_file: - - .env.${RUN_CONFIG} + - .env.${VITE_RUN_CONFIG} ports: - "5173:5173" From db75b47d9d108ae9dfb96504e7433c5b33770f55 Mon Sep 17 00:00:00 2001 From: Wolkenfarmer Date: Wed, 10 Jul 2024 22:19:15 +0200 Subject: [PATCH 17/25] #267 frontend: fix environment variable access in dockerized environments --- frontend/.env.dev | 3 ++- frontend/.env.prod | 3 ++- frontend/vite.config.ts | 8 ++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/frontend/.env.dev b/frontend/.env.dev index 7a2316ea..395b9912 100644 --- a/frontend/.env.dev +++ b/frontend/.env.dev @@ -1,3 +1,4 @@ +# frontend config for local development (backed into image, therefore not in project .env) VITE_RUN_CONFIG=dev VITE_SERVER_URL_HTTP=http://localhost -VITE_SERVER_URL_WS=ws://localhost:80 +VITE_SERVER_URL_WS=ws://localhost:80 \ No newline at end of file diff --git a/frontend/.env.prod b/frontend/.env.prod index 9831a4c0..9fbcbaa9 100644 --- a/frontend/.env.prod +++ b/frontend/.env.prod @@ -1,3 +1,4 @@ +# frontend config for local development (backed into image, therefore not in project .env) VITE_RUN_CONFIG=prod VITE_SERVER_URL_HTTP=https://klinik-dps.de -VITE_SERVER_URL_WS=wss://klinik-dps.de:443 +VITE_SERVER_URL_WS=wss://klinik-dps.de:443 \ No newline at end of file diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 3a4747df..9a476567 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -15,4 +15,12 @@ export default defineConfig({ }, envDir: './', envPrefix: 'VITE_', + define: { + 'process.env': process.env + }, + server: { + hmr: { + host: 'localhost' + } + } }) From 194c09010f82c129aa41e36a343909f1a77ede16 Mon Sep 17 00:00:00 2001 From: Wolkenfarmer Date: Thu, 11 Jul 2024 00:40:01 +0200 Subject: [PATCH 18/25] #267: ignore inconsequential warning in ci --- frontend/cypress/e2e/pass-through.cy.ts | 7 +++++++ frontend/vite.config.ts | 5 ----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/frontend/cypress/e2e/pass-through.cy.ts b/frontend/cypress/e2e/pass-through.cy.ts index cc0e59ae..0d8e4b74 100644 --- a/frontend/cypress/e2e/pass-through.cy.ts +++ b/frontend/cypress/e2e/pass-through.cy.ts @@ -1,5 +1,12 @@ describe('pass-through tests', () => { beforeEach(() => { + Cypress.on('uncaught:exception', (err) => { + if (err.message.includes('Failed to construct \'WebSocket\'')) { + // Ignore weird WebSocket construction error - only occurs when using Docker and does not affect the functionality of the app + console.log('Caught WebSocket construction error: ' + err.message) + return false + } + }) cy.visit('http://localhost/') }) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 9a476567..db878c11 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -17,10 +17,5 @@ export default defineConfig({ envPrefix: 'VITE_', define: { 'process.env': process.env - }, - server: { - hmr: { - host: 'localhost' - } } }) From e66f708b04ab77087e1cf6985f6e41b5e85a1c6e Mon Sep 17 00:00:00 2001 From: Wolkenfarmer Date: Thu, 11 Jul 2024 10:23:06 +0200 Subject: [PATCH 19/25] #267 frontend: resolve hmr error when running dockerized in dev mode --- frontend/cypress/e2e/pass-through.cy.ts | 7 ------- frontend/vite.config.ts | 10 +++++++++- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/frontend/cypress/e2e/pass-through.cy.ts b/frontend/cypress/e2e/pass-through.cy.ts index 0d8e4b74..cc0e59ae 100644 --- a/frontend/cypress/e2e/pass-through.cy.ts +++ b/frontend/cypress/e2e/pass-through.cy.ts @@ -1,12 +1,5 @@ describe('pass-through tests', () => { beforeEach(() => { - Cypress.on('uncaught:exception', (err) => { - if (err.message.includes('Failed to construct \'WebSocket\'')) { - // Ignore weird WebSocket construction error - only occurs when using Docker and does not affect the functionality of the app - console.log('Caught WebSocket construction error: ' + err.message) - return false - } - }) cy.visit('http://localhost/') }) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index db878c11..b8cb2155 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -15,7 +15,15 @@ export default defineConfig({ }, envDir: './', envPrefix: 'VITE_', - define: { + define: { // in order for env variables to be reliably available in the docker container 'process.env': process.env + }, + server: { + // in order for hot module replacement to not throw an error inside the docker container + // (localhost would resolve to the container and not the host) + hmr: { + host: 'ws://host.docker.internal', + port: 80 + } } }) From 7f52a0814f076963c67afebd9b3facbceb8a5bc3 Mon Sep 17 00:00:00 2001 From: Wolkenfarmer Date: Thu, 11 Jul 2024 11:05:15 +0200 Subject: [PATCH 20/25] #267 frontend: disable hmr in dockerized environments --- frontend/Dockerfile | 1 + frontend/vite.config.ts | 14 ++++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 874ace92..6243fb71 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -13,6 +13,7 @@ COPY . . ENV VITE_RUN_CONFIG=${VITE_RUN_CONFIG} ENV VITE_SERVER_URL_HTTP=${VITE_SERVER_URL_HTTP} ENV VITE_SERVER_URL_WS=${VITE_SERVER_URL_WS} +ENV IS_DOCKER=TRUE ENV PORT=5173 EXPOSE 5173 RUN if [ "$VITE_RUN_CONFIG" = "prod" ]; then npm run build-only; fi diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index b8cb2155..59938818 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -3,6 +3,12 @@ import {fileURLToPath, URL} from 'node:url' import {defineConfig} from 'vite' import vue from '@vitejs/plugin-vue' +function isNotDocker() { + const b = !process.env.IS_DOCKER + console.log('isDocker:', b) + return b +} + // https://vitejs.dev/config/ export default defineConfig({ plugins: [ @@ -19,11 +25,7 @@ export default defineConfig({ 'process.env': process.env }, server: { - // in order for hot module replacement to not throw an error inside the docker container - // (localhost would resolve to the container and not the host) - hmr: { - host: 'ws://host.docker.internal', - port: 80 - } + // we do not need hmr in docker images + default address would not work (host: 'host.docker.internal' would be needed) + hmr: isNotDocker(), } }) From f49025040c9b1b3de0c14e672d005e78b0714ff2 Mon Sep 17 00:00:00 2001 From: Wolkenfarmer Date: Thu, 11 Jul 2024 11:22:20 +0200 Subject: [PATCH 21/25] #267 frontend: set correct hmr host depending on host environment --- frontend/docker-compose.yml | 2 ++ frontend/vite.config.ts | 14 ++++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/frontend/docker-compose.yml b/frontend/docker-compose.yml index 76278a55..b68c4fd5 100644 --- a/frontend/docker-compose.yml +++ b/frontend/docker-compose.yml @@ -15,3 +15,5 @@ services: - .env.${VITE_RUN_CONFIG} ports: - "5173:5173" + extra_hosts: # is used to ensure host.docker.internal resolves correctly on Linux systems + - "host.docker.internal:host-gateway" diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 59938818..4e27495c 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -3,10 +3,8 @@ import {fileURLToPath, URL} from 'node:url' import {defineConfig} from 'vite' import vue from '@vitejs/plugin-vue' -function isNotDocker() { - const b = !process.env.IS_DOCKER - console.log('isDocker:', b) - return b +function getHmrHost() { + return process.env.IS_DOCKER ? 'host.docker.internal' : 'localhost' } // https://vitejs.dev/config/ @@ -25,7 +23,11 @@ export default defineConfig({ 'process.env': process.env }, server: { - // we do not need hmr in docker images + default address would not work (host: 'host.docker.internal' would be needed) - hmr: isNotDocker(), + // in order for hot module replacement to not throw an error inside the docker container + // (localhost would resolve to the container and not the host) + hmr: { + host: getHmrHost(), + port: 80 + } } }) From 35a5a69afbee2a0e3f311b7b2fd897f9782e039c Mon Sep 17 00:00:00 2001 From: Toni000 Date: Thu, 11 Jul 2024 12:19:01 +0200 Subject: [PATCH 22/25] #267: adjustments after review and slightly changed prod docker-compose --- .env.dev | 2 -- .env.prod | 2 -- .github/workflows/deploy.yml | 3 ++- README.md | 7 ++++--- backend/dps_training_k/.env.dev | 2 -- backend/dps_training_k/.env.prod | 2 -- docker-compose.prod.yml | 2 +- frontend/docker-compose.yml | 2 +- 8 files changed, 8 insertions(+), 14 deletions(-) diff --git a/.env.dev b/.env.dev index b9734c4f..6371f0e5 100644 --- a/.env.dev +++ b/.env.dev @@ -15,5 +15,3 @@ CHANNEL_REDIS=True POSTGRES_DB=dps POSTGRES_USER=dps POSTGRES_PASSWORD=dps - -FRONTEND_URL=http://localhost diff --git a/.env.prod b/.env.prod index ecc52c70..d1a25b0e 100644 --- a/.env.prod +++ b/.env.prod @@ -15,5 +15,3 @@ CHANNEL_REDIS=True POSTGRES_DB=dps POSTGRES_USER=dps POSTGRES_PASSWORD=ozuCk0rrF6nzkzcR1TQMR93m3iYUzMBG - -FRONTEND_URL=https://klinik-dps.de diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a2d97936..1f19f06c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -48,9 +48,10 @@ jobs: - name: Prepare deployment files run: | mkdir deployment_files - cp docker-compose.prod.yml deployment_files/ + cp docker-compose.prod.yml deployment_files/docker-compose.yml cp ./.env.prod deployment_files/ cp ./.env.dev deployment_files/ + cp backend/dps_training_k/deployment/nginx/nginx_deploy_prod.conf deployment_files/nginx.conf - name: Archive deployment files uses: actions/upload-artifact@v2 diff --git a/README.md b/README.md index f694f57e..4ce78366 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,8 @@ Replace `` with `prod` or `dev` in the following commands to use the r /docker-compose.yml, ./.env.). 2. Recommended: As the env files are probably stored in a public repository, it is strongly encouraged to change the SECRET_KEY and the POSTGRES_PASSWORD variables in the used `.env.` file. -3. Log into the GitHub Packages registry with the following command. Ask a team member for valid credentials. Note: passing secrets as command line arguments is insecure. consider using `--password-stdin` instead +3. Log into the GitHub Packages registry with the following command. Ask a team member for valid credentials. Note: passing secrets as + command line arguments is insecure. consider using `--password-stdin` instead ```bash docker login ghcr.io -u -p ``` @@ -43,8 +44,8 @@ The application is now deployed and the website should be accessible on port 517 the containers restarted accordingly. Keep in mind that the IP address of the server running the back- and frontend are hardcoded in the environment files. For -the backend a simple correction of the `FRONTEND_URL` variable within the `.env.` file on the server is enough, but for the frontend the -`SERVER_URL` variable (and `VITE_SERVER_URL` variable for building without docker) has to be adjusted in the associated env file and the image has +the backend a simple correction of the `CORS_ALLOWED_ORIGINS` variable within the `backend/dps_training_k/configuration/settings.py` file on the +server is enough, but for the frontend the `VITE_SERVER_URL` variable has to be adjusted in the associated env file and the image has to be rebuilt and re-uploaded to the GitHub Packages registry. ## Changing the project configuration diff --git a/backend/dps_training_k/.env.dev b/backend/dps_training_k/.env.dev index f1d7f593..3626835a 100644 --- a/backend/dps_training_k/.env.dev +++ b/backend/dps_training_k/.env.dev @@ -13,5 +13,3 @@ CHANNEL_REDIS=True POSTGRES_DB=dps POSTGRES_USER=dps POSTGRES_PASSWORD=dps - -FRONTEND_URL=http://localhost diff --git a/backend/dps_training_k/.env.prod b/backend/dps_training_k/.env.prod index dbc5809b..8abaf638 100644 --- a/backend/dps_training_k/.env.prod +++ b/backend/dps_training_k/.env.prod @@ -13,5 +13,3 @@ CHANNEL_REDIS=True POSTGRES_DB=dps POSTGRES_USER=dps POSTGRES_PASSWORD=ozuCk0rrF6nzkzcR1TQMR93m3iYUzMBG - -FRONTEND_URL=https://klinik-dps.de diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index cc1f2a64..dd2c7f59 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -86,7 +86,7 @@ services: - static_volume:/app/staticfiles - /etc/letsencrypt/live/klinik-dps.de/fullchain.pem:/etc/nginx/ssl/fullchain.pem:ro - /etc/letsencrypt/live/klinik-dps.de/privkey.pem:/etc/nginx/ssl/privkey.pem:ro - - /etc/nginx/conf.d:/etc/nginx/conf.d + - ./nginx.conf:/etc/nginx/conf.d/nginx.conf ports: - "80:80" - "443:443" diff --git a/frontend/docker-compose.yml b/frontend/docker-compose.yml index b68c4fd5..e82252ec 100644 --- a/frontend/docker-compose.yml +++ b/frontend/docker-compose.yml @@ -2,7 +2,7 @@ version: '3' services: # Frontend web service - web: + frontend: build: context: . args: From 0c694323901d50889c9260a7ce13ff7826e9bdf4 Mon Sep 17 00:00:00 2001 From: Toni000 Date: Thu, 11 Jul 2024 12:27:22 +0200 Subject: [PATCH 23/25] #267 backend: fix patient information import not using defaults --- .../commands/import_patient_information.py | 34 ++++++++++--------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/backend/dps_training_k/template/management/commands/import_patient_information.py b/backend/dps_training_k/template/management/commands/import_patient_information.py index f0c7d437..1afe69b3 100644 --- a/backend/dps_training_k/template/management/commands/import_patient_information.py +++ b/backend/dps_training_k/template/management/commands/import_patient_information.py @@ -62,22 +62,24 @@ def import_patients(file_path): patient_information, _ = PatientInformation.objects.update_or_create( code=row["Pat-Nr."].strip(), - personal_details=row["Personalien"].strip(), - blood_type=row["Blutgruppe"].strip(), - injury=row["Verletzungen"].strip(), - biometrics=biometrics, - triage=triage, - consecutive_unique_number=consecutiveUniqueNumber, - mobility=row["Mobilität"].strip(), - preexisting_illnesses=row["Vorerkrankungen"].strip(), - permanent_medication=row["Dauer-Medikation"].strip(), - current_case_history=row[ - "Aktuelle Anamnese / Rettungsdienst-Übergabe" - ].strip(), - pretreatment=row["Vorbehandlung"].strip(), - start_status=row["Start-Status"].strip(), - start_location=row["Start-Ort"].strip(), - op=row["OP / Interventions-Verlauf"].strip(), + defaults={ + "personal_details": row["Personalien"].strip(), + "blood_type": row["Blutgruppe"].strip(), + "injury": row["Verletzungen"].strip(), + "biometrics": biometrics, + "triage": triage, + "consecutive_unique_number": consecutiveUniqueNumber, + "mobility": row["Mobilität"].strip(), + "preexisting_illnesses": row["Vorerkrankungen"].strip(), + "permanent_medication": row["Dauer-Medikation"].strip(), + "current_case_history": row[ + "Aktuelle Anamnese / Rettungsdienst-Übergabe" + ].strip(), + "pretreatment": row["Vorbehandlung"].strip(), + "start_status": row["Start-Status"].strip(), + "start_location": row["Start-Ort"].strip(), + "op": row["OP / Interventions-Verlauf"].strip(), + } ) pretreatments_list = [ pt.strip() for pt in patient_information.pretreatment.split(",") From df44eb6df1762622344ca6efbf48d8d12b7e3550 Mon Sep 17 00:00:00 2001 From: Toni000 Date: Thu, 11 Jul 2024 13:40:52 +0200 Subject: [PATCH 24/25] #267 backend: fix initialization issue when using defaults --- .../template/management/commands/import_patient_information.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/dps_training_k/template/management/commands/import_patient_information.py b/backend/dps_training_k/template/management/commands/import_patient_information.py index 1afe69b3..82fb274f 100644 --- a/backend/dps_training_k/template/management/commands/import_patient_information.py +++ b/backend/dps_training_k/template/management/commands/import_patient_information.py @@ -76,6 +76,7 @@ def import_patients(file_path): "Aktuelle Anamnese / Rettungsdienst-Übergabe" ].strip(), "pretreatment": row["Vorbehandlung"].strip(), + "pretreatment_action_templates": {}, "start_status": row["Start-Status"].strip(), "start_location": row["Start-Ort"].strip(), "op": row["OP / Interventions-Verlauf"].strip(), From 437705b0808dd409fd799439316cba512bbc6974 Mon Sep 17 00:00:00 2001 From: Toni000 Date: Thu, 11 Jul 2024 14:27:02 +0200 Subject: [PATCH 25/25] #267 backend: fix fixture starting with pk 2 --- backend/dps_training_k/template/fixtures/patient_states.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/dps_training_k/template/fixtures/patient_states.json b/backend/dps_training_k/template/fixtures/patient_states.json index d64c1490..03b3f763 100644 --- a/backend/dps_training_k/template/fixtures/patient_states.json +++ b/backend/dps_training_k/template/fixtures/patient_states.json @@ -1 +1 @@ -[{"model": "template.patientstate", "pk": 2, "fields": {"code": 1001, "state_id": 101, "transition": 138, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 143/083"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 3, "fields": {"code": 1001, "state_id": 201, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 111/025"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 4, "fields": {"code": 1001, "state_id": 202, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 119/032"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 5, "fields": {"code": 1001, "state_id": 203, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 10 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 116/032"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 6, "fields": {"code": 1001, "state_id": 204, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 124/039"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 7, "fields": {"code": 1001, "state_id": 205, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 9 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 121/039"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 8, "fields": {"code": 1001, "state_id": 206, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 129/046"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 9, "fields": {"code": 1001, "state_id": 207, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 8 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 126/046"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 10, "fields": {"code": 1001, "state_id": 208, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 10 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 134/053"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 11, "fields": {"code": 1001, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 7 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 131/053"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 12, "fields": {"code": 1001, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 148/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 13, "fields": {"code": 1001, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 8 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 134/053"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 14, "fields": {"code": 1001, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 151/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 15, "fields": {"code": 1001, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 148/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 16, "fields": {"code": 1001, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 147/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 17, "fields": {"code": 1001, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 151/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 18, "fields": {"code": 1001, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 132/059"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 19, "fields": {"code": 1001, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 8 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 132/058"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 20, "fields": {"code": 1001, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 149/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 21, "fields": {"code": 1001, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 9 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 135/058"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 22, "fields": {"code": 1001, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 94 /min\nperipher kräftig tastbar\nRR: 152/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 23, "fields": {"code": 1001, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 149/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 24, "fields": {"code": 1001, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 148/091"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 25, "fields": {"code": 1001, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 94 /min\nperipher kräftig tastbar\nRR: 152/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 26, "fields": {"code": 1001, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 133/064"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 27, "fields": {"code": 1001, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 146/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 28, "fields": {"code": 1001, "state_id": 218, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 151/083"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 29, "fields": {"code": 1001, "state_id": 228, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 91 /min\nperipher kräftig tastbar\nRR: 137/053"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 30, "fields": {"code": 1001, "state_id": 238, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 154/083"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 31, "fields": {"code": 1001, "state_id": 248, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 151/083"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 32, "fields": {"code": 1001, "state_id": 258, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 152/089"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 33, "fields": {"code": 1001, "state_id": 268, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 154/083"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 34, "fields": {"code": 1001, "state_id": 278, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 139/065"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 35, "fields": {"code": 1001, "state_id": 288, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 135/058"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 36, "fields": {"code": 1001, "state_id": 298, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 152/088"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 37, "fields": {"code": 1001, "state_id": 308, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 138/058"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 38, "fields": {"code": 1001, "state_id": 318, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 97 /min\nperipher kräftig tastbar\nRR: 155/088"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 39, "fields": {"code": 1001, "state_id": 328, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 152/088"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 40, "fields": {"code": 1001, "state_id": 338, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 153/094"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 41, "fields": {"code": 1001, "state_id": 348, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 97 /min\nperipher kräftig tastbar\nRR: 155/088"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 42, "fields": {"code": 1001, "state_id": 358, "transition": 2, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 92 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 140/070"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 43, "fields": {"code": 1001, "state_id": 758, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 149/083"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 44, "fields": {"code": 1001, "state_id": 217, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 143/076"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 45, "fields": {"code": 1001, "state_id": 227, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 9 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 129/046"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 46, "fields": {"code": 1001, "state_id": 237, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 146/076"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 47, "fields": {"code": 1001, "state_id": 247, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 143/076"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 48, "fields": {"code": 1001, "state_id": 257, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 146/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 49, "fields": {"code": 1001, "state_id": 267, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 146/076"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 50, "fields": {"code": 1001, "state_id": 277, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 135/064"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 51, "fields": {"code": 1001, "state_id": 287, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 9 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 127/051"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 52, "fields": {"code": 1001, "state_id": 297, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 144/081"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 53, "fields": {"code": 1001, "state_id": 307, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 10 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 130/051"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 54, "fields": {"code": 1001, "state_id": 317, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 147/081"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 55, "fields": {"code": 1001, "state_id": 327, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 144/081"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 56, "fields": {"code": 1001, "state_id": 337, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 147/090"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 57, "fields": {"code": 1001, "state_id": 347, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 147/081"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 58, "fields": {"code": 1001, "state_id": 357, "transition": 19, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 92 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 136/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 59, "fields": {"code": 1001, "state_id": 757, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 141/076"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 60, "fields": {"code": 1001, "state_id": 216, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 146/076"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 61, "fields": {"code": 1001, "state_id": 226, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 132/046"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 62, "fields": {"code": 1001, "state_id": 236, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 149/076"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 63, "fields": {"code": 1001, "state_id": 246, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 146/076"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 64, "fields": {"code": 1001, "state_id": 256, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 151/088"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 65, "fields": {"code": 1001, "state_id": 266, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 149/076"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 66, "fields": {"code": 1001, "state_id": 276, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 142/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 67, "fields": {"code": 1001, "state_id": 286, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 130/051"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 68, "fields": {"code": 1001, "state_id": 296, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 147/081"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 69, "fields": {"code": 1001, "state_id": 306, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 133/051"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 70, "fields": {"code": 1001, "state_id": 316, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 150/081"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 71, "fields": {"code": 1001, "state_id": 326, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 147/081"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 72, "fields": {"code": 1001, "state_id": 336, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 152/093"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 73, "fields": {"code": 1001, "state_id": 346, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 150/081"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 74, "fields": {"code": 1001, "state_id": 356, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 94 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 143/075"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 75, "fields": {"code": 1001, "state_id": 756, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 144/076"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 76, "fields": {"code": 1001, "state_id": 215, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 138/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 77, "fields": {"code": 1001, "state_id": 225, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 10 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 124/039"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 78, "fields": {"code": 1001, "state_id": 235, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 79, "fields": {"code": 1001, "state_id": 245, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 138/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 80, "fields": {"code": 1001, "state_id": 255, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 145/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 81, "fields": {"code": 1001, "state_id": 265, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 82, "fields": {"code": 1001, "state_id": 275, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 138/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 83, "fields": {"code": 1001, "state_id": 285, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 10 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 122/044"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 84, "fields": {"code": 1001, "state_id": 295, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 139/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 85, "fields": {"code": 1001, "state_id": 305, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 125/044"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 86, "fields": {"code": 1001, "state_id": 315, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 142/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 87, "fields": {"code": 1001, "state_id": 325, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 139/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 88, "fields": {"code": 1001, "state_id": 335, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 146/089"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 89, "fields": {"code": 1001, "state_id": 345, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 142/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 90, "fields": {"code": 1001, "state_id": 355, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 94 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 139/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 91, "fields": {"code": 1001, "state_id": 755, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 136/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 92, "fields": {"code": 1001, "state_id": 214, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 93, "fields": {"code": 1001, "state_id": 224, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 127/039"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 94, "fields": {"code": 1001, "state_id": 234, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 144/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 95, "fields": {"code": 1001, "state_id": 244, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 96, "fields": {"code": 1001, "state_id": 254, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 150/087"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 97, "fields": {"code": 1001, "state_id": 264, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 144/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 98, "fields": {"code": 1001, "state_id": 274, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 145/075"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 99, "fields": {"code": 1001, "state_id": 284, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 125/044"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 100, "fields": {"code": 1001, "state_id": 294, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 142/074"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 101, "fields": {"code": 1001, "state_id": 304, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 128/044"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 102, "fields": {"code": 1001, "state_id": 314, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 145/074"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 103, "fields": {"code": 1001, "state_id": 324, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 142/074"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 104, "fields": {"code": 1001, "state_id": 334, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 151/092"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 105, "fields": {"code": 1001, "state_id": 344, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 145/074"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 106, "fields": {"code": 1001, "state_id": 354, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 146/080"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 107, "fields": {"code": 1001, "state_id": 754, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 139/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 108, "fields": {"code": 1001, "state_id": 213, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 133/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 109, "fields": {"code": 1001, "state_id": 223, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 119/032"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 110, "fields": {"code": 1001, "state_id": 233, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 136/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 111, "fields": {"code": 1001, "state_id": 243, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 133/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 112, "fields": {"code": 1001, "state_id": 253, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 144/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 113, "fields": {"code": 1001, "state_id": 263, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 136/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 114, "fields": {"code": 1001, "state_id": 273, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 141/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 115, "fields": {"code": 1001, "state_id": 283, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 117/037"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 116, "fields": {"code": 1001, "state_id": 293, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 134/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 117, "fields": {"code": 1001, "state_id": 303, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 120/037"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 118, "fields": {"code": 1001, "state_id": 313, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 137/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 119, "fields": {"code": 1001, "state_id": 323, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 134/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 120, "fields": {"code": 1001, "state_id": 333, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 145/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 121, "fields": {"code": 1001, "state_id": 343, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 137/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 122, "fields": {"code": 1001, "state_id": 353, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 142/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 123, "fields": {"code": 1001, "state_id": 753, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 131/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 124, "fields": {"code": 1001, "state_id": 212, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 136/062"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 125, "fields": {"code": 1001, "state_id": 222, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 122/032"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 126, "fields": {"code": 1001, "state_id": 232, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 139/062"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 127, "fields": {"code": 1001, "state_id": 242, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 136/062"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 128, "fields": {"code": 1001, "state_id": 252, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 149/086"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 129, "fields": {"code": 1001, "state_id": 262, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 139/062"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 130, "fields": {"code": 1001, "state_id": 272, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 148/080"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 131, "fields": {"code": 1001, "state_id": 282, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 120/037"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 132, "fields": {"code": 1001, "state_id": 292, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 137/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 133, "fields": {"code": 1001, "state_id": 302, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 123/037"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 134, "fields": {"code": 1001, "state_id": 312, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 140/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 135, "fields": {"code": 1001, "state_id": 322, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 137/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 136, "fields": {"code": 1001, "state_id": 332, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 150/091"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 137, "fields": {"code": 1001, "state_id": 342, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 140/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 138, "fields": {"code": 1001, "state_id": 352, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 149/085"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 139, "fields": {"code": 1001, "state_id": 752, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 134/062"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 140, "fields": {"code": 1001, "state_id": 211, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 128/055"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 141, "fields": {"code": 1001, "state_id": 221, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 114/025"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 142, "fields": {"code": 1001, "state_id": 231, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 131/055"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 143, "fields": {"code": 1001, "state_id": 241, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 128/055"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 144, "fields": {"code": 1001, "state_id": 251, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 143/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 145, "fields": {"code": 1001, "state_id": 261, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 131/055"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 146, "fields": {"code": 1001, "state_id": 271, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 144/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 147, "fields": {"code": 1001, "state_id": 281, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 112/030"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 148, "fields": {"code": 1001, "state_id": 291, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 129/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 149, "fields": {"code": 1001, "state_id": 301, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 115/030"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 150, "fields": {"code": 1001, "state_id": 311, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 151, "fields": {"code": 1001, "state_id": 321, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 129/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 152, "fields": {"code": 1001, "state_id": 331, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 144/087"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 153, "fields": {"code": 1001, "state_id": 341, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 154, "fields": {"code": 1001, "state_id": 351, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 145/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 155, "fields": {"code": 1001, "state_id": 751, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 126/055"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 156, "fields": {"code": 1001, "state_id": 551, "transition": 138, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 138/083"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 157, "fields": {"code": 1002, "state_id": 101, "transition": 260, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 94 /min\nperipher kräftig tastbar\nRR: 145/065"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 702, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 158, "fields": {"code": 1002, "state_id": 102, "transition": 259, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 97 /min\nperipher kräftig tastbar\nRR: 147/068"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 702, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 159, "fields": {"code": 1002, "state_id": 103, "transition": 258, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 94 /min\nperipher kräftig tastbar\nRR: 144/066"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 702, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 160, "fields": {"code": 1002, "state_id": 104, "transition": 257, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 97 /min\nperipher kräftig tastbar\nRR: 146/069"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 702, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 161, "fields": {"code": 1002, "state_id": 105, "transition": 237, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 111 /min\nperipher tastbar\nRR: 122/069"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 735, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 162, "fields": {"code": 1002, "state_id": 205, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 163, "fields": {"code": 1002, "state_id": 206, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 164, "fields": {"code": 1002, "state_id": 207, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 165, "fields": {"code": 1002, "state_id": 208, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 166, "fields": {"code": 1002, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 167, "fields": {"code": 1002, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 49 /min\nnur zentral noch tastbar\nRR: 63/037"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 168, "fields": {"code": 1002, "state_id": 500, "transition": 1, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfrequenz: 0 /min\nSpO2: n.m. %\nAtemstillstand", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 169, "fields": {"code": 1002, "state_id": 502, "transition": 1, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 170, "fields": {"code": 1002, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 171, "fields": {"code": 1002, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 49 /min\nnur zentral noch tastbar\nRR: 63/037"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 172, "fields": {"code": 1002, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 173, "fields": {"code": 1002, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 41 /min\nzentral nicht tastbar\nRR: 35/025"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 174, "fields": {"code": 1002, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 175, "fields": {"code": 1002, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 41 /min\nzentral nicht tastbar\nRR: 35/025"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 176, "fields": {"code": 1002, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 177, "fields": {"code": 1002, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 49 /min\nnur zentral noch tastbar\nRR: 63/037"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 178, "fields": {"code": 1002, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 179, "fields": {"code": 1002, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 41 /min\nzentral nicht tastbar\nRR: 35/025"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 180, "fields": {"code": 1002, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 181, "fields": {"code": 1002, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 41 /min\nzentral nicht tastbar\nRR: 35/025"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 182, "fields": {"code": 1002, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 183, "fields": {"code": 1002, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 41 /min\nzentral nicht tastbar\nRR: 35/025"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 184, "fields": {"code": 1002, "state_id": 709, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 185, "fields": {"code": 1002, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 49 /min\nnur zentral noch tastbar\nRR: 63/037"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 186, "fields": {"code": 1002, "state_id": 749, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 187, "fields": {"code": 1002, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 41 /min\nzentral nicht tastbar\nRR: 35/025"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 188, "fields": {"code": 1002, "state_id": 218, "transition": 157, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 50 /min\nnur zentral noch tastbar\nRR: 66/039"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 189, "fields": {"code": 1002, "state_id": 228, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 190, "fields": {"code": 1002, "state_id": 238, "transition": 157, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 50 /min\nnur zentral noch tastbar\nRR: 66/039"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 191, "fields": {"code": 1002, "state_id": 248, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 192, "fields": {"code": 1002, "state_id": 258, "transition": 157, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 44 /min\nzentral nicht tastbar\nRR: 45/030"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 193, "fields": {"code": 1002, "state_id": 268, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 194, "fields": {"code": 1002, "state_id": 278, "transition": 157, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 44 /min\nzentral nicht tastbar\nRR: 45/030"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 195, "fields": {"code": 1002, "state_id": 288, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 196, "fields": {"code": 1002, "state_id": 298, "transition": 157, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 50 /min\nnur zentral noch tastbar\nRR: 66/039"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 197, "fields": {"code": 1002, "state_id": 308, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 198, "fields": {"code": 1002, "state_id": 318, "transition": 157, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 44 /min\nzentral nicht tastbar\nRR: 45/030"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 199, "fields": {"code": 1002, "state_id": 328, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 200, "fields": {"code": 1002, "state_id": 338, "transition": 157, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 44 /min\nzentral nicht tastbar\nRR: 45/030"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 201, "fields": {"code": 1002, "state_id": 348, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 202, "fields": {"code": 1002, "state_id": 358, "transition": 157, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 44 /min\nzentral nicht tastbar\nRR: 45/030"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 203, "fields": {"code": 1002, "state_id": 708, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 204, "fields": {"code": 1002, "state_id": 718, "transition": 156, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 50 /min\nnur zentral noch tastbar\nRR: 66/039"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 205, "fields": {"code": 1002, "state_id": 748, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 206, "fields": {"code": 1002, "state_id": 758, "transition": 156, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 44 /min\nzentral nicht tastbar\nRR: 45/030"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 207, "fields": {"code": 1002, "state_id": 217, "transition": 177, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 49 /min\nnur zentral noch tastbar\nRR: 64/036"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 208, "fields": {"code": 1002, "state_id": 227, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 209, "fields": {"code": 1002, "state_id": 237, "transition": 177, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 49 /min\nnur zentral noch tastbar\nRR: 64/036"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 210, "fields": {"code": 1002, "state_id": 247, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 211, "fields": {"code": 1002, "state_id": 257, "transition": 177, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 45 /min\nnur zentral noch tastbar\nRR: 50/030"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 212, "fields": {"code": 1002, "state_id": 267, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 213, "fields": {"code": 1002, "state_id": 277, "transition": 177, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 45 /min\nnur zentral noch tastbar\nRR: 50/030"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 214, "fields": {"code": 1002, "state_id": 287, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 215, "fields": {"code": 1002, "state_id": 297, "transition": 177, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 49 /min\nnur zentral noch tastbar\nRR: 64/036"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 216, "fields": {"code": 1002, "state_id": 307, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 217, "fields": {"code": 1002, "state_id": 317, "transition": 177, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 45 /min\nnur zentral noch tastbar\nRR: 50/030"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 218, "fields": {"code": 1002, "state_id": 327, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 219, "fields": {"code": 1002, "state_id": 337, "transition": 177, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 45 /min\nnur zentral noch tastbar\nRR: 50/030"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 220, "fields": {"code": 1002, "state_id": 347, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 221, "fields": {"code": 1002, "state_id": 357, "transition": 177, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 45 /min\nnur zentral noch tastbar\nRR: 50/030"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 222, "fields": {"code": 1002, "state_id": 707, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 223, "fields": {"code": 1002, "state_id": 717, "transition": 177, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 49 /min\nnur zentral noch tastbar\nRR: 64/036"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 224, "fields": {"code": 1002, "state_id": 747, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 225, "fields": {"code": 1002, "state_id": 757, "transition": 177, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 45 /min\nnur zentral noch tastbar\nRR: 50/030"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 226, "fields": {"code": 1002, "state_id": 216, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 50 /min\nnur zentral noch tastbar\nRR: 67/038"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 227, "fields": {"code": 1002, "state_id": 226, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 228, "fields": {"code": 1002, "state_id": 236, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 50 /min\nnur zentral noch tastbar\nRR: 67/038"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 229, "fields": {"code": 1002, "state_id": 246, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 230, "fields": {"code": 1002, "state_id": 256, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 48 /min\nnur zentral noch tastbar\nRR: 60/035"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 231, "fields": {"code": 1002, "state_id": 266, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 232, "fields": {"code": 1002, "state_id": 276, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 48 /min\nnur zentral noch tastbar\nRR: 60/035"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 233, "fields": {"code": 1002, "state_id": 286, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 234, "fields": {"code": 1002, "state_id": 296, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 50 /min\nnur zentral noch tastbar\nRR: 67/038"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 235, "fields": {"code": 1002, "state_id": 306, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 236, "fields": {"code": 1002, "state_id": 316, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 48 /min\nnur zentral noch tastbar\nRR: 60/035"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 237, "fields": {"code": 1002, "state_id": 326, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 238, "fields": {"code": 1002, "state_id": 336, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 48 /min\nnur zentral noch tastbar\nRR: 60/035"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 239, "fields": {"code": 1002, "state_id": 346, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 240, "fields": {"code": 1002, "state_id": 356, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 48 /min\nnur zentral noch tastbar\nRR: 60/035"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 241, "fields": {"code": 1002, "state_id": 706, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 242, "fields": {"code": 1002, "state_id": 716, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 50 /min\nnur zentral noch tastbar\nRR: 67/038"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 243, "fields": {"code": 1002, "state_id": 746, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 244, "fields": {"code": 1002, "state_id": 756, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 48 /min\nnur zentral noch tastbar\nRR: 60/035"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 245, "fields": {"code": 1002, "state_id": 215, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 101/037"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 246, "fields": {"code": 1002, "state_id": 225, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 247, "fields": {"code": 1002, "state_id": 235, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 109/067"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 248, "fields": {"code": 1002, "state_id": 245, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 249, "fields": {"code": 1002, "state_id": 255, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 103/040"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 250, "fields": {"code": 1002, "state_id": 265, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 251, "fields": {"code": 1002, "state_id": 275, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher tastbar\nRR: 111/070"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 252, "fields": {"code": 1002, "state_id": 285, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 253, "fields": {"code": 1002, "state_id": 295, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher tastbar\nRR: 101/037"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 254, "fields": {"code": 1002, "state_id": 305, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 255, "fields": {"code": 1002, "state_id": 315, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 95 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 111 /min\nperipher tastbar\nRR: 102/064"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 256, "fields": {"code": 1002, "state_id": 325, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 257, "fields": {"code": 1002, "state_id": 335, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 103/040"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 258, "fields": {"code": 1002, "state_id": 345, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 259, "fields": {"code": 1002, "state_id": 355, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 95 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 111/070"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 260, "fields": {"code": 1002, "state_id": 705, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 261, "fields": {"code": 1002, "state_id": 715, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 109/067"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 262, "fields": {"code": 1002, "state_id": 745, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 263, "fields": {"code": 1002, "state_id": 755, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 105 /min\nperipher tastbar\nRR: 111/070"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 264, "fields": {"code": 1002, "state_id": 551, "transition": 264, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 140/065"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 702, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 265, "fields": {"code": 1002, "state_id": 552, "transition": 263, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 91 /min\nperipher kräftig tastbar\nRR: 142/068"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 702, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 266, "fields": {"code": 1002, "state_id": 553, "transition": 262, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 139/066"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 702, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 267, "fields": {"code": 1002, "state_id": 554, "transition": 261, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 91 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 702, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 268, "fields": {"code": 1002, "state_id": 555, "transition": 237, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 111 /min\nperipher tastbar\nRR: 122/069"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 735, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 269, "fields": {"code": 1003, "state_id": 101, "transition": 301, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 270, "fields": {"code": 1003, "state_id": 102, "transition": 300, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 271, "fields": {"code": 1003, "state_id": 103, "transition": 295, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 147/076"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 272, "fields": {"code": 1003, "state_id": 233, "transition": 290, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 273, "fields": {"code": 1003, "state_id": 234, "transition": 285, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 134/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 274, "fields": {"code": 1003, "state_id": 235, "transition": 280, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 127/057"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 275, "fields": {"code": 1003, "state_id": 236, "transition": 275, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 131/058"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 276, "fields": {"code": 1003, "state_id": 237, "transition": 270, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 124/052"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 277, "fields": {"code": 1003, "state_id": 238, "transition": 265, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 128/053"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 278, "fields": {"code": 1003, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 121/047"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 279, "fields": {"code": 1003, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 167/099"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 280, "fields": {"code": 1003, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 122/052"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 281, "fields": {"code": 1003, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 168/104"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 282, "fields": {"code": 1003, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 283, "fields": {"code": 1003, "state_id": 278, "transition": 265, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 170/099"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 284, "fields": {"code": 1003, "state_id": 318, "transition": 265, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 129/058"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 285, "fields": {"code": 1003, "state_id": 358, "transition": 265, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 171/104"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 286, "fields": {"code": 1003, "state_id": 718, "transition": 265, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 287, "fields": {"code": 1003, "state_id": 277, "transition": 270, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 162/092"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 288, "fields": {"code": 1003, "state_id": 317, "transition": 270, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher tastbar\nRR: 125/057"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 289, "fields": {"code": 1003, "state_id": 357, "transition": 270, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 163/097"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 290, "fields": {"code": 1003, "state_id": 717, "transition": 270, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 291, "fields": {"code": 1003, "state_id": 276, "transition": 275, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 165/092"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 292, "fields": {"code": 1003, "state_id": 316, "transition": 275, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 132/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 293, "fields": {"code": 1003, "state_id": 356, "transition": 275, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 166/097"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 294, "fields": {"code": 1003, "state_id": 716, "transition": 275, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 134/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 295, "fields": {"code": 1003, "state_id": 275, "transition": 280, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 157/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 296, "fields": {"code": 1003, "state_id": 315, "transition": 280, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 128/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 297, "fields": {"code": 1003, "state_id": 355, "transition": 280, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 158/090"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 298, "fields": {"code": 1003, "state_id": 715, "transition": 280, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 128/066"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 299, "fields": {"code": 1003, "state_id": 274, "transition": 285, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 160/085"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 300, "fields": {"code": 1003, "state_id": 314, "transition": 285, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 135/068"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 301, "fields": {"code": 1003, "state_id": 354, "transition": 285, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 161/090"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 302, "fields": {"code": 1003, "state_id": 714, "transition": 285, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 133/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 303, "fields": {"code": 1003, "state_id": 273, "transition": 290, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 152/078"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 304, "fields": {"code": 1003, "state_id": 313, "transition": 290, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 305, "fields": {"code": 1003, "state_id": 353, "transition": 290, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 153/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 306, "fields": {"code": 1003, "state_id": 713, "transition": 290, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 127/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 307, "fields": {"code": 1003, "state_id": 551, "transition": 303, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 308, "fields": {"code": 1003, "state_id": 552, "transition": 302, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 309, "fields": {"code": 1003, "state_id": 553, "transition": 295, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 142/076"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 310, "fields": {"code": 1004, "state_id": 101, "transition": 336, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 311, "fields": {"code": 1004, "state_id": 102, "transition": 335, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 312, "fields": {"code": 1004, "state_id": 103, "transition": 334, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 313, "fields": {"code": 1004, "state_id": 104, "transition": 329, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 153/080"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 314, "fields": {"code": 1004, "state_id": 234, "transition": 324, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/066"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 315, "fields": {"code": 1004, "state_id": 235, "transition": 319, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 129/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 316, "fields": {"code": 1004, "state_id": 236, "transition": 314, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 133/061"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 317, "fields": {"code": 1004, "state_id": 237, "transition": 309, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 126/055"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 318, "fields": {"code": 1004, "state_id": 238, "transition": 304, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 130/056"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 319, "fields": {"code": 1004, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 123/050"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 320, "fields": {"code": 1004, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 165/096"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 321, "fields": {"code": 1004, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 124/055"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 322, "fields": {"code": 1004, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 166/101"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 323, "fields": {"code": 1004, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 324, "fields": {"code": 1004, "state_id": 278, "transition": 304, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 168/096"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 325, "fields": {"code": 1004, "state_id": 318, "transition": 304, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 131/061"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 326, "fields": {"code": 1004, "state_id": 358, "transition": 304, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 169/101"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 327, "fields": {"code": 1004, "state_id": 718, "transition": 304, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 328, "fields": {"code": 1004, "state_id": 277, "transition": 309, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 160/089"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 329, "fields": {"code": 1004, "state_id": 317, "transition": 309, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 127/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 330, "fields": {"code": 1004, "state_id": 357, "transition": 309, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 161/094"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 331, "fields": {"code": 1004, "state_id": 717, "transition": 309, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 332, "fields": {"code": 1004, "state_id": 276, "transition": 314, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 163/089"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 333, "fields": {"code": 1004, "state_id": 316, "transition": 314, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 134/066"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 334, "fields": {"code": 1004, "state_id": 356, "transition": 314, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 164/094"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 335, "fields": {"code": 1004, "state_id": 716, "transition": 314, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 134/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 336, "fields": {"code": 1004, "state_id": 275, "transition": 319, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 155/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 337, "fields": {"code": 1004, "state_id": 315, "transition": 319, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 130/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 338, "fields": {"code": 1004, "state_id": 355, "transition": 319, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 156/087"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 339, "fields": {"code": 1004, "state_id": 715, "transition": 319, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 128/066"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 340, "fields": {"code": 1004, "state_id": 274, "transition": 324, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 158/082"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 341, "fields": {"code": 1004, "state_id": 314, "transition": 324, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 137/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 342, "fields": {"code": 1004, "state_id": 354, "transition": 324, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 159/087"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 343, "fields": {"code": 1004, "state_id": 714, "transition": 324, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 133/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 344, "fields": {"code": 1004, "state_id": 551, "transition": 339, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 345, "fields": {"code": 1004, "state_id": 552, "transition": 338, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 346, "fields": {"code": 1004, "state_id": 553, "transition": 337, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 347, "fields": {"code": 1004, "state_id": 554, "transition": 329, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 148/080"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 348, "fields": {"code": 1005, "state_id": 101, "transition": 629, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 115 /min\nnur zentral noch tastbar\nRR: 58/026"}, "examination_codes": {"BZ": 928, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Pat. klagt über starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 349, "fields": {"code": 1005, "state_id": 500, "transition": 340, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfrequenz: 0 /min\nSpO2: n.m. %\nAtemstillstand", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {"EKG": 0, "ZVD": 822}, "special_events": "", "is_dead": true}}, {"model": "template.patientstate", "pk": 350, "fields": {"code": 1005, "state_id": 502, "transition": 340, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 351, "fields": {"code": 1005, "state_id": 351, "transition": 565, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 116 /min\nzentral nicht tastbar\nRR: 48/026"}, "examination_codes": {"BZ": 954, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 352, "fields": {"code": 1005, "state_id": 352, "transition": 533, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 123 /min\nzentral nicht tastbar\nRR: 44/025"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 353, "fields": {"code": 1005, "state_id": 353, "transition": 501, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 123 /min\nzentral nicht tastbar\nRR: 35/019"}, "examination_codes": {"BZ": 954, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 354, "fields": {"code": 1005, "state_id": 354, "transition": 469, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 131 /min\nzentral nicht tastbar\nRR: 31/018"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 355, "fields": {"code": 1005, "state_id": 355, "transition": 437, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 131 /min\nzentral nicht tastbar\nRR: 22/012"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 356, "fields": {"code": 1005, "state_id": 356, "transition": 405, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 139 /min\nzentral nicht tastbar\nRR: 18/011"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 357, "fields": {"code": 1005, "state_id": 357, "transition": 373, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 139 /min\nzentral nicht tastbar\nRR: 9/005"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 714, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 358, "fields": {"code": 1005, "state_id": 358, "transition": 341, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 147 /min\nzentral nicht tastbar\nRR: 5/004"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 714, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 359, "fields": {"code": 1005, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 146 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 714, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 360, "fields": {"code": 1005, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 138 /min\nzentral nicht tastbar\nRR: 3/999"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 714, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 361, "fields": {"code": 1005, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 130 /min\nzentral nicht tastbar\nRR: 13/999"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 714, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 362, "fields": {"code": 1005, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 112/072"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 363, "fields": {"code": 1005, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 125 /min\nzentral nicht tastbar\nRR: 14/001"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 714, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 364, "fields": {"code": 1005, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 76/038"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 365, "fields": {"code": 1005, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 366, "fields": {"code": 1005, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 367, "fields": {"code": 1005, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 368, "fields": {"code": 1005, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 369, "fields": {"code": 1005, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 140/075"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 370, "fields": {"code": 1005, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 50 /min\nperipher kräftig tastbar\nRR: 148/076"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 371, "fields": {"code": 1005, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 104/041"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 372, "fields": {"code": 1005, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 48 /min\nperipher kräftig tastbar\nRR: 148/078"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 373, "fields": {"code": 1005, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 46 /min\nperipher kräftig tastbar\nRR: 158/078"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 374, "fields": {"code": 1005, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 45 /min\nperipher kräftig tastbar\nRR: 166/079"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 375, "fields": {"code": 1005, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 187 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 714, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 376, "fields": {"code": 1005, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 177 /min\nzentral nicht tastbar\nRR: 3/999"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 714, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 377, "fields": {"code": 1005, "state_id": 749, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 167 /min\nzentral nicht tastbar\nRR: 13/999"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 714, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 378, "fields": {"code": 1005, "state_id": 729, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 112/072"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 379, "fields": {"code": 1005, "state_id": 679, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 160 /min\nzentral nicht tastbar\nRR: 14/001"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 714, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 380, "fields": {"code": 1005, "state_id": 659, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 76/038"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 381, "fields": {"code": 1005, "state_id": 669, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 382, "fields": {"code": 1005, "state_id": 649, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 383, "fields": {"code": 1005, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 384, "fields": {"code": 1005, "state_id": 699, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 385, "fields": {"code": 1005, "state_id": 709, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 140/075"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 386, "fields": {"code": 1005, "state_id": 689, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 148/076"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 387, "fields": {"code": 1005, "state_id": 639, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 104/041"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 388, "fields": {"code": 1005, "state_id": 619, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 63 /min\nperipher kräftig tastbar\nRR: 148/078"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 389, "fields": {"code": 1005, "state_id": 629, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 158/078"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 390, "fields": {"code": 1005, "state_id": 609, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 166/079"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 391, "fields": {"code": 1005, "state_id": 338, "transition": 341, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 138 /min\nzentral nicht tastbar\nRR: 13/005"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 714, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 392, "fields": {"code": 1005, "state_id": 348, "transition": 341, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 130 /min\nzentral nicht tastbar\nRR: 23/005"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 393, "fields": {"code": 1005, "state_id": 328, "transition": 341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 111/070"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 394, "fields": {"code": 1005, "state_id": 278, "transition": 341, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 125 /min\nzentral nicht tastbar\nRR: 23/007"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 395, "fields": {"code": 1005, "state_id": 258, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 79/040"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 396, "fields": {"code": 1005, "state_id": 268, "transition": 341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 397, "fields": {"code": 1005, "state_id": 248, "transition": 341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 398, "fields": {"code": 1005, "state_id": 318, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 399, "fields": {"code": 1005, "state_id": 298, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 400, "fields": {"code": 1005, "state_id": 308, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 139/073"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 401, "fields": {"code": 1005, "state_id": 288, "transition": 341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 147/074"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 402, "fields": {"code": 1005, "state_id": 238, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 107/043"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 403, "fields": {"code": 1005, "state_id": 218, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 50 /min\nperipher kräftig tastbar\nRR: 147/076"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 404, "fields": {"code": 1005, "state_id": 228, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 48 /min\nperipher kräftig tastbar\nRR: 157/076"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 405, "fields": {"code": 1005, "state_id": 208, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 47 /min\nperipher kräftig tastbar\nRR: 165/077"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 406, "fields": {"code": 1005, "state_id": 758, "transition": 341, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 187 /min\nzentral nicht tastbar\nRR: 5/004"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 714, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 407, "fields": {"code": 1005, "state_id": 738, "transition": 341, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 177 /min\nzentral nicht tastbar\nRR: 13/005"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 714, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 408, "fields": {"code": 1005, "state_id": 748, "transition": 341, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 167 /min\nzentral nicht tastbar\nRR: 23/005"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 409, "fields": {"code": 1005, "state_id": 728, "transition": 341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 111/070"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 410, "fields": {"code": 1005, "state_id": 678, "transition": 341, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 160 /min\nzentral nicht tastbar\nRR: 23/007"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 411, "fields": {"code": 1005, "state_id": 658, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 79/040"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 412, "fields": {"code": 1005, "state_id": 668, "transition": 341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 413, "fields": {"code": 1005, "state_id": 648, "transition": 341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 414, "fields": {"code": 1005, "state_id": 718, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 415, "fields": {"code": 1005, "state_id": 698, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 416, "fields": {"code": 1005, "state_id": 708, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 139/073"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 417, "fields": {"code": 1005, "state_id": 688, "transition": 341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 147/074"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 418, "fields": {"code": 1005, "state_id": 638, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 107/043"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 419, "fields": {"code": 1005, "state_id": 618, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 147/076"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 420, "fields": {"code": 1005, "state_id": 628, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 63 /min\nperipher kräftig tastbar\nRR: 157/076"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 421, "fields": {"code": 1005, "state_id": 608, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 165/077"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 422, "fields": {"code": 1005, "state_id": 337, "transition": 373, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 130 /min\nzentral nicht tastbar\nRR: 17/006"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 423, "fields": {"code": 1005, "state_id": 347, "transition": 373, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 122 /min\nzentral nicht tastbar\nRR: 27/006"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 424, "fields": {"code": 1005, "state_id": 327, "transition": 373, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 105/063"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 425, "fields": {"code": 1005, "state_id": 277, "transition": 373, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 117 /min\nzentral nicht tastbar\nRR: 27/008"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 426, "fields": {"code": 1005, "state_id": 257, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 77/037"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 427, "fields": {"code": 1005, "state_id": 267, "transition": 373, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 87/037"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 428, "fields": {"code": 1005, "state_id": 247, "transition": 373, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 95/038"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 429, "fields": {"code": 1005, "state_id": 317, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 87/037"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 430, "fields": {"code": 1005, "state_id": 297, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 95/038"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 431, "fields": {"code": 1005, "state_id": 307, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 133/066"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 432, "fields": {"code": 1005, "state_id": 287, "transition": 373, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 141/067"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 433, "fields": {"code": 1005, "state_id": 237, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 105/040"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 434, "fields": {"code": 1005, "state_id": 217, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 51 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 435, "fields": {"code": 1005, "state_id": 227, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 48 /min\nperipher kräftig tastbar\nRR: 151/069"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 436, "fields": {"code": 1005, "state_id": 207, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 47 /min\nperipher kräftig tastbar\nRR: 159/070"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 437, "fields": {"code": 1005, "state_id": 757, "transition": 373, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 177 /min\nzentral nicht tastbar\nRR: 9/005"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 714, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 438, "fields": {"code": 1005, "state_id": 737, "transition": 373, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 167 /min\nzentral nicht tastbar\nRR: 17/006"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 439, "fields": {"code": 1005, "state_id": 747, "transition": 373, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 157 /min\nzentral nicht tastbar\nRR: 27/006"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 440, "fields": {"code": 1005, "state_id": 727, "transition": 373, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 105/063"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 441, "fields": {"code": 1005, "state_id": 677, "transition": 373, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 150 /min\nzentral nicht tastbar\nRR: 27/008"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 442, "fields": {"code": 1005, "state_id": 657, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 77/037"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 443, "fields": {"code": 1005, "state_id": 667, "transition": 373, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 87/037"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 444, "fields": {"code": 1005, "state_id": 647, "transition": 373, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 95/038"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 445, "fields": {"code": 1005, "state_id": 717, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 87/037"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 446, "fields": {"code": 1005, "state_id": 697, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 95/038"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 447, "fields": {"code": 1005, "state_id": 707, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 133/066"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 448, "fields": {"code": 1005, "state_id": 687, "transition": 373, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 141/067"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 449, "fields": {"code": 1005, "state_id": 637, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 105/040"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 450, "fields": {"code": 1005, "state_id": 617, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 451, "fields": {"code": 1005, "state_id": 627, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 63 /min\nperipher kräftig tastbar\nRR: 151/069"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 452, "fields": {"code": 1005, "state_id": 607, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 159/070"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 453, "fields": {"code": 1005, "state_id": 336, "transition": 405, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 130 /min\nzentral nicht tastbar\nRR: 26/012"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 454, "fields": {"code": 1005, "state_id": 346, "transition": 405, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 122 /min\nzentral nicht tastbar\nRR: 36/012"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 455, "fields": {"code": 1005, "state_id": 326, "transition": 405, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 104/061"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 456, "fields": {"code": 1005, "state_id": 276, "transition": 405, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 117 /min\nzentral nicht tastbar\nRR: 36/014"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 457, "fields": {"code": 1005, "state_id": 256, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 80/039"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 458, "fields": {"code": 1005, "state_id": 266, "transition": 405, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 90/039"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 459, "fields": {"code": 1005, "state_id": 246, "transition": 405, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 98/040"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 460, "fields": {"code": 1005, "state_id": 316, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 90/039"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 461, "fields": {"code": 1005, "state_id": 296, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 98/040"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 462, "fields": {"code": 1005, "state_id": 306, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 132/064"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 463, "fields": {"code": 1005, "state_id": 286, "transition": 405, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 140/065"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 464, "fields": {"code": 1005, "state_id": 236, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 108/042"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 465, "fields": {"code": 1005, "state_id": 216, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 140/067"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 466, "fields": {"code": 1005, "state_id": 226, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 50 /min\nperipher kräftig tastbar\nRR: 150/067"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 467, "fields": {"code": 1005, "state_id": 206, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 49 /min\nperipher kräftig tastbar\nRR: 158/068"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 468, "fields": {"code": 1005, "state_id": 756, "transition": 405, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 177 /min\nzentral nicht tastbar\nRR: 18/011"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 469, "fields": {"code": 1005, "state_id": 736, "transition": 405, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 167 /min\nzentral nicht tastbar\nRR: 26/012"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 470, "fields": {"code": 1005, "state_id": 746, "transition": 405, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 157 /min\nzentral nicht tastbar\nRR: 36/012"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 471, "fields": {"code": 1005, "state_id": 726, "transition": 405, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 104/061"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 472, "fields": {"code": 1005, "state_id": 676, "transition": 405, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 150 /min\nzentral nicht tastbar\nRR: 36/014"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 473, "fields": {"code": 1005, "state_id": 656, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 117 /min\nperipher tastbar\nRR: 80/039"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 474, "fields": {"code": 1005, "state_id": 666, "transition": 405, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 90/039"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 475, "fields": {"code": 1005, "state_id": 646, "transition": 405, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 98/040"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 476, "fields": {"code": 1005, "state_id": 716, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 90/039"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 477, "fields": {"code": 1005, "state_id": 696, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 98/040"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 478, "fields": {"code": 1005, "state_id": 706, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 132/064"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 479, "fields": {"code": 1005, "state_id": 686, "transition": 405, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 140/065"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 480, "fields": {"code": 1005, "state_id": 636, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 108/042"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 481, "fields": {"code": 1005, "state_id": 616, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 140/067"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 482, "fields": {"code": 1005, "state_id": 626, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 150/067"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 483, "fields": {"code": 1005, "state_id": 606, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 63 /min\nperipher kräftig tastbar\nRR: 158/068"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 484, "fields": {"code": 1005, "state_id": 335, "transition": 437, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 122 /min\nzentral nicht tastbar\nRR: 30/013"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 485, "fields": {"code": 1005, "state_id": 345, "transition": 437, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 115 /min\nzentral nicht tastbar\nRR: 40/013"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 486, "fields": {"code": 1005, "state_id": 325, "transition": 437, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 98/054"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 487, "fields": {"code": 1005, "state_id": 275, "transition": 437, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 111 /min\nzentral nicht tastbar\nRR: 40/015"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 488, "fields": {"code": 1005, "state_id": 255, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 78/036"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 489, "fields": {"code": 1005, "state_id": 265, "transition": 437, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 88/036"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 490, "fields": {"code": 1005, "state_id": 245, "transition": 437, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 96/037"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 491, "fields": {"code": 1005, "state_id": 315, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 88/036"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 492, "fields": {"code": 1005, "state_id": 295, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 96/037"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 493, "fields": {"code": 1005, "state_id": 305, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 126/057"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 494, "fields": {"code": 1005, "state_id": 285, "transition": 437, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 134/058"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 495, "fields": {"code": 1005, "state_id": 235, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 106/039"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 496, "fields": {"code": 1005, "state_id": 215, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 134/060"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 497, "fields": {"code": 1005, "state_id": 225, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 51 /min\nperipher kräftig tastbar\nRR: 144/060"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 498, "fields": {"code": 1005, "state_id": 205, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 49 /min\nperipher kräftig tastbar\nRR: 152/061"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 499, "fields": {"code": 1005, "state_id": 755, "transition": 437, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 167 /min\nzentral nicht tastbar\nRR: 22/012"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 500, "fields": {"code": 1005, "state_id": 735, "transition": 437, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 157 /min\nzentral nicht tastbar\nRR: 30/013"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 501, "fields": {"code": 1005, "state_id": 745, "transition": 437, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 148 /min\nzentral nicht tastbar\nRR: 40/013"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 502, "fields": {"code": 1005, "state_id": 725, "transition": 437, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 98/054"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 503, "fields": {"code": 1005, "state_id": 675, "transition": 437, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 142 /min\nzentral nicht tastbar\nRR: 40/015"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 504, "fields": {"code": 1005, "state_id": 655, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 114 /min\nperipher tastbar\nRR: 78/036"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 505, "fields": {"code": 1005, "state_id": 665, "transition": 437, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 88/036"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 506, "fields": {"code": 1005, "state_id": 645, "transition": 437, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 96/037"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 507, "fields": {"code": 1005, "state_id": 715, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 88/036"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 508, "fields": {"code": 1005, "state_id": 695, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 96/037"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 509, "fields": {"code": 1005, "state_id": 705, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher tastbar\nRR: 126/057"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 510, "fields": {"code": 1005, "state_id": 685, "transition": 437, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 134/058"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 511, "fields": {"code": 1005, "state_id": 635, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 106/039"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 512, "fields": {"code": 1005, "state_id": 615, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 134/060"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 513, "fields": {"code": 1005, "state_id": 625, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 144/060"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 514, "fields": {"code": 1005, "state_id": 605, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 63 /min\nperipher kräftig tastbar\nRR: 152/061"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 515, "fields": {"code": 1005, "state_id": 334, "transition": 469, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 122 /min\nzentral nicht tastbar\nRR: 39/019"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 516, "fields": {"code": 1005, "state_id": 344, "transition": 469, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 116 /min\nzentral nicht tastbar\nRR: 49/019"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 517, "fields": {"code": 1005, "state_id": 324, "transition": 469, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 97/052"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 518, "fields": {"code": 1005, "state_id": 274, "transition": 469, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 111 /min\nzentral nicht tastbar\nRR: 49/021"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 519, "fields": {"code": 1005, "state_id": 254, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 81/038"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 520, "fields": {"code": 1005, "state_id": 264, "transition": 469, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 91/038"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 521, "fields": {"code": 1005, "state_id": 244, "transition": 469, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 99/039"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 522, "fields": {"code": 1005, "state_id": 314, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 91/038"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 523, "fields": {"code": 1005, "state_id": 294, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 99/039"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 524, "fields": {"code": 1005, "state_id": 304, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 65 /min\nperipher tastbar\nRR: 125/055"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 525, "fields": {"code": 1005, "state_id": 284, "transition": 469, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 133/056"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 526, "fields": {"code": 1005, "state_id": 234, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 109/041"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 527, "fields": {"code": 1005, "state_id": 214, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 133/058"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 528, "fields": {"code": 1005, "state_id": 224, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 143/058"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 529, "fields": {"code": 1005, "state_id": 204, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 151/059"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 530, "fields": {"code": 1005, "state_id": 754, "transition": 469, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 167 /min\nzentral nicht tastbar\nRR: 31/018"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 531, "fields": {"code": 1005, "state_id": 734, "transition": 469, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 157 /min\nzentral nicht tastbar\nRR: 39/019"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 532, "fields": {"code": 1005, "state_id": 744, "transition": 469, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 149 /min\nzentral nicht tastbar\nRR: 49/019"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 533, "fields": {"code": 1005, "state_id": 724, "transition": 469, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 112 /min\nperipher tastbar\nRR: 97/052"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 534, "fields": {"code": 1005, "state_id": 674, "transition": 469, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 142 /min\nzentral nicht tastbar\nRR: 49/021"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 535, "fields": {"code": 1005, "state_id": 654, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 118 /min\nperipher tastbar\nRR: 81/038"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 536, "fields": {"code": 1005, "state_id": 664, "transition": 469, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 91/038"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 537, "fields": {"code": 1005, "state_id": 644, "transition": 469, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 99/039"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 538, "fields": {"code": 1005, "state_id": 714, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 91/038"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 539, "fields": {"code": 1005, "state_id": 694, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 99/039"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 540, "fields": {"code": 1005, "state_id": 704, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 82 /min\nperipher tastbar\nRR: 125/055"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 541, "fields": {"code": 1005, "state_id": 684, "transition": 469, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 133/056"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 542, "fields": {"code": 1005, "state_id": 634, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 109/041"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 543, "fields": {"code": 1005, "state_id": 614, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 133/058"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 544, "fields": {"code": 1005, "state_id": 624, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 143/058"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 545, "fields": {"code": 1005, "state_id": 604, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 151/059"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 546, "fields": {"code": 1005, "state_id": 333, "transition": 501, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 115 /min\nzentral nicht tastbar\nRR: 43/020"}, "examination_codes": {"BZ": 954, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 547, "fields": {"code": 1005, "state_id": 343, "transition": 501, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 110 /min\nnur zentral noch tastbar\nRR: 53/020"}, "examination_codes": {"BZ": 954, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 548, "fields": {"code": 1005, "state_id": 323, "transition": 501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 91/045"}, "examination_codes": {"BZ": 954, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 549, "fields": {"code": 1005, "state_id": 273, "transition": 501, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 105 /min\nnur zentral noch tastbar\nRR: 53/022"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 550, "fields": {"code": 1005, "state_id": 253, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 79/035"}, "examination_codes": {"BZ": 954, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 551, "fields": {"code": 1005, "state_id": 263, "transition": 501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 89/035"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 552, "fields": {"code": 1005, "state_id": 243, "transition": 501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 97/036"}, "examination_codes": {"BZ": 954, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 553, "fields": {"code": 1005, "state_id": 313, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 89/035"}, "examination_codes": {"BZ": 954, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 554, "fields": {"code": 1005, "state_id": 293, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 97/036"}, "examination_codes": {"BZ": 954, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 555, "fields": {"code": 1005, "state_id": 303, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 65 /min\nperipher tastbar\nRR: 119/048"}, "examination_codes": {"BZ": 954, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 556, "fields": {"code": 1005, "state_id": 283, "transition": 501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 62 /min\nperipher tastbar\nRR: 127/049"}, "examination_codes": {"BZ": 954, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 557, "fields": {"code": 1005, "state_id": 233, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 107/038"}, "examination_codes": {"BZ": 954, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 558, "fields": {"code": 1005, "state_id": 213, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher tastbar\nRR: 127/051"}, "examination_codes": {"BZ": 954, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 559, "fields": {"code": 1005, "state_id": 223, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 137/051"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 560, "fields": {"code": 1005, "state_id": 203, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 145/052"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 561, "fields": {"code": 1005, "state_id": 753, "transition": 501, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 157 /min\nzentral nicht tastbar\nRR: 35/019"}, "examination_codes": {"BZ": 954, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 562, "fields": {"code": 1005, "state_id": 733, "transition": 501, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 148 /min\nzentral nicht tastbar\nRR: 43/020"}, "examination_codes": {"BZ": 954, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 563, "fields": {"code": 1005, "state_id": 743, "transition": 501, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 141 /min\nnur zentral noch tastbar\nRR: 53/020"}, "examination_codes": {"BZ": 954, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 564, "fields": {"code": 1005, "state_id": 723, "transition": 501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 112 /min\nperipher tastbar\nRR: 91/045"}, "examination_codes": {"BZ": 954, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 565, "fields": {"code": 1005, "state_id": 673, "transition": 501, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 134 /min\nnur zentral noch tastbar\nRR: 53/022"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 566, "fields": {"code": 1005, "state_id": 653, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 115 /min\nperipher tastbar\nRR: 79/035"}, "examination_codes": {"BZ": 954, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 567, "fields": {"code": 1005, "state_id": 663, "transition": 501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 89/035"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 568, "fields": {"code": 1005, "state_id": 643, "transition": 501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 97/036"}, "examination_codes": {"BZ": 954, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 569, "fields": {"code": 1005, "state_id": 713, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 89/035"}, "examination_codes": {"BZ": 954, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 570, "fields": {"code": 1005, "state_id": 693, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 97/036"}, "examination_codes": {"BZ": 954, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 571, "fields": {"code": 1005, "state_id": 703, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 82 /min\nperipher tastbar\nRR: 119/048"}, "examination_codes": {"BZ": 954, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 572, "fields": {"code": 1005, "state_id": 683, "transition": 501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 127/049"}, "examination_codes": {"BZ": 954, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 573, "fields": {"code": 1005, "state_id": 633, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 107/038"}, "examination_codes": {"BZ": 954, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 574, "fields": {"code": 1005, "state_id": 613, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 127/051"}, "examination_codes": {"BZ": 954, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 575, "fields": {"code": 1005, "state_id": 623, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 137/051"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 576, "fields": {"code": 1005, "state_id": 603, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 145/052"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 577, "fields": {"code": 1005, "state_id": 332, "transition": 533, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 116 /min\nnur zentral noch tastbar\nRR: 52/026"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 578, "fields": {"code": 1005, "state_id": 342, "transition": 533, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 110 /min\nnur zentral noch tastbar\nRR: 62/026"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 579, "fields": {"code": 1005, "state_id": 322, "transition": 533, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 90/043"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 580, "fields": {"code": 1005, "state_id": 272, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 105 /min\nnur zentral noch tastbar\nRR: 62/028"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 581, "fields": {"code": 1005, "state_id": 252, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 82/037"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 582, "fields": {"code": 1005, "state_id": 262, "transition": 533, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 92/037"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 583, "fields": {"code": 1005, "state_id": 242, "transition": 533, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 100/038"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 584, "fields": {"code": 1005, "state_id": 312, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 92/037"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 585, "fields": {"code": 1005, "state_id": 292, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 100/038"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 586, "fields": {"code": 1005, "state_id": 302, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 118/046"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 587, "fields": {"code": 1005, "state_id": 282, "transition": 533, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 126/047"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 588, "fields": {"code": 1005, "state_id": 232, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 110/040"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 589, "fields": {"code": 1005, "state_id": 212, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 63 /min\nperipher tastbar\nRR: 126/049"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 590, "fields": {"code": 1005, "state_id": 222, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 136/049"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 591, "fields": {"code": 1005, "state_id": 202, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 144/050"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 592, "fields": {"code": 1005, "state_id": 752, "transition": 533, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 157 /min\nzentral nicht tastbar\nRR: 44/025"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 593, "fields": {"code": 1005, "state_id": 732, "transition": 533, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 149 /min\nnur zentral noch tastbar\nRR: 52/026"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 594, "fields": {"code": 1005, "state_id": 742, "transition": 533, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 141 /min\nnur zentral noch tastbar\nRR: 62/026"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 595, "fields": {"code": 1005, "state_id": 722, "transition": 533, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 119 /min\nperipher tastbar\nRR: 90/043"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 596, "fields": {"code": 1005, "state_id": 672, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 134 /min\nnur zentral noch tastbar\nRR: 62/028"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 597, "fields": {"code": 1005, "state_id": 652, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 119 /min\nperipher tastbar\nRR: 82/037"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 598, "fields": {"code": 1005, "state_id": 662, "transition": 533, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 92/037"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 599, "fields": {"code": 1005, "state_id": 642, "transition": 533, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 100/038"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 600, "fields": {"code": 1005, "state_id": 712, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 92/037"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 601, "fields": {"code": 1005, "state_id": 692, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 100/038"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 602, "fields": {"code": 1005, "state_id": 702, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 118/046"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 603, "fields": {"code": 1005, "state_id": 682, "transition": 533, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 126/047"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 604, "fields": {"code": 1005, "state_id": 632, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 110/040"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 605, "fields": {"code": 1005, "state_id": 612, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 126/049"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 606, "fields": {"code": 1005, "state_id": 622, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 136/049"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 607, "fields": {"code": 1005, "state_id": 602, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 144/050"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 608, "fields": {"code": 1005, "state_id": 331, "transition": 565, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 110 /min\nnur zentral noch tastbar\nRR: 56/027"}, "examination_codes": {"BZ": 954, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 609, "fields": {"code": 1005, "state_id": 341, "transition": 565, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 104 /min\nnur zentral noch tastbar\nRR: 66/027"}, "examination_codes": {"BZ": 954, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 610, "fields": {"code": 1005, "state_id": 321, "transition": 565, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 84/036"}, "examination_codes": {"BZ": 954, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 611, "fields": {"code": 1005, "state_id": 271, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 99 /min\nnur zentral noch tastbar\nRR: 66/029"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 612, "fields": {"code": 1005, "state_id": 251, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 80/034"}, "examination_codes": {"BZ": 954, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 613, "fields": {"code": 1005, "state_id": 261, "transition": 565, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 90/034"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 614, "fields": {"code": 1005, "state_id": 241, "transition": 565, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 82 /min\nperipher tastbar\nRR: 98/035"}, "examination_codes": {"BZ": 954, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 615, "fields": {"code": 1005, "state_id": 311, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 90/034"}, "examination_codes": {"BZ": 954, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 616, "fields": {"code": 1005, "state_id": 291, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 98/035"}, "examination_codes": {"BZ": 954, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 617, "fields": {"code": 1005, "state_id": 301, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 122/039"}, "examination_codes": {"BZ": 954, "Hb": 403, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 618, "fields": {"code": 1005, "state_id": 281, "transition": 565, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 120/040"}, "examination_codes": {"BZ": 954, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 619, "fields": {"code": 1005, "state_id": 231, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 108/037"}, "examination_codes": {"BZ": 954, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 620, "fields": {"code": 1005, "state_id": 211, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 63 /min\nperipher tastbar\nRR: 120/042"}, "examination_codes": {"BZ": 954, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 621, "fields": {"code": 1005, "state_id": 221, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 130/042"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 622, "fields": {"code": 1005, "state_id": 201, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 138/043"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 623, "fields": {"code": 1005, "state_id": 751, "transition": 565, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 148 /min\nzentral nicht tastbar\nRR: 48/026"}, "examination_codes": {"BZ": 954, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 624, "fields": {"code": 1005, "state_id": 731, "transition": 565, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 141 /min\nnur zentral noch tastbar\nRR: 56/027"}, "examination_codes": {"BZ": 954, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 625, "fields": {"code": 1005, "state_id": 741, "transition": 565, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 133 /min\nnur zentral noch tastbar\nRR: 66/027"}, "examination_codes": {"BZ": 954, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 626, "fields": {"code": 1005, "state_id": 721, "transition": 565, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 120 /min\nperipher tastbar\nRR: 84/036"}, "examination_codes": {"BZ": 954, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 627, "fields": {"code": 1005, "state_id": 671, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 126 /min\nnur zentral noch tastbar\nRR: 66/029"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 628, "fields": {"code": 1005, "state_id": 651, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 80/034"}, "examination_codes": {"BZ": 954, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 629, "fields": {"code": 1005, "state_id": 661, "transition": 565, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 90/034"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 630, "fields": {"code": 1005, "state_id": 641, "transition": 565, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 98/035"}, "examination_codes": {"BZ": 954, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 631, "fields": {"code": 1005, "state_id": 711, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 90/034"}, "examination_codes": {"BZ": 954, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 632, "fields": {"code": 1005, "state_id": 691, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 98/035"}, "examination_codes": {"BZ": 954, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 633, "fields": {"code": 1005, "state_id": 701, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 112/039"}, "examination_codes": {"BZ": 954, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 634, "fields": {"code": 1005, "state_id": 681, "transition": 565, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 120/040"}, "examination_codes": {"BZ": 954, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 635, "fields": {"code": 1005, "state_id": 631, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 108/037"}, "examination_codes": {"BZ": 954, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 636, "fields": {"code": 1005, "state_id": 611, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 120/042"}, "examination_codes": {"BZ": 954, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 637, "fields": {"code": 1005, "state_id": 621, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 130/042"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 638, "fields": {"code": 1005, "state_id": 601, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 138/043"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 639, "fields": {"code": 1005, "state_id": 551, "transition": 340, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 144 /min\nnur zentral noch tastbar\nRR: 58/026"}, "examination_codes": {"BZ": 928, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 640, "fields": {"code": 1006, "state_id": 101, "transition": 671, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 51 %\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 52 /min\nnur zentral noch tastbar\nRR: 70/043"}, "examination_codes": {"BZ": 953, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 641, "fields": {"code": 1006, "state_id": 231, "transition": 666, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 80 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 87 /min\nperipher tastbar\nRR: 95/067"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 642, "fields": {"code": 1006, "state_id": 232, "transition": 661, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 85 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 101/071"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 643, "fields": {"code": 1006, "state_id": 233, "transition": 656, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 88 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 96/068"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 644, "fields": {"code": 1006, "state_id": 234, "transition": 651, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 93 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 102/072"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 645, "fields": {"code": 1006, "state_id": 235, "transition": 646, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 97/069"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 646, "fields": {"code": 1006, "state_id": 236, "transition": 641, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 103/073"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 647, "fields": {"code": 1006, "state_id": 237, "transition": 636, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 98/070"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 648, "fields": {"code": 1006, "state_id": 238, "transition": 630, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 104/074"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 649, "fields": {"code": 1006, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 99/071"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 650, "fields": {"code": 1006, "state_id": 279, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 51 /min\nperipher tastbar\nRR: 88/065"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 651, "fields": {"code": 1006, "state_id": 500, "transition": 631, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfrequenz: 0 /min\nSpO2: n.m. %\nAtemstillstand", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 652, "fields": {"code": 1006, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 80 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 99/071"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 653, "fields": {"code": 1006, "state_id": 359, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 52 /min\nperipher tastbar\nRR: 78/051"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 654, "fields": {"code": 1006, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 99/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 739, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 655, "fields": {"code": 1006, "state_id": 278, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 2 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 54 /min\nperipher tastbar\nRR: 93/068"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 726, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 656, "fields": {"code": 1006, "state_id": 318, "transition": 630, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 81 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 104/074"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 657, "fields": {"code": 1006, "state_id": 358, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 2 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 55 /min\nperipher tastbar\nRR: 83/054"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 726, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 658, "fields": {"code": 1006, "state_id": 718, "transition": 630, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 104/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 739, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 659, "fields": {"code": 1006, "state_id": 277, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 51 /min\nperipher tastbar\nRR: 87/064"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 660, "fields": {"code": 1006, "state_id": 317, "transition": 636, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 80 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 98/070"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 661, "fields": {"code": 1006, "state_id": 357, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 52 /min\nperipher tastbar\nRR: 77/050"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 662, "fields": {"code": 1006, "state_id": 717, "transition": 636, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 98/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 739, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 663, "fields": {"code": 1006, "state_id": 276, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 2 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 54 /min\nperipher tastbar\nRR: 92/067"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 726, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 664, "fields": {"code": 1006, "state_id": 316, "transition": 641, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 81 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 103/073"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 665, "fields": {"code": 1006, "state_id": 356, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 2 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 55 /min\nperipher tastbar\nRR: 82/053"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 726, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 666, "fields": {"code": 1006, "state_id": 716, "transition": 641, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 103/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 739, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 667, "fields": {"code": 1006, "state_id": 275, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 51 /min\nperipher tastbar\nRR: 86/063"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 668, "fields": {"code": 1006, "state_id": 315, "transition": 646, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 80 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 97/069"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 669, "fields": {"code": 1006, "state_id": 355, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 52 /min\nperipher tastbar\nRR: 76/049"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 670, "fields": {"code": 1006, "state_id": 715, "transition": 646, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 97/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 739, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 671, "fields": {"code": 1006, "state_id": 274, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 2 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 54 /min\nperipher tastbar\nRR: 91/066"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 726, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 672, "fields": {"code": 1006, "state_id": 314, "transition": 651, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 81 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 102/072"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 673, "fields": {"code": 1006, "state_id": 354, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 2 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 55 /min\nperipher tastbar\nRR: 81/052"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 726, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 674, "fields": {"code": 1006, "state_id": 714, "transition": 651, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 102/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 739, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 675, "fields": {"code": 1006, "state_id": 273, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 51 /min\nperipher tastbar\nRR: 85/062"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 676, "fields": {"code": 1006, "state_id": 313, "transition": 656, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 80 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 96/068"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 677, "fields": {"code": 1006, "state_id": 353, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 52 /min\nperipher tastbar\nRR: 75/048"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 678, "fields": {"code": 1006, "state_id": 713, "transition": 656, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 88 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 96/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 739, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 679, "fields": {"code": 1006, "state_id": 272, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 2 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 54 /min\nperipher tastbar\nRR: 90/065"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 726, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 680, "fields": {"code": 1006, "state_id": 312, "transition": 661, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 81 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 101/071"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 681, "fields": {"code": 1006, "state_id": 352, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 2 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 55 /min\nperipher tastbar\nRR: 80/051"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 726, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 682, "fields": {"code": 1006, "state_id": 712, "transition": 661, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 85 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 101/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 739, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 683, "fields": {"code": 1006, "state_id": 271, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 51 /min\nperipher tastbar\nRR: 84/061"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 684, "fields": {"code": 1006, "state_id": 311, "transition": 666, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 80 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 87 /min\nperipher tastbar\nRR: 95/067"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 685, "fields": {"code": 1006, "state_id": 351, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 52 /min\nnur zentral noch tastbar\nRR: 74/047"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 686, "fields": {"code": 1006, "state_id": 711, "transition": 666, "vital_signs": {"Haut": "trocken\nsichtbare Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 80 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 87 /min\nperipher tastbar\nRR: 95/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 739, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 687, "fields": {"code": 1006, "state_id": 551, "transition": 671, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 688, "fields": {"code": 1007, "state_id": 101, "transition": 868, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 137/089"}, "examination_codes": {"BZ": 928, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 689, "fields": {"code": 1007, "state_id": 102, "transition": 844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 104 /min\nnur zentral noch tastbar\nRR: 70/063"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 690, "fields": {"code": 1007, "state_id": 202, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 128/075"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 691, "fields": {"code": 1007, "state_id": 203, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 59 /min\nperipher tastbar\nRR: 125/073"}, "examination_codes": {"BZ": 954, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 692, "fields": {"code": 1007, "state_id": 204, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 127/076"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 693, "fields": {"code": 1007, "state_id": 205, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 59 /min\nperipher tastbar\nRR: 124/074"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 694, "fields": {"code": 1007, "state_id": 206, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 126/077"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 695, "fields": {"code": 1007, "state_id": 207, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 59 /min\nperipher tastbar\nRR: 123/075"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 696, "fields": {"code": 1007, "state_id": 208, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 125/078"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 697, "fields": {"code": 1007, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 59 /min\nperipher tastbar\nRR: 122/076"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 698, "fields": {"code": 1007, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 62 /min\nperipher tastbar\nRR: 110/067"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 699, "fields": {"code": 1007, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 104/075"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 700, "fields": {"code": 1007, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nnur zentral noch tastbar\nRR: 52/051"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 701, "fields": {"code": 1007, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 90/072"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 702, "fields": {"code": 1007, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 78/063"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 703, "fields": {"code": 1007, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nnur zentral noch tastbar\nRR: 72/071"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 704, "fields": {"code": 1007, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 125 /min\nzentral nicht tastbar\nRR: 20/018"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 705, "fields": {"code": 1007, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 47 /min\nperipher kräftig tastbar\nRR: 162/084"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 706, "fields": {"code": 1007, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 110/067"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 707, "fields": {"code": 1007, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 52 /min\nperipher kräftig tastbar\nRR: 144/083"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 708, "fields": {"code": 1007, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 87 /min\nnur zentral noch tastbar\nRR: 52/051"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 709, "fields": {"code": 1007, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 130/080"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 710, "fields": {"code": 1007, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 114 /min\nzentral nicht tastbar\nRR: 38/034"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 711, "fields": {"code": 1007, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 112/079"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 712, "fields": {"code": 1007, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 127 /min\nzentral nicht tastbar\nRR: 20/018"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 713, "fields": {"code": 1007, "state_id": 689, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 162/084"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 714, "fields": {"code": 1007, "state_id": 699, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 110/067"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 715, "fields": {"code": 1007, "state_id": 709, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 66 /min\nperipher kräftig tastbar\nRR: 144/083"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 716, "fields": {"code": 1007, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nnur zentral noch tastbar\nRR: 52/051"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 717, "fields": {"code": 1007, "state_id": 729, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 130/080"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 718, "fields": {"code": 1007, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 141 /min\nzentral nicht tastbar\nRR: 38/034"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 719, "fields": {"code": 1007, "state_id": 749, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 112/079"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 720, "fields": {"code": 1007, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 155 /min\nzentral nicht tastbar\nRR: 20/018"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 721, "fields": {"code": 1007, "state_id": 218, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 113/069"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 722, "fields": {"code": 1007, "state_id": 228, "transition": 676, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 107/077"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 723, "fields": {"code": 1007, "state_id": 238, "transition": 676, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nnur zentral noch tastbar\nRR: 60/054"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 724, "fields": {"code": 1007, "state_id": 248, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 93/074"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 725, "fields": {"code": 1007, "state_id": 258, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 81/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 726, "fields": {"code": 1007, "state_id": 268, "transition": 676, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 75/073"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 727, "fields": {"code": 1007, "state_id": 278, "transition": 676, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 125 /min\nzentral nicht tastbar\nRR: 28/025"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 728, "fields": {"code": 1007, "state_id": 288, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 49 /min\nperipher kräftig tastbar\nRR: 160/085"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 729, "fields": {"code": 1007, "state_id": 298, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 113/069"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 730, "fields": {"code": 1007, "state_id": 308, "transition": 676, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 56 /min\nperipher kräftig tastbar\nRR: 142/084"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 731, "fields": {"code": 1007, "state_id": 318, "transition": 676, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 87 /min\nnur zentral noch tastbar\nRR: 60/054"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 732, "fields": {"code": 1007, "state_id": 328, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher tastbar\nRR: 128/081"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 733, "fields": {"code": 1007, "state_id": 338, "transition": 676, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 115 /min\nzentral nicht tastbar\nRR: 46/041"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 734, "fields": {"code": 1007, "state_id": 348, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 110/080"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 735, "fields": {"code": 1007, "state_id": 358, "transition": 676, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 127 /min\nzentral nicht tastbar\nRR: 28/025"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 736, "fields": {"code": 1007, "state_id": 688, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 160/085"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 737, "fields": {"code": 1007, "state_id": 698, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 113/069"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 738, "fields": {"code": 1007, "state_id": 708, "transition": 676, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 142/084"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 739, "fields": {"code": 1007, "state_id": 718, "transition": 676, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nnur zentral noch tastbar\nRR: 60/054"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 740, "fields": {"code": 1007, "state_id": 728, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 128/081"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 741, "fields": {"code": 1007, "state_id": 738, "transition": 676, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 141 /min\nzentral nicht tastbar\nRR: 46/041"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 742, "fields": {"code": 1007, "state_id": 748, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 110/080"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 743, "fields": {"code": 1007, "state_id": 758, "transition": 676, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 155 /min\nzentral nicht tastbar\nRR: 28/025"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 744, "fields": {"code": 1007, "state_id": 217, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 62 /min\nperipher tastbar\nRR: 111/066"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 745, "fields": {"code": 1007, "state_id": 227, "transition": 700, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 105/074"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 746, "fields": {"code": 1007, "state_id": 237, "transition": 700, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nnur zentral noch tastbar\nRR: 63/059"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 747, "fields": {"code": 1007, "state_id": 247, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 91/071"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 748, "fields": {"code": 1007, "state_id": 257, "transition": 700, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 79/062"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 749, "fields": {"code": 1007, "state_id": 267, "transition": 700, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nnur zentral noch tastbar\nRR: 73/070"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 750, "fields": {"code": 1007, "state_id": 277, "transition": 700, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 117 /min\nzentral nicht tastbar\nRR: 31/028"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 751, "fields": {"code": 1007, "state_id": 287, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 49 /min\nperipher kräftig tastbar\nRR: 153/081"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 752, "fields": {"code": 1007, "state_id": 297, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 111/066"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 753, "fields": {"code": 1007, "state_id": 307, "transition": 700, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 56 /min\nperipher kräftig tastbar\nRR: 135/080"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 754, "fields": {"code": 1007, "state_id": 317, "transition": 700, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 82 /min\nnur zentral noch tastbar\nRR: 63/059"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 755, "fields": {"code": 1007, "state_id": 327, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 756, "fields": {"code": 1007, "state_id": 337, "transition": 700, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 109 /min\nzentral nicht tastbar\nRR: 49/048"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 757, "fields": {"code": 1007, "state_id": 347, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 103/076"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 758, "fields": {"code": 1007, "state_id": 357, "transition": 700, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 31/028"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 759, "fields": {"code": 1007, "state_id": 687, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 153/081"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 760, "fields": {"code": 1007, "state_id": 697, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 111/066"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 761, "fields": {"code": 1007, "state_id": 707, "transition": 700, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 135/080"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 762, "fields": {"code": 1007, "state_id": 717, "transition": 700, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nnur zentral noch tastbar\nRR: 63/059"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 763, "fields": {"code": 1007, "state_id": 727, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 764, "fields": {"code": 1007, "state_id": 737, "transition": 700, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 133 /min\nzentral nicht tastbar\nRR: 49/048"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 765, "fields": {"code": 1007, "state_id": 747, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 103/076"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 766, "fields": {"code": 1007, "state_id": 757, "transition": 700, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 146 /min\nzentral nicht tastbar\nRR: 31/028"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 767, "fields": {"code": 1007, "state_id": 216, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 114/068"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 768, "fields": {"code": 1007, "state_id": 226, "transition": 724, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 108/076"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 769, "fields": {"code": 1007, "state_id": 236, "transition": 724, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nnur zentral noch tastbar\nRR: 71/062"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 770, "fields": {"code": 1007, "state_id": 246, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 94/073"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 771, "fields": {"code": 1007, "state_id": 256, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 82/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 772, "fields": {"code": 1007, "state_id": 266, "transition": 724, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 76/072"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 773, "fields": {"code": 1007, "state_id": 276, "transition": 724, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 117 /min\nzentral nicht tastbar\nRR: 39/035"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 774, "fields": {"code": 1007, "state_id": 286, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 151/082"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 775, "fields": {"code": 1007, "state_id": 296, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 114/068"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 776, "fields": {"code": 1007, "state_id": 306, "transition": 724, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 60 /min\nperipher kräftig tastbar\nRR: 133/081"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 777, "fields": {"code": 1007, "state_id": 316, "transition": 724, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nnur zentral noch tastbar\nRR: 71/062"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 778, "fields": {"code": 1007, "state_id": 326, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 119/078"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 779, "fields": {"code": 1007, "state_id": 336, "transition": 724, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 109 /min\nnur zentral noch tastbar\nRR: 57/051"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 780, "fields": {"code": 1007, "state_id": 346, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 101/077"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 781, "fields": {"code": 1007, "state_id": 356, "transition": 724, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 39/035"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 782, "fields": {"code": 1007, "state_id": 686, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 66 /min\nperipher kräftig tastbar\nRR: 151/082"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 783, "fields": {"code": 1007, "state_id": 696, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 114/068"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 784, "fields": {"code": 1007, "state_id": 706, "transition": 724, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 133/081"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 785, "fields": {"code": 1007, "state_id": 716, "transition": 724, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nnur zentral noch tastbar\nRR: 71/062"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 786, "fields": {"code": 1007, "state_id": 726, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 119/078"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 787, "fields": {"code": 1007, "state_id": 736, "transition": 724, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 133 /min\nnur zentral noch tastbar\nRR: 57/051"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 788, "fields": {"code": 1007, "state_id": 746, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 101/077"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 789, "fields": {"code": 1007, "state_id": 756, "transition": 724, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 147 /min\nzentral nicht tastbar\nRR: 39/035"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 790, "fields": {"code": 1007, "state_id": 215, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 62 /min\nperipher tastbar\nRR: 112/065"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 791, "fields": {"code": 1007, "state_id": 225, "transition": 748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 106/073"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 792, "fields": {"code": 1007, "state_id": 235, "transition": 748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nnur zentral noch tastbar\nRR: 74/060"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 793, "fields": {"code": 1007, "state_id": 245, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 92/070"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 794, "fields": {"code": 1007, "state_id": 255, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 80/061"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 795, "fields": {"code": 1007, "state_id": 265, "transition": 748, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nnur zentral noch tastbar\nRR: 74/069"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 796, "fields": {"code": 1007, "state_id": 275, "transition": 748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 111 /min\nzentral nicht tastbar\nRR: 42/038"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 797, "fields": {"code": 1007, "state_id": 285, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 144/078"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 798, "fields": {"code": 1007, "state_id": 295, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 112/065"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 799, "fields": {"code": 1007, "state_id": 305, "transition": 748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 60 /min\nperipher tastbar\nRR: 126/077"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 800, "fields": {"code": 1007, "state_id": 315, "transition": 748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nnur zentral noch tastbar\nRR: 74/060"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 801, "fields": {"code": 1007, "state_id": 325, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 112/074"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 802, "fields": {"code": 1007, "state_id": 335, "transition": 748, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 103 /min\nnur zentral noch tastbar\nRR: 60/057"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 803, "fields": {"code": 1007, "state_id": 345, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 94/073"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 804, "fields": {"code": 1007, "state_id": 355, "transition": 748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 113 /min\nzentral nicht tastbar\nRR: 42/038"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 805, "fields": {"code": 1007, "state_id": 685, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 66 /min\nperipher kräftig tastbar\nRR: 144/078"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 806, "fields": {"code": 1007, "state_id": 695, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 112/065"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 807, "fields": {"code": 1007, "state_id": 705, "transition": 748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 126/077"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 808, "fields": {"code": 1007, "state_id": 715, "transition": 748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nnur zentral noch tastbar\nRR: 74/060"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 809, "fields": {"code": 1007, "state_id": 725, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 112/074"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 810, "fields": {"code": 1007, "state_id": 735, "transition": 748, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 125 /min\nnur zentral noch tastbar\nRR: 60/057"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 811, "fields": {"code": 1007, "state_id": 745, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 94/073"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 812, "fields": {"code": 1007, "state_id": 755, "transition": 748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 139 /min\nzentral nicht tastbar\nRR: 42/038"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 813, "fields": {"code": 1007, "state_id": 214, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 115/067"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 814, "fields": {"code": 1007, "state_id": 224, "transition": 772, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 109/075"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 815, "fields": {"code": 1007, "state_id": 234, "transition": 772, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 82/063"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 816, "fields": {"code": 1007, "state_id": 244, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 95/072"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 817, "fields": {"code": 1007, "state_id": 254, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 83/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 818, "fields": {"code": 1007, "state_id": 264, "transition": 772, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 77/071"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 819, "fields": {"code": 1007, "state_id": 274, "transition": 772, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 111 /min\nnur zentral noch tastbar\nRR: 50/045"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 820, "fields": {"code": 1007, "state_id": 284, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 142/079"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 821, "fields": {"code": 1007, "state_id": 294, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 115/067"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 822, "fields": {"code": 1007, "state_id": 304, "transition": 772, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 124/078"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 823, "fields": {"code": 1007, "state_id": 314, "transition": 772, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 82/063"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 824, "fields": {"code": 1007, "state_id": 324, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 110/075"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 825, "fields": {"code": 1007, "state_id": 334, "transition": 772, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 103 /min\nnur zentral noch tastbar\nRR: 68/060"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 826, "fields": {"code": 1007, "state_id": 344, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 92/074"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 827, "fields": {"code": 1007, "state_id": 354, "transition": 772, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 113 /min\nnur zentral noch tastbar\nRR: 50/045"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 828, "fields": {"code": 1007, "state_id": 684, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 142/079"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 829, "fields": {"code": 1007, "state_id": 694, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 115/067"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 830, "fields": {"code": 1007, "state_id": 704, "transition": 772, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher tastbar\nRR: 124/078"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 831, "fields": {"code": 1007, "state_id": 714, "transition": 772, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 82/063"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 832, "fields": {"code": 1007, "state_id": 724, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 110/075"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 833, "fields": {"code": 1007, "state_id": 734, "transition": 772, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 125 /min\nnur zentral noch tastbar\nRR: 68/060"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 834, "fields": {"code": 1007, "state_id": 744, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 92/074"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 835, "fields": {"code": 1007, "state_id": 754, "transition": 772, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 139 /min\nnur zentral noch tastbar\nRR: 50/045"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 836, "fields": {"code": 1007, "state_id": 213, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 62 /min\nperipher tastbar\nRR: 113/064"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 837, "fields": {"code": 1007, "state_id": 223, "transition": 796, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 107/072"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 838, "fields": {"code": 1007, "state_id": 233, "transition": 796, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 73 /min\nperipher tastbar\nRR: 85/061"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 839, "fields": {"code": 1007, "state_id": 243, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 93/069"}, "examination_codes": {"BZ": 954, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 840, "fields": {"code": 1007, "state_id": 253, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 81/060"}, "examination_codes": {"BZ": 954, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 841, "fields": {"code": 1007, "state_id": 263, "transition": 796, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 75/068"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 842, "fields": {"code": 1007, "state_id": 273, "transition": 796, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 105 /min\nnur zentral noch tastbar\nRR: 53/048"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 843, "fields": {"code": 1007, "state_id": 283, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 135/075"}, "examination_codes": {"BZ": 954, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 844, "fields": {"code": 1007, "state_id": 293, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 113/064"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 845, "fields": {"code": 1007, "state_id": 303, "transition": 796, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 117/074"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 846, "fields": {"code": 1007, "state_id": 313, "transition": 796, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 85/061"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 847, "fields": {"code": 1007, "state_id": 323, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 103/071"}, "examination_codes": {"BZ": 954, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 848, "fields": {"code": 1007, "state_id": 333, "transition": 796, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nnur zentral noch tastbar\nRR: 71/058"}, "examination_codes": {"BZ": 954, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 849, "fields": {"code": 1007, "state_id": 343, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 85/070"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 850, "fields": {"code": 1007, "state_id": 353, "transition": 796, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 107 /min\nnur zentral noch tastbar\nRR: 53/048"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 851, "fields": {"code": 1007, "state_id": 683, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 135/075"}, "examination_codes": {"BZ": 954, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 852, "fields": {"code": 1007, "state_id": 693, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 113/064"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 853, "fields": {"code": 1007, "state_id": 703, "transition": 796, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher tastbar\nRR: 117/074"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 854, "fields": {"code": 1007, "state_id": 713, "transition": 796, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 85/061"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 855, "fields": {"code": 1007, "state_id": 723, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 103/071"}, "examination_codes": {"BZ": 954, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 856, "fields": {"code": 1007, "state_id": 733, "transition": 796, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 117 /min\nnur zentral noch tastbar\nRR: 71/058"}, "examination_codes": {"BZ": 954, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 857, "fields": {"code": 1007, "state_id": 743, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 85/070"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 858, "fields": {"code": 1007, "state_id": 753, "transition": 796, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 131 /min\nnur zentral noch tastbar\nRR: 53/048"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 859, "fields": {"code": 1007, "state_id": 212, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 116/066"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 860, "fields": {"code": 1007, "state_id": 222, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 110/074"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 861, "fields": {"code": 1007, "state_id": 232, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 73 /min\nperipher tastbar\nRR: 93/064"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 862, "fields": {"code": 1007, "state_id": 242, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 96/071"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 863, "fields": {"code": 1007, "state_id": 252, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 84/062"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 864, "fields": {"code": 1007, "state_id": 262, "transition": 820, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 78/070"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 865, "fields": {"code": 1007, "state_id": 272, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 105 /min\nnur zentral noch tastbar\nRR: 61/060"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 866, "fields": {"code": 1007, "state_id": 282, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 133/076"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 867, "fields": {"code": 1007, "state_id": 292, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 116/066"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 868, "fields": {"code": 1007, "state_id": 302, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 115/075"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 869, "fields": {"code": 1007, "state_id": 312, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 93/064"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 870, "fields": {"code": 1007, "state_id": 322, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher tastbar\nRR: 101/072"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 871, "fields": {"code": 1007, "state_id": 332, "transition": 820, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 79/061"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 872, "fields": {"code": 1007, "state_id": 342, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 83/071"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 873, "fields": {"code": 1007, "state_id": 352, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 107 /min\nnur zentral noch tastbar\nRR: 61/060"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 874, "fields": {"code": 1007, "state_id": 682, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 133/076"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 875, "fields": {"code": 1007, "state_id": 692, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 116/066"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 876, "fields": {"code": 1007, "state_id": 702, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 82 /min\nperipher tastbar\nRR: 115/075"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 877, "fields": {"code": 1007, "state_id": 712, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 93/064"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 878, "fields": {"code": 1007, "state_id": 722, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 101/072"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 879, "fields": {"code": 1007, "state_id": 732, "transition": 820, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 117 /min\nperipher tastbar\nRR: 79/061"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 880, "fields": {"code": 1007, "state_id": 742, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 117 /min\nperipher tastbar\nRR: 83/071"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 881, "fields": {"code": 1007, "state_id": 752, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 131 /min\nnur zentral noch tastbar\nRR: 61/060"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 882, "fields": {"code": 1007, "state_id": 551, "transition": 869, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 137/089"}, "examination_codes": {"BZ": 928, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 883, "fields": {"code": 1007, "state_id": 552, "transition": 844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 130 /min\nnur zentral noch tastbar\nRR: 70/063"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 884, "fields": {"code": 1008, "state_id": 101, "transition": 1018, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 143/076"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 207, "Rö-Thorax": 389, "Ultraschall": 624, "Rö-Extremitäten": 607}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 885, "fields": {"code": 1008, "state_id": 102, "transition": 1017, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 145/079"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 207, "Rö-Thorax": 389, "Ultraschall": 624, "Rö-Extremitäten": 607}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 886, "fields": {"code": 1008, "state_id": 103, "transition": 1016, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 142/077"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 207, "Rö-Thorax": 389, "Ultraschall": 624, "Rö-Extremitäten": 607}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 887, "fields": {"code": 1008, "state_id": 104, "transition": 992, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 75/068"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 207, "Rö-Thorax": 389, "Ultraschall": 624, "Rö-Extremitäten": 607}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 888, "fields": {"code": 1008, "state_id": 204, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 133/086"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 889, "fields": {"code": 1008, "state_id": 205, "transition": 944, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 130/084"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 890, "fields": {"code": 1008, "state_id": 206, "transition": 943, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 132/087"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 891, "fields": {"code": 1008, "state_id": 500, "transition": 870, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfrequenz: 0 /min\nSpO2: n.m. %\nAtemstillstand", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 892, "fields": {"code": 1008, "state_id": 502, "transition": 870, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 893, "fields": {"code": 1008, "state_id": 207, "transition": 895, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 59 /min\nperipher tastbar\nRR: 129/085"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 894, "fields": {"code": 1008, "state_id": 208, "transition": 871, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 131/088"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 895, "fields": {"code": 1008, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 59 /min\nperipher tastbar\nRR: 128/086"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 896, "fields": {"code": 1008, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 85/076"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 897, "fields": {"code": 1008, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 110/085"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 898, "fields": {"code": 1008, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 107 /min\nzentral nicht tastbar\nRR: 37/033"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 899, "fields": {"code": 1008, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 96/082"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 900, "fields": {"code": 1008, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 114 /min\nnur zentral noch tastbar\nRR: 53/052"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 901, "fields": {"code": 1008, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 78/073"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 902, "fields": {"code": 1008, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 153 /min\nzentral nicht tastbar\nRR: 5/005"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 714, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 903, "fields": {"code": 1008, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 49 /min\nperipher kräftig tastbar\nRR: 158/092"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 904, "fields": {"code": 1008, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 85/076"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 905, "fields": {"code": 1008, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 56 /min\nperipher kräftig tastbar\nRR: 140/091"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 906, "fields": {"code": 1008, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 110 /min\nzentral nicht tastbar\nRR: 37/033"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 907, "fields": {"code": 1008, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher tastbar\nRR: 126/088"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 908, "fields": {"code": 1008, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 142 /min\nzentral nicht tastbar\nRR: 23/021"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 909, "fields": {"code": 1008, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 108/087"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 910, "fields": {"code": 1008, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 155 /min\nzentral nicht tastbar\nRR: 5/005"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 714, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 911, "fields": {"code": 1008, "state_id": 689, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 158/092"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 912, "fields": {"code": 1008, "state_id": 699, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 85/076"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 913, "fields": {"code": 1008, "state_id": 709, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 140/091"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 914, "fields": {"code": 1008, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 136 /min\nzentral nicht tastbar\nRR: 37/033"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 915, "fields": {"code": 1008, "state_id": 729, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 126/088"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 916, "fields": {"code": 1008, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 171 /min\nzentral nicht tastbar\nRR: 23/021"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 917, "fields": {"code": 1008, "state_id": 749, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 108/087"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 918, "fields": {"code": 1008, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 190 /min\nzentral nicht tastbar\nRR: 5/005"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 714, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 919, "fields": {"code": 1008, "state_id": 218, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 88/078"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 920, "fields": {"code": 1008, "state_id": 228, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 113/087"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 921, "fields": {"code": 1008, "state_id": 238, "transition": 871, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 107 /min\nzentral nicht tastbar\nRR: 45/041"}, "examination_codes": {"BZ": 906, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 922, "fields": {"code": 1008, "state_id": 248, "transition": 871, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 99/084"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 923, "fields": {"code": 1008, "state_id": 258, "transition": 871, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 118 /min\nnur zentral noch tastbar\nRR: 56/054"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 924, "fields": {"code": 1008, "state_id": 268, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 81/075"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 925, "fields": {"code": 1008, "state_id": 278, "transition": 871, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 153 /min\nzentral nicht tastbar\nRR: 13/012"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 714, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 926, "fields": {"code": 1008, "state_id": 288, "transition": 871, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 156/093"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 927, "fields": {"code": 1008, "state_id": 298, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 88/078"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 928, "fields": {"code": 1008, "state_id": 308, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 60 /min\nperipher kräftig tastbar\nRR: 138/092"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 929, "fields": {"code": 1008, "state_id": 318, "transition": 871, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 110 /min\nzentral nicht tastbar\nRR: 45/041"}, "examination_codes": {"BZ": 906, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 930, "fields": {"code": 1008, "state_id": 328, "transition": 871, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 124/089"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 931, "fields": {"code": 1008, "state_id": 338, "transition": 871, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 142 /min\nzentral nicht tastbar\nRR: 31/028"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 932, "fields": {"code": 1008, "state_id": 348, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 106/088"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 933, "fields": {"code": 1008, "state_id": 358, "transition": 871, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 155 /min\nzentral nicht tastbar\nRR: 13/012"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 714, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 934, "fields": {"code": 1008, "state_id": 688, "transition": 871, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 66 /min\nperipher kräftig tastbar\nRR: 156/093"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 935, "fields": {"code": 1008, "state_id": 698, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 88/078"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 936, "fields": {"code": 1008, "state_id": 708, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 138/092"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 937, "fields": {"code": 1008, "state_id": 718, "transition": 871, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 136 /min\nzentral nicht tastbar\nRR: 45/041"}, "examination_codes": {"BZ": 906, "Hb": 407, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 938, "fields": {"code": 1008, "state_id": 728, "transition": 871, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 124/089"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 939, "fields": {"code": 1008, "state_id": 738, "transition": 871, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 171 /min\nzentral nicht tastbar\nRR: 31/028"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 940, "fields": {"code": 1008, "state_id": 748, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 106/088"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 941, "fields": {"code": 1008, "state_id": 758, "transition": 871, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 190 /min\nzentral nicht tastbar\nRR: 13/012"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 714, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 942, "fields": {"code": 1008, "state_id": 217, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 86/075"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 943, "fields": {"code": 1008, "state_id": 227, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 111/084"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 944, "fields": {"code": 1008, "state_id": 237, "transition": 895, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 101 /min\nzentral nicht tastbar\nRR: 48/043"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 945, "fields": {"code": 1008, "state_id": 247, "transition": 895, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 97/081"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 946, "fields": {"code": 1008, "state_id": 257, "transition": 895, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 115 /min\nnur zentral noch tastbar\nRR: 54/051"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 947, "fields": {"code": 1008, "state_id": 267, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 79/072"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 948, "fields": {"code": 1008, "state_id": 277, "transition": 895, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 145 /min\nzentral nicht tastbar\nRR: 16/014"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 949, "fields": {"code": 1008, "state_id": 287, "transition": 895, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 149/089"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 950, "fields": {"code": 1008, "state_id": 297, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 82 /min\nperipher tastbar\nRR: 86/075"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 951, "fields": {"code": 1008, "state_id": 307, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 60 /min\nperipher kräftig tastbar\nRR: 131/088"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 952, "fields": {"code": 1008, "state_id": 317, "transition": 895, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 104 /min\nzentral nicht tastbar\nRR: 48/043"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 953, "fields": {"code": 1008, "state_id": 327, "transition": 895, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 117/085"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 954, "fields": {"code": 1008, "state_id": 337, "transition": 895, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 134 /min\nzentral nicht tastbar\nRR: 34/031"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 955, "fields": {"code": 1008, "state_id": 347, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 99/084"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 956, "fields": {"code": 1008, "state_id": 357, "transition": 895, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 146 /min\nzentral nicht tastbar\nRR: 16/014"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 957, "fields": {"code": 1008, "state_id": 687, "transition": 895, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 66 /min\nperipher kräftig tastbar\nRR: 149/089"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 958, "fields": {"code": 1008, "state_id": 697, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 86/075"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 959, "fields": {"code": 1008, "state_id": 707, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 131/088"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 960, "fields": {"code": 1008, "state_id": 717, "transition": 895, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 128 /min\nzentral nicht tastbar\nRR: 48/043"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 961, "fields": {"code": 1008, "state_id": 727, "transition": 895, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 117/085"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 962, "fields": {"code": 1008, "state_id": 737, "transition": 895, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 161 /min\nzentral nicht tastbar\nRR: 34/031"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 963, "fields": {"code": 1008, "state_id": 747, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 99/084"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 964, "fields": {"code": 1008, "state_id": 757, "transition": 895, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 179 /min\nzentral nicht tastbar\nRR: 16/014"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 965, "fields": {"code": 1008, "state_id": 216, "transition": 943, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 89/077"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 966, "fields": {"code": 1008, "state_id": 226, "transition": 943, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 114/086"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 967, "fields": {"code": 1008, "state_id": 236, "transition": 943, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 101 /min\nnur zentral noch tastbar\nRR: 56/055"}, "examination_codes": {"BZ": 906, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 968, "fields": {"code": 1008, "state_id": 246, "transition": 943, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 100/083"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 969, "fields": {"code": 1008, "state_id": 256, "transition": 943, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 119 /min\nnur zentral noch tastbar\nRR: 57/053"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 970, "fields": {"code": 1008, "state_id": 266, "transition": 943, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 82/074"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 971, "fields": {"code": 1008, "state_id": 276, "transition": 943, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 145 /min\nzentral nicht tastbar\nRR: 24/022"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 972, "fields": {"code": 1008, "state_id": 286, "transition": 943, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 147/090"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 973, "fields": {"code": 1008, "state_id": 296, "transition": 943, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 89/077"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 974, "fields": {"code": 1008, "state_id": 306, "transition": 943, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 129/089"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 975, "fields": {"code": 1008, "state_id": 316, "transition": 943, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 104 /min\nnur zentral noch tastbar\nRR: 56/055"}, "examination_codes": {"BZ": 906, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 976, "fields": {"code": 1008, "state_id": 326, "transition": 943, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 115/086"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 977, "fields": {"code": 1008, "state_id": 336, "transition": 943, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 134 /min\nzentral nicht tastbar\nRR: 42/038"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 978, "fields": {"code": 1008, "state_id": 346, "transition": 943, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 97/085"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 979, "fields": {"code": 1008, "state_id": 356, "transition": 943, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 147 /min\nzentral nicht tastbar\nRR: 24/022"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 980, "fields": {"code": 1008, "state_id": 686, "transition": 870, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 147/090"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 981, "fields": {"code": 1008, "state_id": 696, "transition": 870, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 89/077"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 982, "fields": {"code": 1008, "state_id": 706, "transition": 870, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher tastbar\nRR: 129/089"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 983, "fields": {"code": 1008, "state_id": 716, "transition": 870, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 128 /min\nnur zentral noch tastbar\nRR: 56/055"}, "examination_codes": {"BZ": 906, "Hb": 407, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 984, "fields": {"code": 1008, "state_id": 726, "transition": 870, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 115/086"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 985, "fields": {"code": 1008, "state_id": 736, "transition": 870, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 161 /min\nzentral nicht tastbar\nRR: 42/038"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 986, "fields": {"code": 1008, "state_id": 746, "transition": 870, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 97/085"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 987, "fields": {"code": 1008, "state_id": 756, "transition": 870, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 180 /min\nzentral nicht tastbar\nRR: 24/022"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 988, "fields": {"code": 1008, "state_id": 215, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 87/074"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 989, "fields": {"code": 1008, "state_id": 225, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 112/083"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 990, "fields": {"code": 1008, "state_id": 235, "transition": 944, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 95 /min\nnur zentral noch tastbar\nRR: 59/053"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 991, "fields": {"code": 1008, "state_id": 245, "transition": 944, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 98/080"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 992, "fields": {"code": 1008, "state_id": 255, "transition": 944, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 116 /min\nnur zentral noch tastbar\nRR: 55/050"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 993, "fields": {"code": 1008, "state_id": 265, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 80/079"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 994, "fields": {"code": 1008, "state_id": 275, "transition": 944, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 137 /min\nzentral nicht tastbar\nRR: 27/024"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 995, "fields": {"code": 1008, "state_id": 285, "transition": 944, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 140/086"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 996, "fields": {"code": 1008, "state_id": 295, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 87/074"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 997, "fields": {"code": 1008, "state_id": 305, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 122/085"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 998, "fields": {"code": 1008, "state_id": 315, "transition": 944, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 98 /min\nnur zentral noch tastbar\nRR: 59/053"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 999, "fields": {"code": 1008, "state_id": 325, "transition": 944, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 108/082"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1000, "fields": {"code": 1008, "state_id": 335, "transition": 944, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 126 /min\nzentral nicht tastbar\nRR: 45/041"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1001, "fields": {"code": 1008, "state_id": 345, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 90/081"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1002, "fields": {"code": 1008, "state_id": 355, "transition": 944, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 139 /min\nzentral nicht tastbar\nRR: 27/024"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1003, "fields": {"code": 1008, "state_id": 685, "transition": 944, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 140/086"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1004, "fields": {"code": 1008, "state_id": 695, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 87/074"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1005, "fields": {"code": 1008, "state_id": 705, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher tastbar\nRR: 122/085"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1006, "fields": {"code": 1008, "state_id": 715, "transition": 944, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 120 /min\nnur zentral noch tastbar\nRR: 59/053"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1007, "fields": {"code": 1008, "state_id": 725, "transition": 944, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 108/082"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1008, "fields": {"code": 1008, "state_id": 735, "transition": 944, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 151 /min\nzentral nicht tastbar\nRR: 45/041"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1009, "fields": {"code": 1008, "state_id": 745, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 90/081"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1010, "fields": {"code": 1008, "state_id": 755, "transition": 944, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 170 /min\nzentral nicht tastbar\nRR: 27/024"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1011, "fields": {"code": 1008, "state_id": 214, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1012, "fields": {"code": 1008, "state_id": 224, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 115/085"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1013, "fields": {"code": 1008, "state_id": 234, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 73 /min\nperipher tastbar\nRR: 98/075"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1014, "fields": {"code": 1008, "state_id": 244, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 101/082"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1015, "fields": {"code": 1008, "state_id": 254, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 89/073"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1016, "fields": {"code": 1008, "state_id": 264, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 83/081"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1017, "fields": {"code": 1008, "state_id": 274, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 105 /min\nnur zentral noch tastbar\nRR: 66/063"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1018, "fields": {"code": 1008, "state_id": 284, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 138/087"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1019, "fields": {"code": 1008, "state_id": 294, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1020, "fields": {"code": 1008, "state_id": 304, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 120/086"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1021, "fields": {"code": 1008, "state_id": 314, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 98/075"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1022, "fields": {"code": 1008, "state_id": 324, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher tastbar\nRR: 106/083"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1023, "fields": {"code": 1008, "state_id": 334, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 84/072"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1024, "fields": {"code": 1008, "state_id": 344, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 88/082"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1025, "fields": {"code": 1008, "state_id": 354, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 107 /min\nnur zentral noch tastbar\nRR: 66/063"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1026, "fields": {"code": 1008, "state_id": 684, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 138/087"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1027, "fields": {"code": 1008, "state_id": 694, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1028, "fields": {"code": 1008, "state_id": 704, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 82 /min\nperipher tastbar\nRR: 120/086"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1029, "fields": {"code": 1008, "state_id": 714, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 98/075"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1030, "fields": {"code": 1008, "state_id": 724, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 106/083"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1031, "fields": {"code": 1008, "state_id": 734, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 84/072"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1032, "fields": {"code": 1008, "state_id": 744, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 88/082"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1033, "fields": {"code": 1008, "state_id": 754, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 131 /min\nnur zentral noch tastbar\nRR: 66/063"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1034, "fields": {"code": 1008, "state_id": 551, "transition": 1021, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 143/076"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 207, "Rö-Thorax": 389, "Ultraschall": 624, "Rö-Extremitäten": 607}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1035, "fields": {"code": 1008, "state_id": 552, "transition": 1020, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 145/079"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 207, "Rö-Thorax": 389, "Ultraschall": 624, "Rö-Extremitäten": 607}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1036, "fields": {"code": 1008, "state_id": 553, "transition": 1019, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 142/077"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 207, "Rö-Thorax": 389, "Ultraschall": 624, "Rö-Extremitäten": 607}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1037, "fields": {"code": 1008, "state_id": 554, "transition": 992, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 130 /min\nperipher tastbar\nRR: 75/068"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 207, "Rö-Thorax": 389, "Ultraschall": 624, "Rö-Extremitäten": 607}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1038, "fields": {"code": 1009, "state_id": 101, "transition": 1077, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1039, "fields": {"code": 1009, "state_id": 102, "transition": 1076, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1040, "fields": {"code": 1009, "state_id": 103, "transition": 1075, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1041, "fields": {"code": 1009, "state_id": 104, "transition": 1074, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1042, "fields": {"code": 1009, "state_id": 105, "transition": 1064, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 102 /min\nnur zentral noch tastbar\nRR: 55/042"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 725, "ZVD": 817, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1043, "fields": {"code": 1009, "state_id": 215, "transition": 1054, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 113/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1044, "fields": {"code": 1009, "state_id": 216, "transition": 1044, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1045, "fields": {"code": 1009, "state_id": 217, "transition": 1034, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 118/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1046, "fields": {"code": 1009, "state_id": 218, "transition": 1022, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 126/084"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1047, "fields": {"code": 1009, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 123/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1048, "fields": {"code": 1009, "state_id": 239, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 9 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 2 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1049, "fields": {"code": 1009, "state_id": 500, "transition": 1023, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfrequenz: 0 /min\nSpO2: n.m. %\nAtemstillstand", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 1050, "fields": {"code": 1009, "state_id": 502, "transition": 1023, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 1051, "fields": {"code": 1009, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 123/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1052, "fields": {"code": 1009, "state_id": 279, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 11 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 3 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1053, "fields": {"code": 1009, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 123/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1054, "fields": {"code": 1009, "state_id": 319, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 11 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 2 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1055, "fields": {"code": 1009, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 123/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1056, "fields": {"code": 1009, "state_id": 359, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 13 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 3 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1057, "fields": {"code": 1009, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 123/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1058, "fields": {"code": 1009, "state_id": 759, "transition": 1023, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 2 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1059, "fields": {"code": 1009, "state_id": 238, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 11 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 5 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1060, "fields": {"code": 1009, "state_id": 258, "transition": 1022, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 126/084"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1061, "fields": {"code": 1009, "state_id": 278, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 13 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 6 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1062, "fields": {"code": 1009, "state_id": 298, "transition": 1022, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 126/084"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1063, "fields": {"code": 1009, "state_id": 318, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 13 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 5 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1064, "fields": {"code": 1009, "state_id": 338, "transition": 1022, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 126/084"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1065, "fields": {"code": 1009, "state_id": 358, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 6 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1066, "fields": {"code": 1009, "state_id": 738, "transition": 1022, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 126/084"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1067, "fields": {"code": 1009, "state_id": 758, "transition": 1023, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 5 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1068, "fields": {"code": 1009, "state_id": 237, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 9 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 10 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1069, "fields": {"code": 1009, "state_id": 257, "transition": 1034, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 118/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1070, "fields": {"code": 1009, "state_id": 277, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 11 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 12 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1071, "fields": {"code": 1009, "state_id": 297, "transition": 1034, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 118/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1072, "fields": {"code": 1009, "state_id": 317, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 11 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 10 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1073, "fields": {"code": 1009, "state_id": 337, "transition": 1034, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 118/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1074, "fields": {"code": 1009, "state_id": 357, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 13 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 12 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1075, "fields": {"code": 1009, "state_id": 737, "transition": 1034, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 118/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1076, "fields": {"code": 1009, "state_id": 757, "transition": 1023, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 10 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1077, "fields": {"code": 1009, "state_id": 236, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 11 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 23 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 714, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1078, "fields": {"code": 1009, "state_id": 256, "transition": 1044, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1079, "fields": {"code": 1009, "state_id": 276, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 13 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 26 /min\nzentral nicht tastbar\nRR: 1/001"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 714, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1080, "fields": {"code": 1009, "state_id": 296, "transition": 1044, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1081, "fields": {"code": 1009, "state_id": 316, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 13 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 23 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 714, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1082, "fields": {"code": 1009, "state_id": 336, "transition": 1044, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1083, "fields": {"code": 1009, "state_id": 356, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 26 /min\nzentral nicht tastbar\nRR: 3/003"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 714, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1084, "fields": {"code": 1009, "state_id": 736, "transition": 1044, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1085, "fields": {"code": 1009, "state_id": 756, "transition": 1023, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 23 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 714, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1086, "fields": {"code": 1009, "state_id": 235, "transition": 1054, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 9 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 45 /min\nzentral nicht tastbar\nRR: 19/018"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 725, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1087, "fields": {"code": 1009, "state_id": 255, "transition": 1054, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 113/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1088, "fields": {"code": 1009, "state_id": 275, "transition": 1054, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 11 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 50 /min\nzentral nicht tastbar\nRR: 26/024"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 725, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1089, "fields": {"code": 1009, "state_id": 295, "transition": 1054, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 113/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1090, "fields": {"code": 1009, "state_id": 315, "transition": 1054, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 11 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 45 /min\nzentral nicht tastbar\nRR: 21/019"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 725, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1091, "fields": {"code": 1009, "state_id": 335, "transition": 1054, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 113/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1092, "fields": {"code": 1009, "state_id": 355, "transition": 1054, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 13 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 50 /min\nzentral nicht tastbar\nRR: 28/025"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 725, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1093, "fields": {"code": 1009, "state_id": 735, "transition": 1054, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 113/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1094, "fields": {"code": 1009, "state_id": 755, "transition": 1054, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 45 /min\nzentral nicht tastbar\nRR: 19/018"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 725, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1095, "fields": {"code": 1009, "state_id": 551, "transition": 1081, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1096, "fields": {"code": 1009, "state_id": 552, "transition": 1080, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1097, "fields": {"code": 1009, "state_id": 553, "transition": 1079, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1098, "fields": {"code": 1009, "state_id": 554, "transition": 1078, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 127/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1099, "fields": {"code": 1009, "state_id": 555, "transition": 1064, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 102 /min\nnur zentral noch tastbar\nRR: 55/042"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 725, "ZVD": 817, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1100, "fields": {"code": 1010, "state_id": 101, "transition": 1154, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 143/076"}, "examination_codes": {"BZ": 928, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1101, "fields": {"code": 1010, "state_id": 102, "transition": 1153, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 145/079"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1102, "fields": {"code": 1010, "state_id": 103, "transition": 1152, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 142/077"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1103, "fields": {"code": 1010, "state_id": 104, "transition": 1151, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 144/080"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1104, "fields": {"code": 1010, "state_id": 105, "transition": 1150, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 141/078"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1105, "fields": {"code": 1010, "state_id": 106, "transition": 1149, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 143/081"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1106, "fields": {"code": 1010, "state_id": 107, "transition": 1148, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 140/079"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1107, "fields": {"code": 1010, "state_id": 108, "transition": 1116, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 118 /min\nnur zentral noch tastbar\nRR: 57/032"}, "examination_codes": {"BZ": 920, "Hb": 406, "EKG": 722, "ZVD": 831, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 105, "Rö-Thorax": 312, "Ultraschall": 591, "Rö-Extremitäten": 619}, "special_events": "Pat. klagt über starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1108, "fields": {"code": 1010, "state_id": 358, "transition": 1115, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 121 /min\nzentral nicht tastbar\nRR: 47/032"}, "examination_codes": {"BZ": 906, "Hb": 406, "EKG": 722, "ZVD": 831, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1109, "fields": {"code": 1010, "state_id": 500, "transition": 1082, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfrequenz: 0 /min\nSpO2: n.m. %\nAtemstillstand", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 1110, "fields": {"code": 1010, "state_id": 502, "transition": 1082, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 1111, "fields": {"code": 1010, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 121 /min\nzentral nicht tastbar\nRR: 38/026"}, "examination_codes": {"BZ": 920, "Hb": 406, "EKG": 722, "ZVD": 831, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1112, "fields": {"code": 1010, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 113 /min\nzentral nicht tastbar\nRR: 46/027"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 722, "ZVD": 814, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1113, "fields": {"code": 1010, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 108 /min\nnur zentral noch tastbar\nRR: 56/027"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 823, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1114, "fields": {"code": 1010, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 84/044"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 838, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1115, "fields": {"code": 1010, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 102 /min\nnur zentral noch tastbar\nRR: 56/029"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 838, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1116, "fields": {"code": 1010, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 76/038"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 822, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1117, "fields": {"code": 1010, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 87 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 805, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1118, "fields": {"code": 1010, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 837, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1119, "fields": {"code": 1010, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 80 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 429, "EKG": 722, "ZVD": 837, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1120, "fields": {"code": 1010, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 810, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1121, "fields": {"code": 1010, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 112/047"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 821, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1122, "fields": {"code": 1010, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 65 /min\nperipher tastbar\nRR: 120/048"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 813, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1123, "fields": {"code": 1010, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 104/041"}, "examination_codes": {"BZ": 920, "Hb": 425, "EKG": 722, "ZVD": 813, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1124, "fields": {"code": 1010, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 120/050"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 804, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1125, "fields": {"code": 1010, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 130/050"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 836, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1126, "fields": {"code": 1010, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 138/051"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1127, "fields": {"code": 1010, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 150 /min\nzentral nicht tastbar\nRR: 38/026"}, "examination_codes": {"BZ": 920, "Hb": 406, "EKG": 722, "ZVD": 838, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1128, "fields": {"code": 1010, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 145 /min\nzentral nicht tastbar\nRR: 46/027"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 722, "ZVD": 822, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1129, "fields": {"code": 1010, "state_id": 749, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 137 /min\nnur zentral noch tastbar\nRR: 56/027"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 805, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1130, "fields": {"code": 1010, "state_id": 729, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 84/044"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 837, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1131, "fields": {"code": 1010, "state_id": 679, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 130 /min\nnur zentral noch tastbar\nRR: 56/029"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 837, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1132, "fields": {"code": 1010, "state_id": 659, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 76/038"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 810, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1133, "fields": {"code": 1010, "state_id": 669, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 821, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1134, "fields": {"code": 1010, "state_id": 649, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 813, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1135, "fields": {"code": 1010, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 429, "EKG": 722, "ZVD": 813, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1136, "fields": {"code": 1010, "state_id": 699, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 804, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1137, "fields": {"code": 1010, "state_id": 709, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 112/047"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 836, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1138, "fields": {"code": 1010, "state_id": 689, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 120/048"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1139, "fields": {"code": 1010, "state_id": 639, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 104/041"}, "examination_codes": {"BZ": 920, "Hb": 425, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1140, "fields": {"code": 1010, "state_id": 619, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 120/050"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1141, "fields": {"code": 1010, "state_id": 629, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 130/050"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1142, "fields": {"code": 1010, "state_id": 609, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 138/051"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1143, "fields": {"code": 1010, "state_id": 338, "transition": 1115, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 114 /min\nnur zentral noch tastbar\nRR: 55/033"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 814, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1144, "fields": {"code": 1010, "state_id": 348, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 108 /min\nnur zentral noch tastbar\nRR: 65/033"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 823, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1145, "fields": {"code": 1010, "state_id": 328, "transition": 1115, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 83/042"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 838, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Pat. klagt über leichte Atemnot", "is_dead": false}}, {"model": "template.patientstate", "pk": 1146, "fields": {"code": 1010, "state_id": 278, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 102 /min\nnur zentral noch tastbar\nRR: 65/035"}, "examination_codes": {"BZ": 906, "Hb": 407, "EKG": 722, "ZVD": 838, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1147, "fields": {"code": 1010, "state_id": 258, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 79/040"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 822, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1148, "fields": {"code": 1010, "state_id": 268, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 805, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1149, "fields": {"code": 1010, "state_id": 248, "transition": 1115, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 837, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1150, "fields": {"code": 1010, "state_id": 318, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 82 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 429, "EKG": 722, "ZVD": 837, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1151, "fields": {"code": 1010, "state_id": 298, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 78 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 810, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1152, "fields": {"code": 1010, "state_id": 308, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 111/045"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 821, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Pat. klagt über leichte Atemnot", "is_dead": false}}, {"model": "template.patientstate", "pk": 1153, "fields": {"code": 1010, "state_id": 288, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 119/046"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 813, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Pat. klagt über leichte Atemnot", "is_dead": false}}, {"model": "template.patientstate", "pk": 1154, "fields": {"code": 1010, "state_id": 238, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 70 /min\nperipher tastbar\nRR: 107/043"}, "examination_codes": {"BZ": 906, "Hb": 425, "EKG": 722, "ZVD": 813, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1155, "fields": {"code": 1010, "state_id": 218, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 65 /min\nperipher tastbar\nRR: 119/048"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 804, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Pat. klagt über leichte Atemnot", "is_dead": false}}, {"model": "template.patientstate", "pk": 1156, "fields": {"code": 1010, "state_id": 228, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 129/048"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 836, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Pat. klagt über leichte Atemnot", "is_dead": false}}, {"model": "template.patientstate", "pk": 1157, "fields": {"code": 1010, "state_id": 208, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 137/049"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Pat. klagt über leichte Atemnot", "is_dead": false}}, {"model": "template.patientstate", "pk": 1158, "fields": {"code": 1010, "state_id": 758, "transition": 1082, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 150 /min\nzentral nicht tastbar\nRR: 47/032"}, "examination_codes": {"BZ": 906, "Hb": 406, "EKG": 722, "ZVD": 838, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1159, "fields": {"code": 1010, "state_id": 738, "transition": 1082, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 145 /min\nnur zentral noch tastbar\nRR: 55/033"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 822, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1160, "fields": {"code": 1010, "state_id": 748, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 137 /min\nnur zentral noch tastbar\nRR: 65/033"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 805, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1161, "fields": {"code": 1010, "state_id": 728, "transition": 1082, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 124 /min\nperipher tastbar\nRR: 83/042"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 837, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1162, "fields": {"code": 1010, "state_id": 678, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 130 /min\nnur zentral noch tastbar\nRR: 65/035"}, "examination_codes": {"BZ": 906, "Hb": 407, "EKG": 722, "ZVD": 837, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1163, "fields": {"code": 1010, "state_id": 658, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 79/040"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 810, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1164, "fields": {"code": 1010, "state_id": 668, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 821, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1165, "fields": {"code": 1010, "state_id": 648, "transition": 1082, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 813, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1166, "fields": {"code": 1010, "state_id": 718, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 429, "EKG": 722, "ZVD": 813, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1167, "fields": {"code": 1010, "state_id": 698, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 804, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1168, "fields": {"code": 1010, "state_id": 708, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 111/045"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 836, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1169, "fields": {"code": 1010, "state_id": 688, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 87 /min\nperipher tastbar\nRR: 119/046"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1170, "fields": {"code": 1010, "state_id": 638, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 107/043"}, "examination_codes": {"BZ": 906, "Hb": 425, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1171, "fields": {"code": 1010, "state_id": 618, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 119/048"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1172, "fields": {"code": 1010, "state_id": 628, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 129/048"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1173, "fields": {"code": 1010, "state_id": 608, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 137/049"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1174, "fields": {"code": 1010, "state_id": 551, "transition": 1161, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 143/076"}, "examination_codes": {"BZ": 928, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1175, "fields": {"code": 1010, "state_id": 552, "transition": 1160, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 145/079"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1176, "fields": {"code": 1010, "state_id": 553, "transition": 1159, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 142/077"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1177, "fields": {"code": 1010, "state_id": 554, "transition": 1158, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 144/080"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1178, "fields": {"code": 1010, "state_id": 555, "transition": 1157, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 141/078"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1179, "fields": {"code": 1010, "state_id": 556, "transition": 1156, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 143/081"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1180, "fields": {"code": 1010, "state_id": 557, "transition": 1155, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 140/079"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1181, "fields": {"code": 1010, "state_id": 558, "transition": 1116, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 148 /min\nnur zentral noch tastbar\nRR: 57/032"}, "examination_codes": {"BZ": 920, "Hb": 406, "EKG": 722, "ZVD": 838, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 105, "Rö-Thorax": 312, "Ultraschall": 591, "Rö-Extremitäten": 619}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1182, "fields": {"code": 1011, "state_id": 101, "transition": 1178, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1183, "fields": {"code": 1011, "state_id": 351, "transition": 1176, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1184, "fields": {"code": 1011, "state_id": 352, "transition": 1174, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 926, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1185, "fields": {"code": 1011, "state_id": 353, "transition": 1172, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1186, "fields": {"code": 1011, "state_id": 354, "transition": 1170, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1187, "fields": {"code": 1011, "state_id": 355, "transition": 1168, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1188, "fields": {"code": 1011, "state_id": 356, "transition": 1166, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1189, "fields": {"code": 1011, "state_id": 357, "transition": 1164, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1190, "fields": {"code": 1011, "state_id": 358, "transition": 1162, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1191, "fields": {"code": 1011, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1192, "fields": {"code": 1011, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1193, "fields": {"code": 1011, "state_id": 758, "transition": 1162, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 420, "EKG": 739, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1194, "fields": {"code": 1011, "state_id": 757, "transition": 1164, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1195, "fields": {"code": 1011, "state_id": 756, "transition": 1166, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 420, "EKG": 739, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1196, "fields": {"code": 1011, "state_id": 755, "transition": 1168, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1197, "fields": {"code": 1011, "state_id": 754, "transition": 1170, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 420, "EKG": 739, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1198, "fields": {"code": 1011, "state_id": 753, "transition": 1172, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1199, "fields": {"code": 1011, "state_id": 752, "transition": 1174, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 926, "Hb": 420, "EKG": 739, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1200, "fields": {"code": 1011, "state_id": 751, "transition": 1176, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1201, "fields": {"code": 1011, "state_id": 551, "transition": 1178, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 739, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1202, "fields": {"code": 1012, "state_id": 101, "transition": 1194, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1203, "fields": {"code": 1012, "state_id": 102, "transition": 1193, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1204, "fields": {"code": 1012, "state_id": 103, "transition": 1192, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1205, "fields": {"code": 1012, "state_id": 104, "transition": 1190, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1206, "fields": {"code": 1012, "state_id": 354, "transition": 1188, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1207, "fields": {"code": 1012, "state_id": 355, "transition": 1186, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1208, "fields": {"code": 1012, "state_id": 356, "transition": 1184, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1209, "fields": {"code": 1012, "state_id": 357, "transition": 1182, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1210, "fields": {"code": 1012, "state_id": 358, "transition": 1180, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1211, "fields": {"code": 1012, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1212, "fields": {"code": 1012, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1213, "fields": {"code": 1012, "state_id": 758, "transition": 1180, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1214, "fields": {"code": 1012, "state_id": 757, "transition": 1182, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1215, "fields": {"code": 1012, "state_id": 756, "transition": 1184, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1216, "fields": {"code": 1012, "state_id": 755, "transition": 1186, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1217, "fields": {"code": 1012, "state_id": 754, "transition": 1188, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1218, "fields": {"code": 1012, "state_id": 551, "transition": 1197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1219, "fields": {"code": 1012, "state_id": 552, "transition": 1196, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1220, "fields": {"code": 1012, "state_id": 553, "transition": 1195, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1221, "fields": {"code": 1012, "state_id": 554, "transition": 1190, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 127/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1222, "fields": {"code": 1013, "state_id": 101, "transition": 1227, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1223, "fields": {"code": 1013, "state_id": 102, "transition": 1226, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1224, "fields": {"code": 1013, "state_id": 103, "transition": 1225, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1225, "fields": {"code": 1013, "state_id": 104, "transition": 1224, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1226, "fields": {"code": 1013, "state_id": 105, "transition": 1223, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1227, "fields": {"code": 1013, "state_id": 106, "transition": 1222, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1228, "fields": {"code": 1013, "state_id": 107, "transition": 1214, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 79 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 148/066"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1229, "fields": {"code": 1013, "state_id": 257, "transition": 1206, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 134/073"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1230, "fields": {"code": 1013, "state_id": 258, "transition": 1198, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 142/080"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1231, "fields": {"code": 1013, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 139/080"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1232, "fields": {"code": 1013, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 81 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 142/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1233, "fields": {"code": 1013, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 139/080"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1234, "fields": {"code": 1013, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 86 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 148/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1235, "fields": {"code": 1013, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 144/080"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1236, "fields": {"code": 1013, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nsichtbare ,", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 76 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 147/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1237, "fields": {"code": 1013, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 134/080"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1238, "fields": {"code": 1013, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 84 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 143/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1239, "fields": {"code": 1013, "state_id": 278, "transition": 1198, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 83 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 149/068"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1240, "fields": {"code": 1013, "state_id": 298, "transition": 1198, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 142/080"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1241, "fields": {"code": 1013, "state_id": 318, "transition": 1198, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 87 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 153/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1242, "fields": {"code": 1013, "state_id": 338, "transition": 1198, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 147/080"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1243, "fields": {"code": 1013, "state_id": 358, "transition": 1198, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 78 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 154/068"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1244, "fields": {"code": 1013, "state_id": 738, "transition": 1198, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 137/080"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1245, "fields": {"code": 1013, "state_id": 758, "transition": 1198, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 85 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 148/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1246, "fields": {"code": 1013, "state_id": 277, "transition": 1206, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 83 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 145/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1247, "fields": {"code": 1013, "state_id": 297, "transition": 1206, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 134/073"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1248, "fields": {"code": 1013, "state_id": 317, "transition": 1206, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 86 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 147/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1249, "fields": {"code": 1013, "state_id": 337, "transition": 1206, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 139/073"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1250, "fields": {"code": 1013, "state_id": 357, "transition": 1206, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 78 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 150/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1251, "fields": {"code": 1013, "state_id": 737, "transition": 1206, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher tastbar\nRR: 129/073"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1252, "fields": {"code": 1013, "state_id": 757, "transition": 1206, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 84 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 142/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1253, "fields": {"code": 1013, "state_id": 551, "transition": 1233, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1254, "fields": {"code": 1013, "state_id": 552, "transition": 1232, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1255, "fields": {"code": 1013, "state_id": 553, "transition": 1231, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1256, "fields": {"code": 1013, "state_id": 554, "transition": 1230, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 127/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1257, "fields": {"code": 1013, "state_id": 555, "transition": 1229, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 122/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1258, "fields": {"code": 1013, "state_id": 556, "transition": 1228, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 128/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1259, "fields": {"code": 1013, "state_id": 557, "transition": 1214, "vital_signs": {"Haut": "trocken\nsichtbare Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 79 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 143/066"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1260, "fields": {"code": 1014, "state_id": 101, "transition": 1247, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1261, "fields": {"code": 1014, "state_id": 102, "transition": 1246, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1262, "fields": {"code": 1014, "state_id": 103, "transition": 1245, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1263, "fields": {"code": 1014, "state_id": 104, "transition": 1244, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 132/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1264, "fields": {"code": 1014, "state_id": 105, "transition": 1242, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 127/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1265, "fields": {"code": 1014, "state_id": 355, "transition": 1240, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1266, "fields": {"code": 1014, "state_id": 356, "transition": 1238, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1267, "fields": {"code": 1014, "state_id": 357, "transition": 1236, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1268, "fields": {"code": 1014, "state_id": 358, "transition": 1234, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1269, "fields": {"code": 1014, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1270, "fields": {"code": 1014, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1271, "fields": {"code": 1014, "state_id": 758, "transition": 1234, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1272, "fields": {"code": 1014, "state_id": 757, "transition": 1236, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1273, "fields": {"code": 1014, "state_id": 756, "transition": 1238, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1274, "fields": {"code": 1014, "state_id": 755, "transition": 1240, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1275, "fields": {"code": 1014, "state_id": 551, "transition": 1251, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1276, "fields": {"code": 1014, "state_id": 552, "transition": 1250, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1277, "fields": {"code": 1014, "state_id": 553, "transition": 1249, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1278, "fields": {"code": 1014, "state_id": 554, "transition": 1248, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher tastbar\nRR: 127/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1279, "fields": {"code": 1014, "state_id": 555, "transition": 1242, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 122/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1280, "fields": {"code": 1015, "state_id": 101, "transition": 1308, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1281, "fields": {"code": 1015, "state_id": 102, "transition": 1307, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1282, "fields": {"code": 1015, "state_id": 103, "transition": 1306, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1283, "fields": {"code": 1015, "state_id": 104, "transition": 1305, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1284, "fields": {"code": 1015, "state_id": 105, "transition": 1304, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1285, "fields": {"code": 1015, "state_id": 106, "transition": 1303, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1286, "fields": {"code": 1015, "state_id": 107, "transition": 1286, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 146/086"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1287, "fields": {"code": 1015, "state_id": 207, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 114/028"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1288, "fields": {"code": 1015, "state_id": 208, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 122/035"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1289, "fields": {"code": 1015, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 10 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 119/035"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1290, "fields": {"code": 1015, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 136/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1291, "fields": {"code": 1015, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 122/035"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1292, "fields": {"code": 1015, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 139/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1293, "fields": {"code": 1015, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 136/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1294, "fields": {"code": 1015, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 147/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1295, "fields": {"code": 1015, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 139/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1296, "fields": {"code": 1015, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 144/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1297, "fields": {"code": 1015, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 120/040"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1298, "fields": {"code": 1015, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 137/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1299, "fields": {"code": 1015, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 123/040"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1300, "fields": {"code": 1015, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 140/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1301, "fields": {"code": 1015, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 137/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1302, "fields": {"code": 1015, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 148/091"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1303, "fields": {"code": 1015, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 140/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1304, "fields": {"code": 1015, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 145/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1305, "fields": {"code": 1015, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 134/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1306, "fields": {"code": 1015, "state_id": 218, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 139/065"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1307, "fields": {"code": 1015, "state_id": 228, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 125/035"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1308, "fields": {"code": 1015, "state_id": 238, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 142/065"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1309, "fields": {"code": 1015, "state_id": 248, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 139/065"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1310, "fields": {"code": 1015, "state_id": 258, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 152/089"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1311, "fields": {"code": 1015, "state_id": 268, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 142/065"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1312, "fields": {"code": 1015, "state_id": 278, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 151/083"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1313, "fields": {"code": 1015, "state_id": 288, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 123/040"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1314, "fields": {"code": 1015, "state_id": 298, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 140/070"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1315, "fields": {"code": 1015, "state_id": 308, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 126/040"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1316, "fields": {"code": 1015, "state_id": 318, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 143/070"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1317, "fields": {"code": 1015, "state_id": 328, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 140/070"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1318, "fields": {"code": 1015, "state_id": 338, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 153/094"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1319, "fields": {"code": 1015, "state_id": 348, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 143/070"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1320, "fields": {"code": 1015, "state_id": 358, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 152/088"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1321, "fields": {"code": 1015, "state_id": 758, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 137/065"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1322, "fields": {"code": 1015, "state_id": 217, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/058"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1323, "fields": {"code": 1015, "state_id": 227, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 117/028"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1324, "fields": {"code": 1015, "state_id": 237, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 134/058"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1325, "fields": {"code": 1015, "state_id": 247, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/058"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1326, "fields": {"code": 1015, "state_id": 257, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 146/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1327, "fields": {"code": 1015, "state_id": 267, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 134/058"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1328, "fields": {"code": 1015, "state_id": 277, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 147/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1329, "fields": {"code": 1015, "state_id": 287, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 115/033"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1330, "fields": {"code": 1015, "state_id": 297, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1331, "fields": {"code": 1015, "state_id": 307, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 118/033"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1332, "fields": {"code": 1015, "state_id": 317, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 135/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1333, "fields": {"code": 1015, "state_id": 327, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1334, "fields": {"code": 1015, "state_id": 337, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 147/090"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1335, "fields": {"code": 1015, "state_id": 347, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 135/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1336, "fields": {"code": 1015, "state_id": 357, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 148/087"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1337, "fields": {"code": 1015, "state_id": 757, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 129/058"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1338, "fields": {"code": 1015, "state_id": 551, "transition": 1314, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1339, "fields": {"code": 1015, "state_id": 552, "transition": 1313, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1340, "fields": {"code": 1015, "state_id": 553, "transition": 1312, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1341, "fields": {"code": 1015, "state_id": 554, "transition": 1311, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 127/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1342, "fields": {"code": 1015, "state_id": 555, "transition": 1310, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 122/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1343, "fields": {"code": 1015, "state_id": 556, "transition": 1309, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 128/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1344, "fields": {"code": 1015, "state_id": 557, "transition": 1286, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 141/086"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1345, "fields": {"code": 1016, "state_id": 101, "transition": 1335, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 147/087"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1346, "fields": {"code": 1016, "state_id": 102, "transition": 1334, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 153/091"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1347, "fields": {"code": 1016, "state_id": 103, "transition": 1333, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 148/088"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1348, "fields": {"code": 1016, "state_id": 104, "transition": 1332, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 154/092"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1349, "fields": {"code": 1016, "state_id": 105, "transition": 1331, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 149/089"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1350, "fields": {"code": 1016, "state_id": 106, "transition": 1330, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 155/093"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1351, "fields": {"code": 1016, "state_id": 107, "transition": 1325, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 171/102"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1352, "fields": {"code": 1016, "state_id": 237, "transition": 1320, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 154/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1353, "fields": {"code": 1016, "state_id": 238, "transition": 1315, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 158/089"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1354, "fields": {"code": 1016, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 151/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1355, "fields": {"code": 1016, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 181/111"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1356, "fields": {"code": 1016, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 152/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1357, "fields": {"code": 1016, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 182/116"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1358, "fields": {"code": 1016, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 157/092"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1359, "fields": {"code": 1016, "state_id": 278, "transition": 1315, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 184/111"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1360, "fields": {"code": 1016, "state_id": 318, "transition": 1315, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 159/094"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1361, "fields": {"code": 1016, "state_id": 358, "transition": 1315, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 185/116"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1362, "fields": {"code": 1016, "state_id": 718, "transition": 1315, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 162/095"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1363, "fields": {"code": 1016, "state_id": 277, "transition": 1320, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 176/104"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1364, "fields": {"code": 1016, "state_id": 317, "transition": 1320, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 155/093"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1365, "fields": {"code": 1016, "state_id": 357, "transition": 1320, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 177/109"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1366, "fields": {"code": 1016, "state_id": 717, "transition": 1320, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 156/091"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1367, "fields": {"code": 1016, "state_id": 551, "transition": 1341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 147/087"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1368, "fields": {"code": 1016, "state_id": 552, "transition": 1340, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 153/091"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1369, "fields": {"code": 1016, "state_id": 553, "transition": 1339, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 148/088"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1370, "fields": {"code": 1016, "state_id": 554, "transition": 1338, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 154/092"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1371, "fields": {"code": 1016, "state_id": 555, "transition": 1337, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 149/089"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1372, "fields": {"code": 1016, "state_id": 556, "transition": 1336, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 155/093"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1373, "fields": {"code": 1016, "state_id": 557, "transition": 1325, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 171/102"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1374, "fields": {"code": 1017, "state_id": 101, "transition": 1446, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1375, "fields": {"code": 1017, "state_id": 102, "transition": 1445, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1376, "fields": {"code": 1017, "state_id": 103, "transition": 1444, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1377, "fields": {"code": 1017, "state_id": 104, "transition": 1427, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 100 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 119 /min\nperipher kräftig tastbar\nRR: 150/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1378, "fields": {"code": 1017, "state_id": 204, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 118/030"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1379, "fields": {"code": 1017, "state_id": 205, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 115/030"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1380, "fields": {"code": 1017, "state_id": 206, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher tastbar\nRR: 123/037"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1381, "fields": {"code": 1017, "state_id": 207, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 102 /min\nperipher tastbar\nRR: 120/037"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1382, "fields": {"code": 1017, "state_id": 208, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 109 /min\nperipher tastbar\nRR: 128/044"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1383, "fields": {"code": 1017, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher tastbar\nRR: 125/044"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1384, "fields": {"code": 1017, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 142/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1385, "fields": {"code": 1017, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 109 /min\nperipher tastbar\nRR: 128/044"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1386, "fields": {"code": 1017, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 145/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1387, "fields": {"code": 1017, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 142/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1388, "fields": {"code": 1017, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 147/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1389, "fields": {"code": 1017, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 145/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1390, "fields": {"code": 1017, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 138/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1391, "fields": {"code": 1017, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 126/049"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1392, "fields": {"code": 1017, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 143/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1393, "fields": {"code": 1017, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 129/049"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1394, "fields": {"code": 1017, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 116 /min\nperipher kräftig tastbar\nRR: 146/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1395, "fields": {"code": 1017, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 143/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1396, "fields": {"code": 1017, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 148/091"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1397, "fields": {"code": 1017, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 116 /min\nperipher kräftig tastbar\nRR: 146/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1398, "fields": {"code": 1017, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 93 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 139/073"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1399, "fields": {"code": 1017, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 140/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1400, "fields": {"code": 1017, "state_id": 218, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 145/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1401, "fields": {"code": 1017, "state_id": 228, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 113 /min\nperipher kräftig tastbar\nRR: 131/044"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1402, "fields": {"code": 1017, "state_id": 238, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 118 /min\nperipher kräftig tastbar\nRR: 148/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1403, "fields": {"code": 1017, "state_id": 248, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 145/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1404, "fields": {"code": 1017, "state_id": 258, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 152/089"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1405, "fields": {"code": 1017, "state_id": 268, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 118 /min\nperipher kräftig tastbar\nRR: 148/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1406, "fields": {"code": 1017, "state_id": 278, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 145/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1407, "fields": {"code": 1017, "state_id": 288, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 129/049"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1408, "fields": {"code": 1017, "state_id": 298, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 116 /min\nperipher kräftig tastbar\nRR: 146/079"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1409, "fields": {"code": 1017, "state_id": 308, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 132/049"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1410, "fields": {"code": 1017, "state_id": 318, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 120 /min\nperipher kräftig tastbar\nRR: 149/079"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1411, "fields": {"code": 1017, "state_id": 328, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 146/079"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1412, "fields": {"code": 1017, "state_id": 338, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 153/094"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1413, "fields": {"code": 1017, "state_id": 348, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 120 /min\nperipher kräftig tastbar\nRR: 149/079"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1414, "fields": {"code": 1017, "state_id": 358, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 95 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 146/079"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1415, "fields": {"code": 1017, "state_id": 758, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 118 /min\nperipher kräftig tastbar\nRR: 143/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1416, "fields": {"code": 1017, "state_id": 217, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 137/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1417, "fields": {"code": 1017, "state_id": 227, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 123/037"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1418, "fields": {"code": 1017, "state_id": 237, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 140/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1419, "fields": {"code": 1017, "state_id": 247, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 137/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1420, "fields": {"code": 1017, "state_id": 257, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 146/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1421, "fields": {"code": 1017, "state_id": 267, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 140/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1422, "fields": {"code": 1017, "state_id": 277, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 141/073"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1423, "fields": {"code": 1017, "state_id": 287, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 121/042"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1424, "fields": {"code": 1017, "state_id": 297, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 138/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1425, "fields": {"code": 1017, "state_id": 307, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 124/042"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1426, "fields": {"code": 1017, "state_id": 317, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 141/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1427, "fields": {"code": 1017, "state_id": 327, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 138/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1428, "fields": {"code": 1017, "state_id": 337, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 147/090"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1429, "fields": {"code": 1017, "state_id": 347, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 141/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1430, "fields": {"code": 1017, "state_id": 357, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 95 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 142/078"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1431, "fields": {"code": 1017, "state_id": 757, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 135/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1432, "fields": {"code": 1017, "state_id": 216, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 140/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1433, "fields": {"code": 1017, "state_id": 226, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 126/037"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1434, "fields": {"code": 1017, "state_id": 236, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 143/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1435, "fields": {"code": 1017, "state_id": 246, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 140/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1436, "fields": {"code": 1017, "state_id": 256, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 151/088"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1437, "fields": {"code": 1017, "state_id": 266, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 143/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1438, "fields": {"code": 1017, "state_id": 276, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 148/079"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1439, "fields": {"code": 1017, "state_id": 286, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 124/042"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1440, "fields": {"code": 1017, "state_id": 296, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 141/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1441, "fields": {"code": 1017, "state_id": 306, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 111 /min\nperipher tastbar\nRR: 127/042"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1442, "fields": {"code": 1017, "state_id": 316, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 116 /min\nperipher kräftig tastbar\nRR: 144/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1443, "fields": {"code": 1017, "state_id": 326, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 141/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1444, "fields": {"code": 1017, "state_id": 336, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 152/093"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1445, "fields": {"code": 1017, "state_id": 346, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 116 /min\nperipher kräftig tastbar\nRR: 144/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1446, "fields": {"code": 1017, "state_id": 356, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 149/084"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1447, "fields": {"code": 1017, "state_id": 756, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 138/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1448, "fields": {"code": 1017, "state_id": 215, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 132/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1449, "fields": {"code": 1017, "state_id": 225, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 118/030"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1450, "fields": {"code": 1017, "state_id": 235, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 135/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1451, "fields": {"code": 1017, "state_id": 245, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 132/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1452, "fields": {"code": 1017, "state_id": 255, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 145/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1453, "fields": {"code": 1017, "state_id": 265, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 135/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1454, "fields": {"code": 1017, "state_id": 275, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 144/078"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1455, "fields": {"code": 1017, "state_id": 285, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 116/035"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1456, "fields": {"code": 1017, "state_id": 295, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 133/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1457, "fields": {"code": 1017, "state_id": 305, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 119/035"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1458, "fields": {"code": 1017, "state_id": 315, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 136/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1459, "fields": {"code": 1017, "state_id": 325, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 133/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1460, "fields": {"code": 1017, "state_id": 335, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 146/089"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1461, "fields": {"code": 1017, "state_id": 345, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 136/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1462, "fields": {"code": 1017, "state_id": 355, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 109 /min\nperipher kräftig tastbar\nRR: 145/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1463, "fields": {"code": 1017, "state_id": 755, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 130/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1464, "fields": {"code": 1017, "state_id": 214, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 135/060"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1465, "fields": {"code": 1017, "state_id": 224, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 121/030"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1466, "fields": {"code": 1017, "state_id": 234, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 138/060"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1467, "fields": {"code": 1017, "state_id": 244, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 135/060"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1468, "fields": {"code": 1017, "state_id": 254, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 150/087"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1469, "fields": {"code": 1017, "state_id": 264, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 138/060"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1470, "fields": {"code": 1017, "state_id": 274, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 116 /min\nperipher kräftig tastbar\nRR: 151/084"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1471, "fields": {"code": 1017, "state_id": 284, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 102 /min\nperipher tastbar\nRR: 119/035"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1472, "fields": {"code": 1017, "state_id": 294, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 136/065"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1473, "fields": {"code": 1017, "state_id": 304, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 122/035"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1474, "fields": {"code": 1017, "state_id": 314, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 139/065"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1475, "fields": {"code": 1017, "state_id": 324, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 136/065"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1476, "fields": {"code": 1017, "state_id": 334, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 151/092"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1477, "fields": {"code": 1017, "state_id": 344, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 139/065"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1478, "fields": {"code": 1017, "state_id": 354, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 117 /min\nperipher kräftig tastbar\nRR: 152/089"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über sehr starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1479, "fields": {"code": 1017, "state_id": 754, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 133/060"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1480, "fields": {"code": 1017, "state_id": 551, "transition": 1449, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1481, "fields": {"code": 1017, "state_id": 552, "transition": 1448, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1482, "fields": {"code": 1017, "state_id": 553, "transition": 1447, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1483, "fields": {"code": 1017, "state_id": 554, "transition": 1427, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 119 /min\nperipher kräftig tastbar\nRR: 145/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1484, "fields": {"code": 1018, "state_id": 101, "transition": 1506, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 155/098"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1485, "fields": {"code": 1018, "state_id": 102, "transition": 1505, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 161/102"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1486, "fields": {"code": 1018, "state_id": 103, "transition": 1504, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 156/099"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1487, "fields": {"code": 1018, "state_id": 104, "transition": 1503, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 162/103"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1488, "fields": {"code": 1018, "state_id": 105, "transition": 1502, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 157/100"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1489, "fields": {"code": 1018, "state_id": 106, "transition": 1501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 163/104"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1490, "fields": {"code": 1018, "state_id": 107, "transition": 1484, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 176/121"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1491, "fields": {"code": 1018, "state_id": 207, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 144/063"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1492, "fields": {"code": 1018, "state_id": 208, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 152/070"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1493, "fields": {"code": 1018, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 149/070"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1494, "fields": {"code": 1018, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 166/100"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1495, "fields": {"code": 1018, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 152/070"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1496, "fields": {"code": 1018, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 169/100"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1497, "fields": {"code": 1018, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 166/100"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1498, "fields": {"code": 1018, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 177/121"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1499, "fields": {"code": 1018, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 169/100"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1500, "fields": {"code": 1018, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 174/112"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1501, "fields": {"code": 1018, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 150/075"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1502, "fields": {"code": 1018, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 167/105"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1503, "fields": {"code": 1018, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 153/075"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1504, "fields": {"code": 1018, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 170/105"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1505, "fields": {"code": 1018, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 167/105"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1506, "fields": {"code": 1018, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 178/126"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1507, "fields": {"code": 1018, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 170/105"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1508, "fields": {"code": 1018, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 93 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 175/117"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1509, "fields": {"code": 1018, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 169/100"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1510, "fields": {"code": 1018, "state_id": 218, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 169/100"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1511, "fields": {"code": 1018, "state_id": 228, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 155/070"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1512, "fields": {"code": 1018, "state_id": 238, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 172/100"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1513, "fields": {"code": 1018, "state_id": 248, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 169/100"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1514, "fields": {"code": 1018, "state_id": 258, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 182/124"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1515, "fields": {"code": 1018, "state_id": 268, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 172/100"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1516, "fields": {"code": 1018, "state_id": 278, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 181/118"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über sehr starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1517, "fields": {"code": 1018, "state_id": 288, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 153/075"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1518, "fields": {"code": 1018, "state_id": 298, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 170/105"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1519, "fields": {"code": 1018, "state_id": 308, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 156/075"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1520, "fields": {"code": 1018, "state_id": 318, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 173/105"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1521, "fields": {"code": 1018, "state_id": 328, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 170/105"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1522, "fields": {"code": 1018, "state_id": 338, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 183/129"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1523, "fields": {"code": 1018, "state_id": 348, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 173/105"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1524, "fields": {"code": 1018, "state_id": 358, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 95 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 182/123"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über sehr starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1525, "fields": {"code": 1018, "state_id": 758, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 172/100"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1526, "fields": {"code": 1018, "state_id": 217, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 161/093"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1527, "fields": {"code": 1018, "state_id": 227, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 147/063"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1528, "fields": {"code": 1018, "state_id": 237, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 164/093"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1529, "fields": {"code": 1018, "state_id": 247, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 161/093"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1530, "fields": {"code": 1018, "state_id": 257, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 176/120"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1531, "fields": {"code": 1018, "state_id": 267, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 164/093"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1532, "fields": {"code": 1018, "state_id": 277, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 177/117"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1533, "fields": {"code": 1018, "state_id": 287, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 145/068"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1534, "fields": {"code": 1018, "state_id": 297, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 162/098"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1535, "fields": {"code": 1018, "state_id": 307, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 148/068"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1536, "fields": {"code": 1018, "state_id": 317, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 165/098"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1537, "fields": {"code": 1018, "state_id": 327, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 162/098"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1538, "fields": {"code": 1018, "state_id": 337, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 177/125"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1539, "fields": {"code": 1018, "state_id": 347, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 165/098"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1540, "fields": {"code": 1018, "state_id": 357, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 95 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 178/122"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1541, "fields": {"code": 1018, "state_id": 757, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 164/093"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1542, "fields": {"code": 1018, "state_id": 551, "transition": 1512, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 155/098"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 701, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1543, "fields": {"code": 1018, "state_id": 552, "transition": 1511, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 161/102"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1544, "fields": {"code": 1018, "state_id": 553, "transition": 1510, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 156/099"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 701, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1545, "fields": {"code": 1018, "state_id": 554, "transition": 1509, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 162/103"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1546, "fields": {"code": 1018, "state_id": 555, "transition": 1508, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 157/100"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 701, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1547, "fields": {"code": 1018, "state_id": 556, "transition": 1507, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 163/104"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 701, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1548, "fields": {"code": 1018, "state_id": 557, "transition": 1484, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 176/121"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 701, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1549, "fields": {"code": 1019, "state_id": 101, "transition": 1633, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1550, "fields": {"code": 1019, "state_id": 102, "transition": 1632, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1551, "fields": {"code": 1019, "state_id": 103, "transition": 1615, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 95 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 144/084"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1552, "fields": {"code": 1019, "state_id": 203, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 112/026"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1553, "fields": {"code": 1019, "state_id": 204, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 120/033"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1554, "fields": {"code": 1019, "state_id": 205, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 117/033"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1555, "fields": {"code": 1019, "state_id": 206, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 125/040"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1556, "fields": {"code": 1019, "state_id": 207, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 93 /min\nperipher tastbar\nRR: 122/040"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1557, "fields": {"code": 1019, "state_id": 208, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 130/047"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1558, "fields": {"code": 1019, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 127/047"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1559, "fields": {"code": 1019, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 144/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1560, "fields": {"code": 1019, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 102 /min\nperipher kräftig tastbar\nRR: 130/047"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1561, "fields": {"code": 1019, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 147/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1562, "fields": {"code": 1019, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 144/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1563, "fields": {"code": 1019, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 147/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1564, "fields": {"code": 1019, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 147/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1565, "fields": {"code": 1019, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 136/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1566, "fields": {"code": 1019, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 128/052"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1567, "fields": {"code": 1019, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 145/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1568, "fields": {"code": 1019, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 131/052"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1569, "fields": {"code": 1019, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 148/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1570, "fields": {"code": 1019, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 145/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1571, "fields": {"code": 1019, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 148/091"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1572, "fields": {"code": 1019, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 148/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1573, "fields": {"code": 1019, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 33 /min\nSpO2: 88 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 137/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1574, "fields": {"code": 1019, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 142/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1575, "fields": {"code": 1019, "state_id": 218, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 106 /min\nperipher kräftig tastbar\nRR: 147/077"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1576, "fields": {"code": 1019, "state_id": 228, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 133/047"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1577, "fields": {"code": 1019, "state_id": 238, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 150/077"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1578, "fields": {"code": 1019, "state_id": 248, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 106 /min\nperipher kräftig tastbar\nRR: 147/077"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1579, "fields": {"code": 1019, "state_id": 258, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 152/089"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1580, "fields": {"code": 1019, "state_id": 268, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 150/077"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1581, "fields": {"code": 1019, "state_id": 278, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 33 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 143/071"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1582, "fields": {"code": 1019, "state_id": 288, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 131/052"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1583, "fields": {"code": 1019, "state_id": 298, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 148/082"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1584, "fields": {"code": 1019, "state_id": 308, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 106 /min\nperipher kräftig tastbar\nRR: 134/052"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1585, "fields": {"code": 1019, "state_id": 318, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 151/082"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1586, "fields": {"code": 1019, "state_id": 328, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 148/082"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1587, "fields": {"code": 1019, "state_id": 338, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 153/094"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1588, "fields": {"code": 1019, "state_id": 348, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 151/082"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1589, "fields": {"code": 1019, "state_id": 358, "transition": 1513, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 34 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 144/076"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1590, "fields": {"code": 1019, "state_id": 758, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 145/077"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1591, "fields": {"code": 1019, "state_id": 217, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 99 /min\nperipher kräftig tastbar\nRR: 139/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1592, "fields": {"code": 1019, "state_id": 227, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 125/040"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1593, "fields": {"code": 1019, "state_id": 237, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 142/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1594, "fields": {"code": 1019, "state_id": 247, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 99 /min\nperipher kräftig tastbar\nRR: 139/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1595, "fields": {"code": 1019, "state_id": 257, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 146/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1596, "fields": {"code": 1019, "state_id": 267, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 142/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1597, "fields": {"code": 1019, "state_id": 277, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 139/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1598, "fields": {"code": 1019, "state_id": 287, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 93 /min\nperipher tastbar\nRR: 123/045"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1599, "fields": {"code": 1019, "state_id": 297, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 140/075"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1600, "fields": {"code": 1019, "state_id": 307, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 126/045"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1601, "fields": {"code": 1019, "state_id": 317, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 143/075"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1602, "fields": {"code": 1019, "state_id": 327, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 140/075"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1603, "fields": {"code": 1019, "state_id": 337, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 147/090"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1604, "fields": {"code": 1019, "state_id": 347, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 143/075"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1605, "fields": {"code": 1019, "state_id": 357, "transition": 1530, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 91 /min\nperipher kräftig tastbar\nRR: 140/075"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1606, "fields": {"code": 1019, "state_id": 757, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 137/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1607, "fields": {"code": 1019, "state_id": 216, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 102 /min\nperipher kräftig tastbar\nRR: 142/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1608, "fields": {"code": 1019, "state_id": 226, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 128/040"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1609, "fields": {"code": 1019, "state_id": 236, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 145/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1610, "fields": {"code": 1019, "state_id": 246, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 102 /min\nperipher kräftig tastbar\nRR: 142/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1611, "fields": {"code": 1019, "state_id": 256, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 151/088"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1612, "fields": {"code": 1019, "state_id": 266, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 145/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1613, "fields": {"code": 1019, "state_id": 276, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 33 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 97 /min\nperipher kräftig tastbar\nRR: 146/076"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1614, "fields": {"code": 1019, "state_id": 286, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 126/045"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1615, "fields": {"code": 1019, "state_id": 296, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 143/075"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1616, "fields": {"code": 1019, "state_id": 306, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 102 /min\nperipher tastbar\nRR: 129/045"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1617, "fields": {"code": 1019, "state_id": 316, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 146/075"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1618, "fields": {"code": 1019, "state_id": 326, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 143/075"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1619, "fields": {"code": 1019, "state_id": 336, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 152/093"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1620, "fields": {"code": 1019, "state_id": 346, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 146/075"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1621, "fields": {"code": 1019, "state_id": 356, "transition": 1547, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 34 /min\nSpO2: 92 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 147/081"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1622, "fields": {"code": 1019, "state_id": 756, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 140/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1623, "fields": {"code": 1019, "state_id": 215, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 134/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1624, "fields": {"code": 1019, "state_id": 225, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 120/033"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1625, "fields": {"code": 1019, "state_id": 235, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 137/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1626, "fields": {"code": 1019, "state_id": 245, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 134/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1627, "fields": {"code": 1019, "state_id": 255, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 145/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1628, "fields": {"code": 1019, "state_id": 265, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 137/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1629, "fields": {"code": 1019, "state_id": 275, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 94 /min\nperipher kräftig tastbar\nRR: 142/075"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1630, "fields": {"code": 1019, "state_id": 285, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 118/038"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1631, "fields": {"code": 1019, "state_id": 295, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 135/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1632, "fields": {"code": 1019, "state_id": 305, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 121/038"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1633, "fields": {"code": 1019, "state_id": 315, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 138/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1634, "fields": {"code": 1019, "state_id": 325, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 135/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1635, "fields": {"code": 1019, "state_id": 335, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 146/089"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1636, "fields": {"code": 1019, "state_id": 345, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 138/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1637, "fields": {"code": 1019, "state_id": 355, "transition": 1564, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 92 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 143/080"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1638, "fields": {"code": 1019, "state_id": 755, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 132/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1639, "fields": {"code": 1019, "state_id": 214, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 137/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1640, "fields": {"code": 1019, "state_id": 224, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 123/033"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1641, "fields": {"code": 1019, "state_id": 234, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 140/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1642, "fields": {"code": 1019, "state_id": 244, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 137/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1643, "fields": {"code": 1019, "state_id": 254, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 150/087"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1644, "fields": {"code": 1019, "state_id": 264, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 140/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1645, "fields": {"code": 1019, "state_id": 274, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 149/081"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über sehr starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1646, "fields": {"code": 1019, "state_id": 284, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 121/038"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1647, "fields": {"code": 1019, "state_id": 294, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 99 /min\nperipher kräftig tastbar\nRR: 138/068"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1648, "fields": {"code": 1019, "state_id": 304, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 124/038"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1649, "fields": {"code": 1019, "state_id": 314, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 141/068"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1650, "fields": {"code": 1019, "state_id": 324, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 99 /min\nperipher kräftig tastbar\nRR: 138/068"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1651, "fields": {"code": 1019, "state_id": 334, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 151/092"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1652, "fields": {"code": 1019, "state_id": 344, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 141/068"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1653, "fields": {"code": 1019, "state_id": 354, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 33 /min\nSpO2: 94 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 102 /min\nperipher kräftig tastbar\nRR: 150/086"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über sehr starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1654, "fields": {"code": 1019, "state_id": 754, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 135/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1655, "fields": {"code": 1019, "state_id": 213, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 129/056"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1656, "fields": {"code": 1019, "state_id": 223, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 115/026"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1657, "fields": {"code": 1019, "state_id": 233, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 132/056"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1658, "fields": {"code": 1019, "state_id": 243, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 129/056"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1659, "fields": {"code": 1019, "state_id": 253, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 144/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1660, "fields": {"code": 1019, "state_id": 263, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 132/056"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1661, "fields": {"code": 1019, "state_id": 273, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 145/080"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1662, "fields": {"code": 1019, "state_id": 283, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 113/031"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1663, "fields": {"code": 1019, "state_id": 293, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 130/061"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1664, "fields": {"code": 1019, "state_id": 303, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 116/031"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1665, "fields": {"code": 1019, "state_id": 313, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 97 /min\nperipher kräftig tastbar\nRR: 133/061"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1666, "fields": {"code": 1019, "state_id": 323, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 130/061"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1667, "fields": {"code": 1019, "state_id": 333, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 145/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1668, "fields": {"code": 1019, "state_id": 343, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 97 /min\nperipher kräftig tastbar\nRR: 133/061"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1669, "fields": {"code": 1019, "state_id": 353, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 94 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 99 /min\nperipher kräftig tastbar\nRR: 146/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über sehr starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1670, "fields": {"code": 1019, "state_id": 753, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 127/056"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1671, "fields": {"code": 1019, "state_id": 551, "transition": 1635, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1672, "fields": {"code": 1019, "state_id": 552, "transition": 1634, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1673, "fields": {"code": 1019, "state_id": 553, "transition": 1615, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 139/084"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1674, "fields": {"code": 1020, "state_id": 101, "transition": 1679, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 728, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1675, "fields": {"code": 1020, "state_id": 102, "transition": 1678, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1676, "fields": {"code": 1020, "state_id": 103, "transition": 1677, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 728, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1677, "fields": {"code": 1020, "state_id": 104, "transition": 1676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 132/068"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1678, "fields": {"code": 1020, "state_id": 105, "transition": 1668, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 75 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 147/065"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 728, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1679, "fields": {"code": 1020, "state_id": 255, "transition": 1660, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 133/072"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1680, "fields": {"code": 1020, "state_id": 256, "transition": 1652, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 141/079"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1681, "fields": {"code": 1020, "state_id": 257, "transition": 1644, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 138/079"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1682, "fields": {"code": 1020, "state_id": 258, "transition": 1636, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 146/086"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1683, "fields": {"code": 1020, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 143/086"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 824, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1684, "fields": {"code": 1020, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\nsichtbare ,", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 75 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 138/056"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 836, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1685, "fields": {"code": 1020, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 143/086"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1686, "fields": {"code": 1020, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 82 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 148/071"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1687, "fields": {"code": 1020, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 148/086"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 824, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1688, "fields": {"code": 1020, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nschwere ,", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 34 /min\nSpO2: 70 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 143/056"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 836, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über schwere Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1689, "fields": {"code": 1020, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 138/086"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 807, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1690, "fields": {"code": 1020, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nsichtbare ,", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 80 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 143/071"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1691, "fields": {"code": 1020, "state_id": 278, "transition": 1636, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 77 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 145/062"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 728, "ZVD": 824, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1692, "fields": {"code": 1020, "state_id": 298, "transition": 1636, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 146/086"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 728, "ZVD": 807, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1693, "fields": {"code": 1020, "state_id": 318, "transition": 1636, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 83 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 153/074"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 728, "ZVD": 807, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1694, "fields": {"code": 1020, "state_id": 338, "transition": 1636, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 151/086"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1695, "fields": {"code": 1020, "state_id": 358, "transition": 1636, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 35 /min\nSpO2: 72 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 150/062"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 728, "ZVD": 824, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1696, "fields": {"code": 1020, "state_id": 738, "transition": 1636, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 141/086"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 728, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1697, "fields": {"code": 1020, "state_id": 758, "transition": 1636, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 81 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 148/074"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 728, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1698, "fields": {"code": 1020, "state_id": 277, "transition": 1644, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 77 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 141/061"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 833, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1699, "fields": {"code": 1020, "state_id": 297, "transition": 1644, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 138/079"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1700, "fields": {"code": 1020, "state_id": 317, "transition": 1644, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 82 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 147/070"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1701, "fields": {"code": 1020, "state_id": 337, "transition": 1644, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 89 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 143/079"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1702, "fields": {"code": 1020, "state_id": 357, "transition": 1644, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 33 /min\nSpO2: 72 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 146/061"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 833, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1703, "fields": {"code": 1020, "state_id": 737, "transition": 1644, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 133/079"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1704, "fields": {"code": 1020, "state_id": 757, "transition": 1644, "vital_signs": {"Haut": "trocken\nsichtbare Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 80 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 142/070"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1705, "fields": {"code": 1020, "state_id": 276, "transition": 1652, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 79 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 148/067"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 728, "ZVD": 824, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1706, "fields": {"code": 1020, "state_id": 296, "transition": 1652, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 141/079"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 728, "ZVD": 807, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1707, "fields": {"code": 1020, "state_id": 316, "transition": 1652, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 83 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 152/073"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 728, "ZVD": 807, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1708, "fields": {"code": 1020, "state_id": 336, "transition": 1652, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 89 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 146/079"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1709, "fields": {"code": 1020, "state_id": 356, "transition": 1652, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 34 /min\nSpO2: 74 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 153/067"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 728, "ZVD": 824, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1710, "fields": {"code": 1020, "state_id": 736, "transition": 1652, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 136/079"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 728, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1711, "fields": {"code": 1020, "state_id": 756, "transition": 1652, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 81 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 147/073"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 728, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1712, "fields": {"code": 1020, "state_id": 275, "transition": 1660, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 79 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 144/066"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 833, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1713, "fields": {"code": 1020, "state_id": 295, "transition": 1660, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 133/072"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1714, "fields": {"code": 1020, "state_id": 315, "transition": 1660, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 82 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 146/069"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1715, "fields": {"code": 1020, "state_id": 335, "transition": 1660, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 87 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 138/072"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1716, "fields": {"code": 1020, "state_id": 355, "transition": 1660, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 74 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 91 /min\nperipher kräftig tastbar\nRR: 149/066"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 833, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1717, "fields": {"code": 1020, "state_id": 735, "transition": 1660, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher tastbar\nRR: 128/072"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1718, "fields": {"code": 1020, "state_id": 755, "transition": 1660, "vital_signs": {"Haut": "trocken\nsichtbare Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 80 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1719, "fields": {"code": 1020, "state_id": 551, "transition": 1683, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1720, "fields": {"code": 1020, "state_id": 552, "transition": 1682, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1721, "fields": {"code": 1020, "state_id": 553, "transition": 1681, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1722, "fields": {"code": 1020, "state_id": 554, "transition": 1680, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 127/068"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1723, "fields": {"code": 1020, "state_id": 555, "transition": 1668, "vital_signs": {"Haut": "trocken\nsichtbare Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 75 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 142/065"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1724, "fields": {"code": 1021, "state_id": 101, "transition": 1940, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 143/076"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1725, "fields": {"code": 1021, "state_id": 102, "transition": 1908, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 118 /min\nnur zentral noch tastbar\nRR: 60/029"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1726, "fields": {"code": 1021, "state_id": 352, "transition": 1876, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 119 /min\nnur zentral noch tastbar\nRR: 50/029"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1727, "fields": {"code": 1021, "state_id": 353, "transition": 1844, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 41/023"}, "examination_codes": {"BZ": 954, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1728, "fields": {"code": 1021, "state_id": 354, "transition": 1812, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 127 /min\nzentral nicht tastbar\nRR: 37/022"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1729, "fields": {"code": 1021, "state_id": 355, "transition": 1780, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 127 /min\nzentral nicht tastbar\nRR: 28/016"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1730, "fields": {"code": 1021, "state_id": 356, "transition": 1748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 135 /min\nzentral nicht tastbar\nRR: 24/015"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1731, "fields": {"code": 1021, "state_id": 357, "transition": 1716, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 135 /min\nzentral nicht tastbar\nRR: 15/009"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 714, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1732, "fields": {"code": 1021, "state_id": 358, "transition": 1684, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 143 /min\nzentral nicht tastbar\nRR: 11/008"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 714, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1733, "fields": {"code": 1021, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 143 /min\nzentral nicht tastbar\nRR: 2/002"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 714, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1734, "fields": {"code": 1021, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 135 /min\nzentral nicht tastbar\nRR: 10/003"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 714, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1735, "fields": {"code": 1021, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 127 /min\nzentral nicht tastbar\nRR: 20/003"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1736, "fields": {"code": 1021, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 108/068"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1737, "fields": {"code": 1021, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 20/005"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1738, "fields": {"code": 1021, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 76/038"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1739, "fields": {"code": 1021, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1740, "fields": {"code": 1021, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1741, "fields": {"code": 1021, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1742, "fields": {"code": 1021, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1743, "fields": {"code": 1021, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 136/071"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1744, "fields": {"code": 1021, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 52 /min\nperipher kräftig tastbar\nRR: 144/072"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1745, "fields": {"code": 1021, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 104/041"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1746, "fields": {"code": 1021, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 49 /min\nperipher kräftig tastbar\nRR: 144/074"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1747, "fields": {"code": 1021, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 47 /min\nperipher kräftig tastbar\nRR: 154/074"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1748, "fields": {"code": 1021, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 46 /min\nperipher kräftig tastbar\nRR: 162/075"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1749, "fields": {"code": 1021, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 181 /min\nzentral nicht tastbar\nRR: 2/002"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 714, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1750, "fields": {"code": 1021, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 173 /min\nzentral nicht tastbar\nRR: 10/003"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 714, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1751, "fields": {"code": 1021, "state_id": 749, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 163 /min\nzentral nicht tastbar\nRR: 20/003"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1752, "fields": {"code": 1021, "state_id": 729, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 108/068"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1753, "fields": {"code": 1021, "state_id": 679, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 155 /min\nzentral nicht tastbar\nRR: 20/005"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1754, "fields": {"code": 1021, "state_id": 659, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 76/038"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1755, "fields": {"code": 1021, "state_id": 669, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1756, "fields": {"code": 1021, "state_id": 649, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1757, "fields": {"code": 1021, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1758, "fields": {"code": 1021, "state_id": 699, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1759, "fields": {"code": 1021, "state_id": 709, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 136/071"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1760, "fields": {"code": 1021, "state_id": 689, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 144/072"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1761, "fields": {"code": 1021, "state_id": 639, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 104/041"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1762, "fields": {"code": 1021, "state_id": 619, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 65 /min\nperipher kräftig tastbar\nRR: 144/074"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1763, "fields": {"code": 1021, "state_id": 629, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 154/074"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1764, "fields": {"code": 1021, "state_id": 609, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 162/075"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1765, "fields": {"code": 1021, "state_id": 338, "transition": 1684, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 135 /min\nzentral nicht tastbar\nRR: 19/009"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1766, "fields": {"code": 1021, "state_id": 348, "transition": 1684, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 127 /min\nzentral nicht tastbar\nRR: 29/009"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1767, "fields": {"code": 1021, "state_id": 328, "transition": 1684, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher tastbar\nRR: 107/066"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1768, "fields": {"code": 1021, "state_id": 278, "transition": 1684, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 29/011"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1769, "fields": {"code": 1021, "state_id": 258, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 79/040"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1770, "fields": {"code": 1021, "state_id": 268, "transition": 1684, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1771, "fields": {"code": 1021, "state_id": 248, "transition": 1684, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1772, "fields": {"code": 1021, "state_id": 318, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1773, "fields": {"code": 1021, "state_id": 298, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1774, "fields": {"code": 1021, "state_id": 308, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 135/069"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1775, "fields": {"code": 1021, "state_id": 288, "transition": 1684, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 56 /min\nperipher kräftig tastbar\nRR: 143/070"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1776, "fields": {"code": 1021, "state_id": 238, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 107/043"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1777, "fields": {"code": 1021, "state_id": 218, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 143/072"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1778, "fields": {"code": 1021, "state_id": 228, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 49 /min\nperipher kräftig tastbar\nRR: 153/072"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1779, "fields": {"code": 1021, "state_id": 208, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 48 /min\nperipher kräftig tastbar\nRR: 161/073"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1780, "fields": {"code": 1021, "state_id": 758, "transition": 1684, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 182 /min\nzentral nicht tastbar\nRR: 11/008"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 714, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1781, "fields": {"code": 1021, "state_id": 738, "transition": 1684, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 173 /min\nzentral nicht tastbar\nRR: 19/009"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1782, "fields": {"code": 1021, "state_id": 748, "transition": 1684, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 163 /min\nzentral nicht tastbar\nRR: 29/009"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1783, "fields": {"code": 1021, "state_id": 728, "transition": 1684, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 107/066"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1784, "fields": {"code": 1021, "state_id": 678, "transition": 1684, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 155 /min\nzentral nicht tastbar\nRR: 29/011"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1785, "fields": {"code": 1021, "state_id": 658, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 79/040"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1786, "fields": {"code": 1021, "state_id": 668, "transition": 1684, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1787, "fields": {"code": 1021, "state_id": 648, "transition": 1684, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1788, "fields": {"code": 1021, "state_id": 718, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1789, "fields": {"code": 1021, "state_id": 698, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1790, "fields": {"code": 1021, "state_id": 708, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 135/069"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1791, "fields": {"code": 1021, "state_id": 688, "transition": 1684, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 143/070"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1792, "fields": {"code": 1021, "state_id": 638, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 107/043"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1793, "fields": {"code": 1021, "state_id": 618, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 143/072"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1794, "fields": {"code": 1021, "state_id": 628, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 65 /min\nperipher kräftig tastbar\nRR: 153/072"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1795, "fields": {"code": 1021, "state_id": 608, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 161/073"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1796, "fields": {"code": 1021, "state_id": 337, "transition": 1716, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 127 /min\nzentral nicht tastbar\nRR: 23/010"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1797, "fields": {"code": 1021, "state_id": 347, "transition": 1716, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 33/010"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1798, "fields": {"code": 1021, "state_id": 327, "transition": 1716, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher tastbar\nRR: 101/059"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1799, "fields": {"code": 1021, "state_id": 277, "transition": 1716, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 113 /min\nzentral nicht tastbar\nRR: 33/012"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1800, "fields": {"code": 1021, "state_id": 257, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 77/037"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1801, "fields": {"code": 1021, "state_id": 267, "transition": 1716, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 87/037"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1802, "fields": {"code": 1021, "state_id": 247, "transition": 1716, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 95/038"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1803, "fields": {"code": 1021, "state_id": 317, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 87/037"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1804, "fields": {"code": 1021, "state_id": 297, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 95/038"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1805, "fields": {"code": 1021, "state_id": 307, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher tastbar\nRR: 129/062"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1806, "fields": {"code": 1021, "state_id": 287, "transition": 1716, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 56 /min\nperipher kräftig tastbar\nRR: 137/063"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1807, "fields": {"code": 1021, "state_id": 237, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 105/040"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1808, "fields": {"code": 1021, "state_id": 217, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 137/065"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1809, "fields": {"code": 1021, "state_id": 227, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 49 /min\nperipher kräftig tastbar\nRR: 147/065"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1810, "fields": {"code": 1021, "state_id": 207, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 48 /min\nperipher kräftig tastbar\nRR: 155/066"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1811, "fields": {"code": 1021, "state_id": 757, "transition": 1716, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 172 /min\nzentral nicht tastbar\nRR: 15/009"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 714, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1812, "fields": {"code": 1021, "state_id": 737, "transition": 1716, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 163 /min\nzentral nicht tastbar\nRR: 23/010"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1813, "fields": {"code": 1021, "state_id": 747, "transition": 1716, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 153 /min\nzentral nicht tastbar\nRR: 33/010"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1814, "fields": {"code": 1021, "state_id": 727, "transition": 1716, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 101/059"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1815, "fields": {"code": 1021, "state_id": 677, "transition": 1716, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 146 /min\nzentral nicht tastbar\nRR: 33/012"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1816, "fields": {"code": 1021, "state_id": 657, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 77/037"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1817, "fields": {"code": 1021, "state_id": 667, "transition": 1716, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 87/037"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1818, "fields": {"code": 1021, "state_id": 647, "transition": 1716, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 95/038"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1819, "fields": {"code": 1021, "state_id": 717, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 87/037"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1820, "fields": {"code": 1021, "state_id": 697, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 95/038"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1821, "fields": {"code": 1021, "state_id": 707, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 129/062"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1822, "fields": {"code": 1021, "state_id": 687, "transition": 1716, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 137/063"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1823, "fields": {"code": 1021, "state_id": 637, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 105/040"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1824, "fields": {"code": 1021, "state_id": 617, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 137/065"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1825, "fields": {"code": 1021, "state_id": 627, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 65 /min\nperipher kräftig tastbar\nRR: 147/065"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1826, "fields": {"code": 1021, "state_id": 607, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 155/066"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1827, "fields": {"code": 1021, "state_id": 336, "transition": 1748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 127 /min\nzentral nicht tastbar\nRR: 32/016"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1828, "fields": {"code": 1021, "state_id": 346, "transition": 1748, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 42/016"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1829, "fields": {"code": 1021, "state_id": 326, "transition": 1748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 100/057"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1830, "fields": {"code": 1021, "state_id": 276, "transition": 1748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 114 /min\nzentral nicht tastbar\nRR: 42/018"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1831, "fields": {"code": 1021, "state_id": 256, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 80/039"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1832, "fields": {"code": 1021, "state_id": 266, "transition": 1748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 90/039"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1833, "fields": {"code": 1021, "state_id": 246, "transition": 1748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 98/040"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1834, "fields": {"code": 1021, "state_id": 316, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 90/039"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1835, "fields": {"code": 1021, "state_id": 296, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 98/040"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1836, "fields": {"code": 1021, "state_id": 306, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 63 /min\nperipher tastbar\nRR: 128/060"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1837, "fields": {"code": 1021, "state_id": 286, "transition": 1748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 60 /min\nperipher kräftig tastbar\nRR: 136/061"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1838, "fields": {"code": 1021, "state_id": 236, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 108/042"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1839, "fields": {"code": 1021, "state_id": 216, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 136/063"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1840, "fields": {"code": 1021, "state_id": 226, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 146/063"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1841, "fields": {"code": 1021, "state_id": 206, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 50 /min\nperipher kräftig tastbar\nRR: 154/064"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1842, "fields": {"code": 1021, "state_id": 756, "transition": 1748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 172 /min\nzentral nicht tastbar\nRR: 24/015"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1843, "fields": {"code": 1021, "state_id": 736, "transition": 1748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 163 /min\nzentral nicht tastbar\nRR: 32/016"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1844, "fields": {"code": 1021, "state_id": 746, "transition": 1748, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 153 /min\nzentral nicht tastbar\nRR: 42/016"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1845, "fields": {"code": 1021, "state_id": 726, "transition": 1748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 100/057"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1846, "fields": {"code": 1021, "state_id": 676, "transition": 1748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 146 /min\nzentral nicht tastbar\nRR: 42/018"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1847, "fields": {"code": 1021, "state_id": 656, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 117 /min\nperipher tastbar\nRR: 80/039"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1848, "fields": {"code": 1021, "state_id": 666, "transition": 1748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 90/039"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1849, "fields": {"code": 1021, "state_id": 646, "transition": 1748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 98/040"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1850, "fields": {"code": 1021, "state_id": 716, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 90/039"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1851, "fields": {"code": 1021, "state_id": 696, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 98/040"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1852, "fields": {"code": 1021, "state_id": 706, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 128/060"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1853, "fields": {"code": 1021, "state_id": 686, "transition": 1748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 136/061"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1854, "fields": {"code": 1021, "state_id": 636, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 108/042"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1855, "fields": {"code": 1021, "state_id": 616, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 136/063"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1856, "fields": {"code": 1021, "state_id": 626, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 146/063"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1857, "fields": {"code": 1021, "state_id": 606, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 65 /min\nperipher kräftig tastbar\nRR: 154/064"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1858, "fields": {"code": 1021, "state_id": 335, "transition": 1780, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 36/017"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1859, "fields": {"code": 1021, "state_id": 345, "transition": 1780, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 113 /min\nzentral nicht tastbar\nRR: 46/017"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1860, "fields": {"code": 1021, "state_id": 325, "transition": 1780, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 94/050"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1861, "fields": {"code": 1021, "state_id": 275, "transition": 1780, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 108 /min\nzentral nicht tastbar\nRR: 46/019"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1862, "fields": {"code": 1021, "state_id": 255, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 78/036"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1863, "fields": {"code": 1021, "state_id": 265, "transition": 1780, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 88/036"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1864, "fields": {"code": 1021, "state_id": 245, "transition": 1780, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 96/037"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1865, "fields": {"code": 1021, "state_id": 315, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 88/036"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1866, "fields": {"code": 1021, "state_id": 295, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 96/037"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1867, "fields": {"code": 1021, "state_id": 305, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 63 /min\nperipher tastbar\nRR: 122/053"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1868, "fields": {"code": 1021, "state_id": 285, "transition": 1780, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 60 /min\nperipher kräftig tastbar\nRR: 130/054"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1869, "fields": {"code": 1021, "state_id": 235, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 106/039"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1870, "fields": {"code": 1021, "state_id": 215, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 130/056"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1871, "fields": {"code": 1021, "state_id": 225, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 140/056"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1872, "fields": {"code": 1021, "state_id": 205, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 51 /min\nperipher kräftig tastbar\nRR: 148/057"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1873, "fields": {"code": 1021, "state_id": 755, "transition": 1780, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 162 /min\nzentral nicht tastbar\nRR: 28/016"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1874, "fields": {"code": 1021, "state_id": 735, "transition": 1780, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 153 /min\nzentral nicht tastbar\nRR: 36/017"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1875, "fields": {"code": 1021, "state_id": 745, "transition": 1780, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 145 /min\nzentral nicht tastbar\nRR: 46/017"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1876, "fields": {"code": 1021, "state_id": 725, "transition": 1780, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 94/050"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1877, "fields": {"code": 1021, "state_id": 675, "transition": 1780, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 138 /min\nzentral nicht tastbar\nRR: 46/019"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1878, "fields": {"code": 1021, "state_id": 655, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 114 /min\nperipher tastbar\nRR: 78/036"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1879, "fields": {"code": 1021, "state_id": 665, "transition": 1780, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 88/036"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1880, "fields": {"code": 1021, "state_id": 645, "transition": 1780, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 96/037"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1881, "fields": {"code": 1021, "state_id": 715, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 88/036"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1882, "fields": {"code": 1021, "state_id": 695, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 96/037"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1883, "fields": {"code": 1021, "state_id": 705, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 122/053"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1884, "fields": {"code": 1021, "state_id": 685, "transition": 1780, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 130/054"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1885, "fields": {"code": 1021, "state_id": 635, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 106/039"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1886, "fields": {"code": 1021, "state_id": 615, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 130/056"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1887, "fields": {"code": 1021, "state_id": 625, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 140/056"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1888, "fields": {"code": 1021, "state_id": 605, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 65 /min\nperipher kräftig tastbar\nRR: 148/057"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1889, "fields": {"code": 1021, "state_id": 334, "transition": 1812, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 45/023"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1890, "fields": {"code": 1021, "state_id": 344, "transition": 1812, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 113 /min\nnur zentral noch tastbar\nRR: 55/023"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1891, "fields": {"code": 1021, "state_id": 324, "transition": 1812, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 93/048"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1892, "fields": {"code": 1021, "state_id": 274, "transition": 1812, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 108 /min\nnur zentral noch tastbar\nRR: 55/025"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1893, "fields": {"code": 1021, "state_id": 254, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 81/038"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1894, "fields": {"code": 1021, "state_id": 264, "transition": 1812, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 91/038"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1895, "fields": {"code": 1021, "state_id": 244, "transition": 1812, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 99/039"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1896, "fields": {"code": 1021, "state_id": 314, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 91/038"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1897, "fields": {"code": 1021, "state_id": 294, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 99/039"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1898, "fields": {"code": 1021, "state_id": 304, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 121/051"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1899, "fields": {"code": 1021, "state_id": 284, "transition": 1812, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 129/052"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1900, "fields": {"code": 1021, "state_id": 234, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 109/041"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1901, "fields": {"code": 1021, "state_id": 214, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 129/054"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1902, "fields": {"code": 1021, "state_id": 224, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 139/054"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1903, "fields": {"code": 1021, "state_id": 204, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 147/055"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1904, "fields": {"code": 1021, "state_id": 754, "transition": 1812, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 162 /min\nzentral nicht tastbar\nRR: 37/022"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1905, "fields": {"code": 1021, "state_id": 734, "transition": 1812, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 153 /min\nzentral nicht tastbar\nRR: 45/023"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1906, "fields": {"code": 1021, "state_id": 744, "transition": 1812, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 145 /min\nnur zentral noch tastbar\nRR: 55/023"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1907, "fields": {"code": 1021, "state_id": 724, "transition": 1812, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 93/048"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1908, "fields": {"code": 1021, "state_id": 674, "transition": 1812, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 138 /min\nnur zentral noch tastbar\nRR: 55/025"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1909, "fields": {"code": 1021, "state_id": 654, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 118 /min\nperipher tastbar\nRR: 81/038"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1910, "fields": {"code": 1021, "state_id": 664, "transition": 1812, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 91/038"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1911, "fields": {"code": 1021, "state_id": 644, "transition": 1812, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 99/039"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1912, "fields": {"code": 1021, "state_id": 714, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 91/038"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1913, "fields": {"code": 1021, "state_id": 694, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 99/039"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1914, "fields": {"code": 1021, "state_id": 704, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 121/051"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1915, "fields": {"code": 1021, "state_id": 684, "transition": 1812, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 129/052"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1916, "fields": {"code": 1021, "state_id": 634, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 109/041"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1917, "fields": {"code": 1021, "state_id": 614, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 129/054"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1918, "fields": {"code": 1021, "state_id": 624, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 139/054"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1919, "fields": {"code": 1021, "state_id": 604, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 147/055"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1920, "fields": {"code": 1021, "state_id": 333, "transition": 1844, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 113 /min\nzentral nicht tastbar\nRR: 49/024"}, "examination_codes": {"BZ": 954, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1921, "fields": {"code": 1021, "state_id": 343, "transition": 1844, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 107 /min\nnur zentral noch tastbar\nRR: 59/024"}, "examination_codes": {"BZ": 954, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1922, "fields": {"code": 1021, "state_id": 323, "transition": 1844, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 87/041"}, "examination_codes": {"BZ": 954, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1923, "fields": {"code": 1021, "state_id": 273, "transition": 1844, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 102 /min\nnur zentral noch tastbar\nRR: 59/026"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1924, "fields": {"code": 1021, "state_id": 253, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 79/035"}, "examination_codes": {"BZ": 954, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1925, "fields": {"code": 1021, "state_id": 263, "transition": 1844, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 89/035"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1926, "fields": {"code": 1021, "state_id": 243, "transition": 1844, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 97/036"}, "examination_codes": {"BZ": 954, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1927, "fields": {"code": 1021, "state_id": 313, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 89/035"}, "examination_codes": {"BZ": 954, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1928, "fields": {"code": 1021, "state_id": 293, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 97/036"}, "examination_codes": {"BZ": 954, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1929, "fields": {"code": 1021, "state_id": 303, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 115/044"}, "examination_codes": {"BZ": 954, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1930, "fields": {"code": 1021, "state_id": 283, "transition": 1844, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 123/045"}, "examination_codes": {"BZ": 954, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1931, "fields": {"code": 1021, "state_id": 233, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 107/038"}, "examination_codes": {"BZ": 954, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1932, "fields": {"code": 1021, "state_id": 213, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 123/047"}, "examination_codes": {"BZ": 954, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1933, "fields": {"code": 1021, "state_id": 223, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 133/047"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1934, "fields": {"code": 1021, "state_id": 203, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 141/048"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1935, "fields": {"code": 1021, "state_id": 753, "transition": 1844, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 152 /min\nzentral nicht tastbar\nRR: 41/023"}, "examination_codes": {"BZ": 954, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1936, "fields": {"code": 1021, "state_id": 733, "transition": 1844, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 145 /min\nzentral nicht tastbar\nRR: 49/024"}, "examination_codes": {"BZ": 954, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1937, "fields": {"code": 1021, "state_id": 743, "transition": 1844, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 137 /min\nnur zentral noch tastbar\nRR: 59/024"}, "examination_codes": {"BZ": 954, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1938, "fields": {"code": 1021, "state_id": 723, "transition": 1844, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 87/041"}, "examination_codes": {"BZ": 954, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1939, "fields": {"code": 1021, "state_id": 673, "transition": 1844, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 130 /min\nnur zentral noch tastbar\nRR: 59/026"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1940, "fields": {"code": 1021, "state_id": 653, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 115 /min\nperipher tastbar\nRR: 79/035"}, "examination_codes": {"BZ": 954, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1941, "fields": {"code": 1021, "state_id": 663, "transition": 1844, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 89/035"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1942, "fields": {"code": 1021, "state_id": 643, "transition": 1844, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 97/036"}, "examination_codes": {"BZ": 954, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1943, "fields": {"code": 1021, "state_id": 713, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 89/035"}, "examination_codes": {"BZ": 954, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1944, "fields": {"code": 1021, "state_id": 693, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 97/036"}, "examination_codes": {"BZ": 954, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1945, "fields": {"code": 1021, "state_id": 703, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 115/044"}, "examination_codes": {"BZ": 954, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1946, "fields": {"code": 1021, "state_id": 683, "transition": 1844, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 123/045"}, "examination_codes": {"BZ": 954, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1947, "fields": {"code": 1021, "state_id": 633, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 107/038"}, "examination_codes": {"BZ": 954, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1948, "fields": {"code": 1021, "state_id": 613, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 123/047"}, "examination_codes": {"BZ": 954, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1949, "fields": {"code": 1021, "state_id": 623, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 133/047"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1950, "fields": {"code": 1021, "state_id": 603, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 141/048"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1951, "fields": {"code": 1021, "state_id": 332, "transition": 1876, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 113 /min\nnur zentral noch tastbar\nRR: 58/030"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1952, "fields": {"code": 1021, "state_id": 342, "transition": 1876, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 107 /min\nnur zentral noch tastbar\nRR: 68/030"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1953, "fields": {"code": 1021, "state_id": 322, "transition": 1876, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 86/039"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1954, "fields": {"code": 1021, "state_id": 272, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 102 /min\nnur zentral noch tastbar\nRR: 68/032"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1955, "fields": {"code": 1021, "state_id": 252, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 82/037"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1956, "fields": {"code": 1021, "state_id": 262, "transition": 1876, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 92/037"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1957, "fields": {"code": 1021, "state_id": 242, "transition": 1876, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 100/038"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1958, "fields": {"code": 1021, "state_id": 312, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 92/037"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1959, "fields": {"code": 1021, "state_id": 292, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 100/038"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1960, "fields": {"code": 1021, "state_id": 302, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 114/042"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1961, "fields": {"code": 1021, "state_id": 282, "transition": 1876, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 122/043"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1962, "fields": {"code": 1021, "state_id": 232, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 110/040"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1963, "fields": {"code": 1021, "state_id": 212, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 65 /min\nperipher tastbar\nRR: 122/045"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1964, "fields": {"code": 1021, "state_id": 222, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 132/045"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1965, "fields": {"code": 1021, "state_id": 202, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 140/046"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1966, "fields": {"code": 1021, "state_id": 752, "transition": 1876, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 152 /min\nnur zentral noch tastbar\nRR: 50/029"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1967, "fields": {"code": 1021, "state_id": 732, "transition": 1876, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 145 /min\nnur zentral noch tastbar\nRR: 58/030"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1968, "fields": {"code": 1021, "state_id": 742, "transition": 1876, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 137 /min\nnur zentral noch tastbar\nRR: 68/030"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1969, "fields": {"code": 1021, "state_id": 722, "transition": 1876, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 124 /min\nperipher tastbar\nRR: 86/039"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1970, "fields": {"code": 1021, "state_id": 672, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 130 /min\nnur zentral noch tastbar\nRR: 68/032"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1971, "fields": {"code": 1021, "state_id": 652, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 119 /min\nperipher tastbar\nRR: 82/037"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1972, "fields": {"code": 1021, "state_id": 662, "transition": 1876, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 92/037"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1973, "fields": {"code": 1021, "state_id": 642, "transition": 1876, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 100/038"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1974, "fields": {"code": 1021, "state_id": 712, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 92/037"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1975, "fields": {"code": 1021, "state_id": 692, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 100/038"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1976, "fields": {"code": 1021, "state_id": 702, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 114/042"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1977, "fields": {"code": 1021, "state_id": 682, "transition": 1876, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 87 /min\nperipher tastbar\nRR: 122/043"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1978, "fields": {"code": 1021, "state_id": 632, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 110/040"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1979, "fields": {"code": 1021, "state_id": 612, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 122/045"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1980, "fields": {"code": 1021, "state_id": 622, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 132/045"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1981, "fields": {"code": 1021, "state_id": 602, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 140/046"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1982, "fields": {"code": 1021, "state_id": 551, "transition": 1941, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 143/076"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1983, "fields": {"code": 1021, "state_id": 552, "transition": 1908, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 148 /min\nnur zentral noch tastbar\nRR: 60/029"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1984, "fields": {"code": 1022, "state_id": 101, "transition": 1982, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1985, "fields": {"code": 1022, "state_id": 102, "transition": 1981, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1986, "fields": {"code": 1022, "state_id": 103, "transition": 1980, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1987, "fields": {"code": 1022, "state_id": 104, "transition": 1979, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 132/068"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1988, "fields": {"code": 1022, "state_id": 105, "transition": 1978, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 127/065"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1989, "fields": {"code": 1022, "state_id": 106, "transition": 1977, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 133/069"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1990, "fields": {"code": 1022, "state_id": 107, "transition": 1976, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 128/066"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1991, "fields": {"code": 1022, "state_id": 108, "transition": 1959, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 152/090"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1992, "fields": {"code": 1022, "state_id": 208, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 120/032"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1993, "fields": {"code": 1022, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 117/032"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1994, "fields": {"code": 1022, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 134/062"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1995, "fields": {"code": 1022, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 120/032"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1996, "fields": {"code": 1022, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 137/062"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1997, "fields": {"code": 1022, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 134/062"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1998, "fields": {"code": 1022, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 147/086"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1999, "fields": {"code": 1022, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 137/062"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2000, "fields": {"code": 1022, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 146/080"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2001, "fields": {"code": 1022, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 118/037"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2002, "fields": {"code": 1022, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 135/067"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2003, "fields": {"code": 1022, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 121/037"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2004, "fields": {"code": 1022, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/067"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2005, "fields": {"code": 1022, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 135/067"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2006, "fields": {"code": 1022, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 148/091"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2007, "fields": {"code": 1022, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/067"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2008, "fields": {"code": 1022, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 94 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 147/085"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2009, "fields": {"code": 1022, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 132/062"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2010, "fields": {"code": 1022, "state_id": 218, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 137/062"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2011, "fields": {"code": 1022, "state_id": 228, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 70 /min\nperipher tastbar\nRR: 123/032"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2012, "fields": {"code": 1022, "state_id": 238, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 140/062"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2013, "fields": {"code": 1022, "state_id": 248, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 137/062"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2014, "fields": {"code": 1022, "state_id": 258, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 152/089"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2015, "fields": {"code": 1022, "state_id": 268, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 140/062"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2016, "fields": {"code": 1022, "state_id": 278, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 153/086"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2017, "fields": {"code": 1022, "state_id": 288, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 121/037"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2018, "fields": {"code": 1022, "state_id": 298, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 138/067"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2019, "fields": {"code": 1022, "state_id": 308, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 124/037"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2020, "fields": {"code": 1022, "state_id": 318, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 141/067"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2021, "fields": {"code": 1022, "state_id": 328, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 138/067"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2022, "fields": {"code": 1022, "state_id": 338, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 153/094"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2023, "fields": {"code": 1022, "state_id": 348, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 141/067"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2024, "fields": {"code": 1022, "state_id": 358, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 154/091"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2025, "fields": {"code": 1022, "state_id": 758, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 135/062"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2026, "fields": {"code": 1022, "state_id": 551, "transition": 1989, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2027, "fields": {"code": 1022, "state_id": 552, "transition": 1988, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2028, "fields": {"code": 1022, "state_id": 553, "transition": 1987, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2029, "fields": {"code": 1022, "state_id": 554, "transition": 1986, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 127/068"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2030, "fields": {"code": 1022, "state_id": 555, "transition": 1985, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 122/065"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2031, "fields": {"code": 1022, "state_id": 556, "transition": 1984, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher tastbar\nRR: 128/069"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2032, "fields": {"code": 1022, "state_id": 557, "transition": 1983, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 123/066"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2033, "fields": {"code": 1022, "state_id": 558, "transition": 1959, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 147/090"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2034, "fields": {"code": 1023, "state_id": 101, "transition": 2006, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 937, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2035, "fields": {"code": 1023, "state_id": 351, "transition": 2004, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 910, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2036, "fields": {"code": 1023, "state_id": 352, "transition": 2002, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2037, "fields": {"code": 1023, "state_id": 353, "transition": 2000, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 910, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2038, "fields": {"code": 1023, "state_id": 354, "transition": 1998, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2039, "fields": {"code": 1023, "state_id": 355, "transition": 1996, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2040, "fields": {"code": 1023, "state_id": 356, "transition": 1994, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2041, "fields": {"code": 1023, "state_id": 357, "transition": 1992, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2042, "fields": {"code": 1023, "state_id": 358, "transition": 1990, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2043, "fields": {"code": 1023, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2044, "fields": {"code": 1023, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2045, "fields": {"code": 1023, "state_id": 758, "transition": 1990, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2046, "fields": {"code": 1023, "state_id": 757, "transition": 1992, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2047, "fields": {"code": 1023, "state_id": 756, "transition": 1994, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2048, "fields": {"code": 1023, "state_id": 755, "transition": 1996, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2049, "fields": {"code": 1023, "state_id": 754, "transition": 1998, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2050, "fields": {"code": 1023, "state_id": 753, "transition": 2000, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 910, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2051, "fields": {"code": 1023, "state_id": 752, "transition": 2002, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2052, "fields": {"code": 1023, "state_id": 751, "transition": 2004, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 910, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2053, "fields": {"code": 1023, "state_id": 551, "transition": 2006, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 937, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2054, "fields": {"code": 1024, "state_id": 101, "transition": 2024, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 176/089"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 746, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2055, "fields": {"code": 1024, "state_id": 351, "transition": 2022, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 180/093"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2056, "fields": {"code": 1024, "state_id": 352, "transition": 2020, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 186/097"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 746, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2057, "fields": {"code": 1024, "state_id": 353, "transition": 2018, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 181/094"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2058, "fields": {"code": 1024, "state_id": 354, "transition": 2016, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 187/098"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 746, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2059, "fields": {"code": 1024, "state_id": 355, "transition": 2014, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 182/095"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2060, "fields": {"code": 1024, "state_id": 356, "transition": 2012, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 188/099"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 746, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2061, "fields": {"code": 1024, "state_id": 357, "transition": 2010, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 183/096"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2062, "fields": {"code": 1024, "state_id": 358, "transition": 2008, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 189/100"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 746, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2063, "fields": {"code": 1024, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 184/097"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2064, "fields": {"code": 1024, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 184/097"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2065, "fields": {"code": 1024, "state_id": 758, "transition": 2008, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 189/100"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 746, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2066, "fields": {"code": 1024, "state_id": 757, "transition": 2010, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 183/096"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2067, "fields": {"code": 1024, "state_id": 756, "transition": 2012, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 188/099"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 746, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2068, "fields": {"code": 1024, "state_id": 755, "transition": 2014, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 182/095"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2069, "fields": {"code": 1024, "state_id": 754, "transition": 2016, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 187/098"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 746, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2070, "fields": {"code": 1024, "state_id": 753, "transition": 2018, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 181/094"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2071, "fields": {"code": 1024, "state_id": 752, "transition": 2020, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 186/097"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 746, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2072, "fields": {"code": 1024, "state_id": 751, "transition": 2022, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 180/093"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2073, "fields": {"code": 1024, "state_id": 551, "transition": 2024, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 176/089"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2074, "fields": {"code": 1025, "state_id": 101, "transition": 2042, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 115/066"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2075, "fields": {"code": 1025, "state_id": 351, "transition": 2040, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 119/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2076, "fields": {"code": 1025, "state_id": 352, "transition": 2038, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 125/074"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 747, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2077, "fields": {"code": 1025, "state_id": 353, "transition": 2036, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2078, "fields": {"code": 1025, "state_id": 354, "transition": 2034, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/075"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 747, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2079, "fields": {"code": 1025, "state_id": 355, "transition": 2032, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 121/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2080, "fields": {"code": 1025, "state_id": 356, "transition": 2030, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 127/076"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 747, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2081, "fields": {"code": 1025, "state_id": 357, "transition": 2028, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 122/073"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2082, "fields": {"code": 1025, "state_id": 358, "transition": 2026, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 747, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2083, "fields": {"code": 1025, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 123/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2084, "fields": {"code": 1025, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 123/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2085, "fields": {"code": 1025, "state_id": 758, "transition": 2026, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 747, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2086, "fields": {"code": 1025, "state_id": 757, "transition": 2028, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 122/073"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2087, "fields": {"code": 1025, "state_id": 756, "transition": 2030, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 127/076"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 747, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2088, "fields": {"code": 1025, "state_id": 755, "transition": 2032, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 121/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2089, "fields": {"code": 1025, "state_id": 754, "transition": 2034, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/075"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 747, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2090, "fields": {"code": 1025, "state_id": 753, "transition": 2036, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2091, "fields": {"code": 1025, "state_id": 752, "transition": 2038, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 125/074"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 747, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2092, "fields": {"code": 1025, "state_id": 751, "transition": 2040, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 119/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2093, "fields": {"code": 1025, "state_id": 551, "transition": 2042, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 115/066"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2094, "fields": {"code": 1026, "state_id": 101, "transition": 2060, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 904, "Hb": 420, "EKG": 722, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2095, "fields": {"code": 1026, "state_id": 351, "transition": 2058, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2096, "fields": {"code": 1026, "state_id": 352, "transition": 2056, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 902, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2097, "fields": {"code": 1026, "state_id": 353, "transition": 2054, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2098, "fields": {"code": 1026, "state_id": 354, "transition": 2052, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 902, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2099, "fields": {"code": 1026, "state_id": 355, "transition": 2050, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2100, "fields": {"code": 1026, "state_id": 356, "transition": 2048, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 902, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2101, "fields": {"code": 1026, "state_id": 357, "transition": 2046, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2102, "fields": {"code": 1026, "state_id": 358, "transition": 2044, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 923, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2103, "fields": {"code": 1026, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2104, "fields": {"code": 1026, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2105, "fields": {"code": 1026, "state_id": 758, "transition": 2044, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 923, "Hb": 420, "EKG": 722, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2106, "fields": {"code": 1026, "state_id": 757, "transition": 2046, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2107, "fields": {"code": 1026, "state_id": 756, "transition": 2048, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 902, "Hb": 420, "EKG": 722, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2108, "fields": {"code": 1026, "state_id": 755, "transition": 2050, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2109, "fields": {"code": 1026, "state_id": 754, "transition": 2052, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 902, "Hb": 420, "EKG": 722, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2110, "fields": {"code": 1026, "state_id": 753, "transition": 2054, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2111, "fields": {"code": 1026, "state_id": 752, "transition": 2056, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 902, "Hb": 420, "EKG": 722, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2112, "fields": {"code": 1026, "state_id": 751, "transition": 2058, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2113, "fields": {"code": 1026, "state_id": 551, "transition": 2060, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 904, "Hb": 420, "EKG": 722, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2114, "fields": {"code": 1027, "state_id": 101, "transition": 2078, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 156/094"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2115, "fields": {"code": 1027, "state_id": 351, "transition": 2076, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 160/098"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2116, "fields": {"code": 1027, "state_id": 352, "transition": 2074, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 166/102"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2117, "fields": {"code": 1027, "state_id": 353, "transition": 2072, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 161/099"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2118, "fields": {"code": 1027, "state_id": 354, "transition": 2070, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 167/103"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2119, "fields": {"code": 1027, "state_id": 355, "transition": 2068, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 162/100"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2120, "fields": {"code": 1027, "state_id": 356, "transition": 2066, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 168/104"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2121, "fields": {"code": 1027, "state_id": 357, "transition": 2064, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 163/101"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2122, "fields": {"code": 1027, "state_id": 358, "transition": 2062, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 169/105"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2123, "fields": {"code": 1027, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 164/102"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2124, "fields": {"code": 1027, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 164/102"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2125, "fields": {"code": 1027, "state_id": 758, "transition": 2062, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 169/105"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 748, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2126, "fields": {"code": 1027, "state_id": 757, "transition": 2064, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 163/101"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2127, "fields": {"code": 1027, "state_id": 756, "transition": 2066, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 168/104"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 748, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2128, "fields": {"code": 1027, "state_id": 755, "transition": 2068, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 162/100"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2129, "fields": {"code": 1027, "state_id": 754, "transition": 2070, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 167/103"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 748, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2130, "fields": {"code": 1027, "state_id": 753, "transition": 2072, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 161/099"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2131, "fields": {"code": 1027, "state_id": 752, "transition": 2074, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 166/102"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 748, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2132, "fields": {"code": 1027, "state_id": 751, "transition": 2076, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 160/098"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2133, "fields": {"code": 1027, "state_id": 551, "transition": 2078, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 156/094"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2134, "fields": {"code": 1028, "state_id": 101, "transition": 2096, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2135, "fields": {"code": 1028, "state_id": 351, "transition": 2094, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2136, "fields": {"code": 1028, "state_id": 352, "transition": 2092, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 926, "Hb": 418, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2137, "fields": {"code": 1028, "state_id": 353, "transition": 2090, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2138, "fields": {"code": 1028, "state_id": 354, "transition": 2088, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 418, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2139, "fields": {"code": 1028, "state_id": 355, "transition": 2086, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2140, "fields": {"code": 1028, "state_id": 356, "transition": 2084, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 418, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2141, "fields": {"code": 1028, "state_id": 357, "transition": 2082, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2142, "fields": {"code": 1028, "state_id": 358, "transition": 2080, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 418, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2143, "fields": {"code": 1028, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2144, "fields": {"code": 1028, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2145, "fields": {"code": 1028, "state_id": 758, "transition": 2080, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 418, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2146, "fields": {"code": 1028, "state_id": 757, "transition": 2082, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2147, "fields": {"code": 1028, "state_id": 756, "transition": 2084, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 418, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2148, "fields": {"code": 1028, "state_id": 755, "transition": 2086, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2149, "fields": {"code": 1028, "state_id": 754, "transition": 2088, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 418, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2150, "fields": {"code": 1028, "state_id": 753, "transition": 2090, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2151, "fields": {"code": 1028, "state_id": 752, "transition": 2092, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 926, "Hb": 418, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2152, "fields": {"code": 1028, "state_id": 751, "transition": 2094, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2153, "fields": {"code": 1028, "state_id": 551, "transition": 2096, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2154, "fields": {"code": 1029, "state_id": 101, "transition": 2114, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2155, "fields": {"code": 1029, "state_id": 351, "transition": 2112, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2156, "fields": {"code": 1029, "state_id": 352, "transition": 2110, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2157, "fields": {"code": 1029, "state_id": 353, "transition": 2108, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2158, "fields": {"code": 1029, "state_id": 354, "transition": 2106, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2159, "fields": {"code": 1029, "state_id": 355, "transition": 2104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2160, "fields": {"code": 1029, "state_id": 356, "transition": 2102, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2161, "fields": {"code": 1029, "state_id": 357, "transition": 2100, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2162, "fields": {"code": 1029, "state_id": 358, "transition": 2098, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2163, "fields": {"code": 1029, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2164, "fields": {"code": 1029, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2165, "fields": {"code": 1029, "state_id": 758, "transition": 2098, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2166, "fields": {"code": 1029, "state_id": 757, "transition": 2100, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2167, "fields": {"code": 1029, "state_id": 756, "transition": 2102, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2168, "fields": {"code": 1029, "state_id": 755, "transition": 2104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2169, "fields": {"code": 1029, "state_id": 754, "transition": 2106, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2170, "fields": {"code": 1029, "state_id": 753, "transition": 2108, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2171, "fields": {"code": 1029, "state_id": 752, "transition": 2110, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2172, "fields": {"code": 1029, "state_id": 751, "transition": 2112, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2173, "fields": {"code": 1029, "state_id": 551, "transition": 2114, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2174, "fields": {"code": 1030, "state_id": 101, "transition": 2132, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 134/078"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2175, "fields": {"code": 1030, "state_id": 351, "transition": 2130, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 138/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2176, "fields": {"code": 1030, "state_id": 352, "transition": 2128, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 144/086"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2177, "fields": {"code": 1030, "state_id": 353, "transition": 2126, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 139/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2178, "fields": {"code": 1030, "state_id": 354, "transition": 2124, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 145/087"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2179, "fields": {"code": 1030, "state_id": 355, "transition": 2122, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 140/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2180, "fields": {"code": 1030, "state_id": 356, "transition": 2120, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 146/088"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2181, "fields": {"code": 1030, "state_id": 357, "transition": 2118, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 141/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2182, "fields": {"code": 1030, "state_id": 358, "transition": 2116, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 147/089"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2183, "fields": {"code": 1030, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 142/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2184, "fields": {"code": 1030, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 142/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2185, "fields": {"code": 1030, "state_id": 758, "transition": 2116, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 147/089"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2186, "fields": {"code": 1030, "state_id": 757, "transition": 2118, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 141/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2187, "fields": {"code": 1030, "state_id": 756, "transition": 2120, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 146/088"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2188, "fields": {"code": 1030, "state_id": 755, "transition": 2122, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 140/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2189, "fields": {"code": 1030, "state_id": 754, "transition": 2124, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 145/087"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2190, "fields": {"code": 1030, "state_id": 753, "transition": 2126, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 139/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2191, "fields": {"code": 1030, "state_id": 752, "transition": 2128, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 144/086"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2192, "fields": {"code": 1030, "state_id": 751, "transition": 2130, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 138/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2193, "fields": {"code": 1030, "state_id": 551, "transition": 2132, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 134/078"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2194, "fields": {"code": 1031, "state_id": 101, "transition": 2146, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 157/083"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2195, "fields": {"code": 1031, "state_id": 102, "transition": 2145, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 163/087"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2196, "fields": {"code": 1031, "state_id": 103, "transition": 2144, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 158/084"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2197, "fields": {"code": 1031, "state_id": 104, "transition": 2143, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 164/088"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2198, "fields": {"code": 1031, "state_id": 105, "transition": 2142, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 159/085"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2199, "fields": {"code": 1031, "state_id": 106, "transition": 2140, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 165/089"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2200, "fields": {"code": 1031, "state_id": 356, "transition": 2138, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 169/093"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2201, "fields": {"code": 1031, "state_id": 357, "transition": 2136, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 164/090"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2202, "fields": {"code": 1031, "state_id": 358, "transition": 2134, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 170/094"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2203, "fields": {"code": 1031, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 165/091"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2204, "fields": {"code": 1031, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 165/091"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2205, "fields": {"code": 1031, "state_id": 758, "transition": 2134, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 170/094"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2206, "fields": {"code": 1031, "state_id": 757, "transition": 2136, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 164/090"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2207, "fields": {"code": 1031, "state_id": 756, "transition": 2138, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 169/093"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2208, "fields": {"code": 1031, "state_id": 551, "transition": 2151, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 157/083"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2209, "fields": {"code": 1031, "state_id": 552, "transition": 2150, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 163/087"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2210, "fields": {"code": 1031, "state_id": 553, "transition": 2149, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 158/084"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2211, "fields": {"code": 1031, "state_id": 554, "transition": 2148, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 164/088"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2212, "fields": {"code": 1031, "state_id": 555, "transition": 2147, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 159/085"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2213, "fields": {"code": 1031, "state_id": 556, "transition": 2140, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 165/089"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2214, "fields": {"code": 1032, "state_id": 101, "transition": 2162, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 162/099"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 703, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2215, "fields": {"code": 1032, "state_id": 102, "transition": 2161, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 168/103"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 703, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2216, "fields": {"code": 1032, "state_id": 103, "transition": 2160, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 163/100"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 703, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2217, "fields": {"code": 1032, "state_id": 104, "transition": 2159, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 91 /min\nperipher kräftig tastbar\nRR: 169/104"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 703, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2218, "fields": {"code": 1032, "state_id": 105, "transition": 2158, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 164/101"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 703, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2219, "fields": {"code": 1032, "state_id": 106, "transition": 2157, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 170/105"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 703, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2220, "fields": {"code": 1032, "state_id": 107, "transition": 2156, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 165/102"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 703, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2221, "fields": {"code": 1032, "state_id": 108, "transition": 2154, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 171/106"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 703, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2222, "fields": {"code": 1032, "state_id": 358, "transition": 2152, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 175/110"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 703, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2223, "fields": {"code": 1032, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 170/107"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 703, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2224, "fields": {"code": 1032, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 170/107"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 703, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2225, "fields": {"code": 1032, "state_id": 758, "transition": 2152, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 175/110"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 703, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2226, "fields": {"code": 1032, "state_id": 551, "transition": 2169, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 162/099"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 703, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2227, "fields": {"code": 1032, "state_id": 552, "transition": 2168, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 168/103"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 703, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2228, "fields": {"code": 1032, "state_id": 553, "transition": 2167, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 163/100"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 703, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2229, "fields": {"code": 1032, "state_id": 554, "transition": 2166, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 91 /min\nperipher kräftig tastbar\nRR: 169/104"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 703, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2230, "fields": {"code": 1032, "state_id": 555, "transition": 2165, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 164/101"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 703, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2231, "fields": {"code": 1032, "state_id": 556, "transition": 2164, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 170/105"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 703, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2232, "fields": {"code": 1032, "state_id": 557, "transition": 2163, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 165/102"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 703, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2233, "fields": {"code": 1032, "state_id": 558, "transition": 2154, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 171/106"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 703, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2234, "fields": {"code": 1033, "state_id": 101, "transition": 2186, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 145/093"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2235, "fields": {"code": 1033, "state_id": 351, "transition": 2184, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 149/097"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2236, "fields": {"code": 1033, "state_id": 352, "transition": 2182, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 155/101"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 747, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2237, "fields": {"code": 1033, "state_id": 353, "transition": 2180, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 150/098"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2238, "fields": {"code": 1033, "state_id": 354, "transition": 2178, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 156/102"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 747, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2239, "fields": {"code": 1033, "state_id": 355, "transition": 2176, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 151/099"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2240, "fields": {"code": 1033, "state_id": 356, "transition": 2174, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 157/103"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 747, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2241, "fields": {"code": 1033, "state_id": 357, "transition": 2172, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 152/100"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2242, "fields": {"code": 1033, "state_id": 358, "transition": 2170, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 158/104"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 747, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2243, "fields": {"code": 1033, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 153/101"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2244, "fields": {"code": 1033, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 153/101"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2245, "fields": {"code": 1033, "state_id": 758, "transition": 2170, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 158/104"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 747, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2246, "fields": {"code": 1033, "state_id": 757, "transition": 2172, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 152/100"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2247, "fields": {"code": 1033, "state_id": 756, "transition": 2174, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 157/103"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 747, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2248, "fields": {"code": 1033, "state_id": 755, "transition": 2176, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 151/099"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2249, "fields": {"code": 1033, "state_id": 754, "transition": 2178, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 156/102"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 747, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2250, "fields": {"code": 1033, "state_id": 753, "transition": 2180, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 150/098"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2251, "fields": {"code": 1033, "state_id": 752, "transition": 2182, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 155/101"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 747, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2252, "fields": {"code": 1033, "state_id": 751, "transition": 2184, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 149/097"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2253, "fields": {"code": 1033, "state_id": 551, "transition": 2186, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 145/093"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2254, "fields": {"code": 1034, "state_id": 101, "transition": 2204, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2255, "fields": {"code": 1034, "state_id": 351, "transition": 2202, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2256, "fields": {"code": 1034, "state_id": 352, "transition": 2200, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2257, "fields": {"code": 1034, "state_id": 353, "transition": 2198, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2258, "fields": {"code": 1034, "state_id": 354, "transition": 2196, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2259, "fields": {"code": 1034, "state_id": 355, "transition": 2194, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2260, "fields": {"code": 1034, "state_id": 356, "transition": 2192, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2261, "fields": {"code": 1034, "state_id": 357, "transition": 2190, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2262, "fields": {"code": 1034, "state_id": 358, "transition": 2188, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2263, "fields": {"code": 1034, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2264, "fields": {"code": 1034, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2265, "fields": {"code": 1034, "state_id": 758, "transition": 2188, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2266, "fields": {"code": 1034, "state_id": 757, "transition": 2190, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2267, "fields": {"code": 1034, "state_id": 756, "transition": 2192, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2268, "fields": {"code": 1034, "state_id": 755, "transition": 2194, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2269, "fields": {"code": 1034, "state_id": 754, "transition": 2196, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2270, "fields": {"code": 1034, "state_id": 753, "transition": 2198, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2271, "fields": {"code": 1034, "state_id": 752, "transition": 2200, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2272, "fields": {"code": 1034, "state_id": 751, "transition": 2202, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2273, "fields": {"code": 1034, "state_id": 551, "transition": 2204, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2274, "fields": {"code": 1035, "state_id": 101, "transition": 2242, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2275, "fields": {"code": 1035, "state_id": 102, "transition": 2241, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2276, "fields": {"code": 1035, "state_id": 103, "transition": 2236, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 147/076"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2277, "fields": {"code": 1035, "state_id": 233, "transition": 2231, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2278, "fields": {"code": 1035, "state_id": 234, "transition": 2226, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 134/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2279, "fields": {"code": 1035, "state_id": 235, "transition": 2221, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 127/057"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2280, "fields": {"code": 1035, "state_id": 236, "transition": 2216, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 131/058"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2281, "fields": {"code": 1035, "state_id": 237, "transition": 2211, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 124/052"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2282, "fields": {"code": 1035, "state_id": 238, "transition": 2206, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 128/053"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2283, "fields": {"code": 1035, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 121/047"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2284, "fields": {"code": 1035, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 167/099"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2285, "fields": {"code": 1035, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 122/052"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2286, "fields": {"code": 1035, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 88 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 168/104"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2287, "fields": {"code": 1035, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2288, "fields": {"code": 1035, "state_id": 278, "transition": 2206, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 170/099"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2289, "fields": {"code": 1035, "state_id": 318, "transition": 2206, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 129/058"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2290, "fields": {"code": 1035, "state_id": 358, "transition": 2206, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 90 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 171/104"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2291, "fields": {"code": 1035, "state_id": 718, "transition": 2206, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2292, "fields": {"code": 1035, "state_id": 277, "transition": 2211, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 162/092"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2293, "fields": {"code": 1035, "state_id": 317, "transition": 2211, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher tastbar\nRR: 125/057"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2294, "fields": {"code": 1035, "state_id": 357, "transition": 2211, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 90 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 163/097"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2295, "fields": {"code": 1035, "state_id": 717, "transition": 2211, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2296, "fields": {"code": 1035, "state_id": 276, "transition": 2216, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 165/092"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2297, "fields": {"code": 1035, "state_id": 316, "transition": 2216, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 132/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2298, "fields": {"code": 1035, "state_id": 356, "transition": 2216, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 166/097"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2299, "fields": {"code": 1035, "state_id": 716, "transition": 2216, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 134/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2300, "fields": {"code": 1035, "state_id": 275, "transition": 2221, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 157/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2301, "fields": {"code": 1035, "state_id": 315, "transition": 2221, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 128/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2302, "fields": {"code": 1035, "state_id": 355, "transition": 2221, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 158/090"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2303, "fields": {"code": 1035, "state_id": 715, "transition": 2221, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 128/066"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2304, "fields": {"code": 1035, "state_id": 274, "transition": 2226, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 160/085"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2305, "fields": {"code": 1035, "state_id": 314, "transition": 2226, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 135/068"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2306, "fields": {"code": 1035, "state_id": 354, "transition": 2226, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 161/090"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2307, "fields": {"code": 1035, "state_id": 714, "transition": 2226, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 133/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2308, "fields": {"code": 1035, "state_id": 273, "transition": 2231, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 152/078"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2309, "fields": {"code": 1035, "state_id": 313, "transition": 2231, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2310, "fields": {"code": 1035, "state_id": 353, "transition": 2231, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 153/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2311, "fields": {"code": 1035, "state_id": 713, "transition": 2231, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 127/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2312, "fields": {"code": 1035, "state_id": 551, "transition": 2244, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2313, "fields": {"code": 1035, "state_id": 552, "transition": 2243, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2314, "fields": {"code": 1035, "state_id": 553, "transition": 2236, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 142/076"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2315, "fields": {"code": 1036, "state_id": 101, "transition": 2261, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2316, "fields": {"code": 1036, "state_id": 351, "transition": 2259, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2317, "fields": {"code": 1036, "state_id": 352, "transition": 2257, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2318, "fields": {"code": 1036, "state_id": 353, "transition": 2255, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2319, "fields": {"code": 1036, "state_id": 354, "transition": 2253, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2320, "fields": {"code": 1036, "state_id": 355, "transition": 2251, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2321, "fields": {"code": 1036, "state_id": 356, "transition": 2249, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2322, "fields": {"code": 1036, "state_id": 357, "transition": 2247, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2323, "fields": {"code": 1036, "state_id": 358, "transition": 2245, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2324, "fields": {"code": 1036, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2325, "fields": {"code": 1036, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2326, "fields": {"code": 1036, "state_id": 758, "transition": 2245, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 803, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2327, "fields": {"code": 1036, "state_id": 757, "transition": 2247, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2328, "fields": {"code": 1036, "state_id": 756, "transition": 2249, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 803, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2329, "fields": {"code": 1036, "state_id": 755, "transition": 2251, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2330, "fields": {"code": 1036, "state_id": 754, "transition": 2253, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 803, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2331, "fields": {"code": 1036, "state_id": 753, "transition": 2255, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2332, "fields": {"code": 1036, "state_id": 752, "transition": 2257, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 803, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2333, "fields": {"code": 1036, "state_id": 751, "transition": 2259, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2334, "fields": {"code": 1036, "state_id": 551, "transition": 2261, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2335, "fields": {"code": 1037, "state_id": 101, "transition": 2306, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2336, "fields": {"code": 1037, "state_id": 102, "transition": 2305, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2337, "fields": {"code": 1037, "state_id": 103, "transition": 2304, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2338, "fields": {"code": 1037, "state_id": 104, "transition": 2303, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2339, "fields": {"code": 1037, "state_id": 105, "transition": 2295, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 80 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 147/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2340, "fields": {"code": 1037, "state_id": 255, "transition": 2287, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 133/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2341, "fields": {"code": 1037, "state_id": 256, "transition": 2279, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 141/079"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2342, "fields": {"code": 1037, "state_id": 257, "transition": 2271, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2343, "fields": {"code": 1037, "state_id": 258, "transition": 2263, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 146/086"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2344, "fields": {"code": 1037, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 143/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2345, "fields": {"code": 1037, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\nsichtbare ,", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 80 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 138/056"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2346, "fields": {"code": 1037, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 143/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2347, "fields": {"code": 1037, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 87 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 148/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2348, "fields": {"code": 1037, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 148/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2349, "fields": {"code": 1037, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nsichtbare ,", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 75 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 143/056"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2350, "fields": {"code": 1037, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 138/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2351, "fields": {"code": 1037, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 86 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 143/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2352, "fields": {"code": 1037, "state_id": 278, "transition": 2263, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 82 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 145/062"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2353, "fields": {"code": 1037, "state_id": 298, "transition": 2263, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 146/086"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2354, "fields": {"code": 1037, "state_id": 318, "transition": 2263, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 88 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 153/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2355, "fields": {"code": 1037, "state_id": 338, "transition": 2263, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 151/086"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2356, "fields": {"code": 1037, "state_id": 358, "transition": 2263, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 77 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 150/062"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2357, "fields": {"code": 1037, "state_id": 738, "transition": 2263, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 141/086"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2358, "fields": {"code": 1037, "state_id": 758, "transition": 2263, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 87 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 148/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2359, "fields": {"code": 1037, "state_id": 277, "transition": 2271, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 82 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 141/061"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2360, "fields": {"code": 1037, "state_id": 297, "transition": 2271, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2361, "fields": {"code": 1037, "state_id": 317, "transition": 2271, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 87 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 147/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2362, "fields": {"code": 1037, "state_id": 337, "transition": 2271, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 143/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2363, "fields": {"code": 1037, "state_id": 357, "transition": 2271, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 77 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 146/061"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2364, "fields": {"code": 1037, "state_id": 737, "transition": 2271, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2365, "fields": {"code": 1037, "state_id": 757, "transition": 2271, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 86 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 142/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2366, "fields": {"code": 1037, "state_id": 276, "transition": 2279, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 84 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 148/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2367, "fields": {"code": 1037, "state_id": 296, "transition": 2279, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 141/079"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2368, "fields": {"code": 1037, "state_id": 316, "transition": 2279, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 88 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 152/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2369, "fields": {"code": 1037, "state_id": 336, "transition": 2279, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 146/079"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2370, "fields": {"code": 1037, "state_id": 356, "transition": 2279, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 79 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 153/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2371, "fields": {"code": 1037, "state_id": 736, "transition": 2279, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 136/079"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2372, "fields": {"code": 1037, "state_id": 756, "transition": 2279, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 87 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 147/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2373, "fields": {"code": 1037, "state_id": 275, "transition": 2287, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 84 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 144/066"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2374, "fields": {"code": 1037, "state_id": 295, "transition": 2287, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 133/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2375, "fields": {"code": 1037, "state_id": 315, "transition": 2287, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 87 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 146/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2376, "fields": {"code": 1037, "state_id": 335, "transition": 2287, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 138/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2377, "fields": {"code": 1037, "state_id": 355, "transition": 2287, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 79 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 149/066"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2378, "fields": {"code": 1037, "state_id": 735, "transition": 2287, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher tastbar\nRR: 128/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2379, "fields": {"code": 1037, "state_id": 755, "transition": 2287, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 86 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2380, "fields": {"code": 1037, "state_id": 551, "transition": 2310, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2381, "fields": {"code": 1037, "state_id": 552, "transition": 2309, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2382, "fields": {"code": 1037, "state_id": 553, "transition": 2308, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2383, "fields": {"code": 1037, "state_id": 554, "transition": 2307, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 127/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2384, "fields": {"code": 1037, "state_id": 555, "transition": 2295, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 81 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 142/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2385, "fields": {"code": 1038, "state_id": 101, "transition": 2327, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2386, "fields": {"code": 1038, "state_id": 351, "transition": 2325, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2387, "fields": {"code": 1038, "state_id": 352, "transition": 2323, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2388, "fields": {"code": 1038, "state_id": 353, "transition": 2321, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2389, "fields": {"code": 1038, "state_id": 354, "transition": 2319, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2390, "fields": {"code": 1038, "state_id": 355, "transition": 2317, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2391, "fields": {"code": 1038, "state_id": 356, "transition": 2315, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2392, "fields": {"code": 1038, "state_id": 357, "transition": 2313, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2393, "fields": {"code": 1038, "state_id": 358, "transition": 2311, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2394, "fields": {"code": 1038, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2395, "fields": {"code": 1038, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2396, "fields": {"code": 1038, "state_id": 758, "transition": 2311, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2397, "fields": {"code": 1038, "state_id": 757, "transition": 2313, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2398, "fields": {"code": 1038, "state_id": 756, "transition": 2315, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2399, "fields": {"code": 1038, "state_id": 755, "transition": 2317, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2400, "fields": {"code": 1038, "state_id": 754, "transition": 2319, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2401, "fields": {"code": 1038, "state_id": 753, "transition": 2321, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2402, "fields": {"code": 1038, "state_id": 752, "transition": 2323, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2403, "fields": {"code": 1038, "state_id": 751, "transition": 2325, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2404, "fields": {"code": 1038, "state_id": 551, "transition": 2327, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2405, "fields": {"code": 1039, "state_id": 101, "transition": 2345, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2406, "fields": {"code": 1039, "state_id": 351, "transition": 2343, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2407, "fields": {"code": 1039, "state_id": 352, "transition": 2341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2408, "fields": {"code": 1039, "state_id": 353, "transition": 2339, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2409, "fields": {"code": 1039, "state_id": 354, "transition": 2337, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2410, "fields": {"code": 1039, "state_id": 355, "transition": 2335, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2411, "fields": {"code": 1039, "state_id": 356, "transition": 2333, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2412, "fields": {"code": 1039, "state_id": 357, "transition": 2331, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2413, "fields": {"code": 1039, "state_id": 358, "transition": 2329, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2414, "fields": {"code": 1039, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2415, "fields": {"code": 1039, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2416, "fields": {"code": 1039, "state_id": 758, "transition": 2329, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2417, "fields": {"code": 1039, "state_id": 757, "transition": 2331, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2418, "fields": {"code": 1039, "state_id": 756, "transition": 2333, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2419, "fields": {"code": 1039, "state_id": 755, "transition": 2335, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2420, "fields": {"code": 1039, "state_id": 754, "transition": 2337, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2421, "fields": {"code": 1039, "state_id": 753, "transition": 2339, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2422, "fields": {"code": 1039, "state_id": 752, "transition": 2341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2423, "fields": {"code": 1039, "state_id": 751, "transition": 2343, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2424, "fields": {"code": 1039, "state_id": 551, "transition": 2345, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2425, "fields": {"code": 1040, "state_id": 101, "transition": 2363, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2426, "fields": {"code": 1040, "state_id": 351, "transition": 2361, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2427, "fields": {"code": 1040, "state_id": 352, "transition": 2359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2428, "fields": {"code": 1040, "state_id": 353, "transition": 2357, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2429, "fields": {"code": 1040, "state_id": 354, "transition": 2355, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2430, "fields": {"code": 1040, "state_id": 355, "transition": 2353, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2431, "fields": {"code": 1040, "state_id": 356, "transition": 2351, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2432, "fields": {"code": 1040, "state_id": 357, "transition": 2349, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2433, "fields": {"code": 1040, "state_id": 358, "transition": 2347, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2434, "fields": {"code": 1040, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2435, "fields": {"code": 1040, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2436, "fields": {"code": 1040, "state_id": 758, "transition": 2347, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2437, "fields": {"code": 1040, "state_id": 757, "transition": 2349, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2438, "fields": {"code": 1040, "state_id": 756, "transition": 2351, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2439, "fields": {"code": 1040, "state_id": 755, "transition": 2353, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2440, "fields": {"code": 1040, "state_id": 754, "transition": 2355, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2441, "fields": {"code": 1040, "state_id": 753, "transition": 2357, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2442, "fields": {"code": 1040, "state_id": 752, "transition": 2359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2443, "fields": {"code": 1040, "state_id": 751, "transition": 2361, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2444, "fields": {"code": 1040, "state_id": 551, "transition": 2363, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2445, "fields": {"code": 1041, "state_id": 101, "transition": 2393, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 161/091"}, "examination_codes": {"BZ": 907, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2446, "fields": {"code": 1041, "state_id": 102, "transition": 2392, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 167/095"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2447, "fields": {"code": 1041, "state_id": 103, "transition": 2391, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 162/092"}, "examination_codes": {"BZ": 907, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2448, "fields": {"code": 1041, "state_id": 104, "transition": 2390, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 168/096"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2449, "fields": {"code": 1041, "state_id": 105, "transition": 2389, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 163/093"}, "examination_codes": {"BZ": 907, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2450, "fields": {"code": 1041, "state_id": 106, "transition": 2383, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 169/097"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2451, "fields": {"code": 1041, "state_id": 236, "transition": 2377, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 173/101"}, "examination_codes": {"BZ": 904, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2452, "fields": {"code": 1041, "state_id": 237, "transition": 2371, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 168/098"}, "examination_codes": {"BZ": 908, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2453, "fields": {"code": 1041, "state_id": 238, "transition": 2365, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 174/102"}, "examination_codes": {"BZ": 909, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2454, "fields": {"code": 1041, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 169/099"}, "examination_codes": {"BZ": 908, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2455, "fields": {"code": 1041, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 181/103"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2456, "fields": {"code": 1041, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 169/099"}, "examination_codes": {"BZ": 908, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2457, "fields": {"code": 1041, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 181/103"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2458, "fields": {"code": 1041, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 169/099"}, "examination_codes": {"BZ": 908, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2459, "fields": {"code": 1041, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 181/103"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2460, "fields": {"code": 1041, "state_id": 278, "transition": 2365, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "bewusstlos, Streckkrämpfe auf Schmerzreiz", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 183/105"}, "examination_codes": {"BZ": 945, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2461, "fields": {"code": 1041, "state_id": 318, "transition": 2365, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 174/102"}, "examination_codes": {"BZ": 909, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2462, "fields": {"code": 1041, "state_id": 358, "transition": 2365, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, Streckkrämpfe auf Schmerzreiz", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 183/105"}, "examination_codes": {"BZ": 945, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2463, "fields": {"code": 1041, "state_id": 718, "transition": 2365, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 174/102"}, "examination_codes": {"BZ": 909, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2464, "fields": {"code": 1041, "state_id": 758, "transition": 2365, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 183/105"}, "examination_codes": {"BZ": 945, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2465, "fields": {"code": 1041, "state_id": 277, "transition": 2371, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "bewusstlos, Beugekrämpfe auf Schmerzreiz", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 174/100"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2466, "fields": {"code": 1041, "state_id": 317, "transition": 2371, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 168/098"}, "examination_codes": {"BZ": 908, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2467, "fields": {"code": 1041, "state_id": 357, "transition": 2371, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, Beugekrämpfe auf Schmerzreiz", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 174/100"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2468, "fields": {"code": 1041, "state_id": 717, "transition": 2371, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 168/098"}, "examination_codes": {"BZ": 908, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2469, "fields": {"code": 1041, "state_id": 757, "transition": 2371, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 174/100"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2470, "fields": {"code": 1041, "state_id": 276, "transition": 2377, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "bewusstlos, Beugeabwehr", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 176/102"}, "examination_codes": {"BZ": 945, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2471, "fields": {"code": 1041, "state_id": 316, "transition": 2377, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 173/101"}, "examination_codes": {"BZ": 904, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2472, "fields": {"code": 1041, "state_id": 356, "transition": 2377, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, Beugeabwehr", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 176/102"}, "examination_codes": {"BZ": 945, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2473, "fields": {"code": 1041, "state_id": 716, "transition": 2377, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 173/101"}, "examination_codes": {"BZ": 904, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2474, "fields": {"code": 1041, "state_id": 756, "transition": 2377, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 176/102"}, "examination_codes": {"BZ": 945, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2475, "fields": {"code": 1041, "state_id": 551, "transition": 2398, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 161/091"}, "examination_codes": {"BZ": 907, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2476, "fields": {"code": 1041, "state_id": 552, "transition": 2397, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 167/095"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2477, "fields": {"code": 1041, "state_id": 553, "transition": 2396, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 162/092"}, "examination_codes": {"BZ": 907, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2478, "fields": {"code": 1041, "state_id": 554, "transition": 2395, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 168/096"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2479, "fields": {"code": 1041, "state_id": 555, "transition": 2394, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 163/093"}, "examination_codes": {"BZ": 907, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2480, "fields": {"code": 1041, "state_id": 556, "transition": 2383, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 169/097"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.statetransition", "pk": 1, "fields": {"resulting_state": null, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2, "fields": {"resulting_state": 11, "next_state_transition": 3}}, {"model": "template.statetransition", "pk": 3, "fields": {"resulting_state": 12, "next_state_transition": 4}}, {"model": "template.statetransition", "pk": 4, "fields": {"resulting_state": 13, "next_state_transition": 5}}, {"model": "template.statetransition", "pk": 5, "fields": {"resulting_state": 14, "next_state_transition": 6}}, {"model": "template.statetransition", "pk": 6, "fields": {"resulting_state": 15, "next_state_transition": 7}}, {"model": "template.statetransition", "pk": 7, "fields": {"resulting_state": 16, "next_state_transition": 8}}, {"model": "template.statetransition", "pk": 8, "fields": {"resulting_state": 17, "next_state_transition": 9}}, {"model": "template.statetransition", "pk": 9, "fields": {"resulting_state": 18, "next_state_transition": 10}}, {"model": "template.statetransition", "pk": 10, "fields": {"resulting_state": 19, "next_state_transition": 11}}, {"model": "template.statetransition", "pk": 11, "fields": {"resulting_state": 20, "next_state_transition": 12}}, {"model": "template.statetransition", "pk": 12, "fields": {"resulting_state": 21, "next_state_transition": 13}}, {"model": "template.statetransition", "pk": 13, "fields": {"resulting_state": 22, "next_state_transition": 14}}, {"model": "template.statetransition", "pk": 14, "fields": {"resulting_state": 23, "next_state_transition": 15}}, {"model": "template.statetransition", "pk": 15, "fields": {"resulting_state": 24, "next_state_transition": 16}}, {"model": "template.statetransition", "pk": 16, "fields": {"resulting_state": 25, "next_state_transition": 17}}, {"model": "template.statetransition", "pk": 17, "fields": {"resulting_state": 26, "next_state_transition": 18}}, {"model": "template.statetransition", "pk": 18, "fields": {"resulting_state": 27, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 19, "fields": {"resulting_state": 10, "next_state_transition": 20}}, {"model": "template.statetransition", "pk": 20, "fields": {"resulting_state": 28, "next_state_transition": 21}}, {"model": "template.statetransition", "pk": 21, "fields": {"resulting_state": 29, "next_state_transition": 22}}, {"model": "template.statetransition", "pk": 22, "fields": {"resulting_state": 30, "next_state_transition": 23}}, {"model": "template.statetransition", "pk": 23, "fields": {"resulting_state": 31, "next_state_transition": 24}}, {"model": "template.statetransition", "pk": 24, "fields": {"resulting_state": 32, "next_state_transition": 25}}, {"model": "template.statetransition", "pk": 25, "fields": {"resulting_state": 33, "next_state_transition": 26}}, {"model": "template.statetransition", "pk": 26, "fields": {"resulting_state": 34, "next_state_transition": 27}}, {"model": "template.statetransition", "pk": 27, "fields": {"resulting_state": 35, "next_state_transition": 28}}, {"model": "template.statetransition", "pk": 28, "fields": {"resulting_state": 36, "next_state_transition": 29}}, {"model": "template.statetransition", "pk": 29, "fields": {"resulting_state": 37, "next_state_transition": 30}}, {"model": "template.statetransition", "pk": 30, "fields": {"resulting_state": 38, "next_state_transition": 31}}, {"model": "template.statetransition", "pk": 31, "fields": {"resulting_state": 39, "next_state_transition": 32}}, {"model": "template.statetransition", "pk": 32, "fields": {"resulting_state": 40, "next_state_transition": 33}}, {"model": "template.statetransition", "pk": 33, "fields": {"resulting_state": 41, "next_state_transition": 34}}, {"model": "template.statetransition", "pk": 34, "fields": {"resulting_state": 42, "next_state_transition": 35}}, {"model": "template.statetransition", "pk": 35, "fields": {"resulting_state": 43, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 36, "fields": {"resulting_state": 9, "next_state_transition": 37}}, {"model": "template.statetransition", "pk": 37, "fields": {"resulting_state": 44, "next_state_transition": 38}}, {"model": "template.statetransition", "pk": 38, "fields": {"resulting_state": 45, "next_state_transition": 39}}, {"model": "template.statetransition", "pk": 39, "fields": {"resulting_state": 46, "next_state_transition": 40}}, {"model": "template.statetransition", "pk": 40, "fields": {"resulting_state": 47, "next_state_transition": 41}}, {"model": "template.statetransition", "pk": 41, "fields": {"resulting_state": 48, "next_state_transition": 42}}, {"model": "template.statetransition", "pk": 42, "fields": {"resulting_state": 49, "next_state_transition": 43}}, {"model": "template.statetransition", "pk": 43, "fields": {"resulting_state": 50, "next_state_transition": 44}}, {"model": "template.statetransition", "pk": 44, "fields": {"resulting_state": 51, "next_state_transition": 45}}, {"model": "template.statetransition", "pk": 45, "fields": {"resulting_state": 52, "next_state_transition": 46}}, {"model": "template.statetransition", "pk": 46, "fields": {"resulting_state": 53, "next_state_transition": 47}}, {"model": "template.statetransition", "pk": 47, "fields": {"resulting_state": 54, "next_state_transition": 48}}, {"model": "template.statetransition", "pk": 48, "fields": {"resulting_state": 55, "next_state_transition": 49}}, {"model": "template.statetransition", "pk": 49, "fields": {"resulting_state": 56, "next_state_transition": 50}}, {"model": "template.statetransition", "pk": 50, "fields": {"resulting_state": 57, "next_state_transition": 51}}, {"model": "template.statetransition", "pk": 51, "fields": {"resulting_state": 58, "next_state_transition": 52}}, {"model": "template.statetransition", "pk": 52, "fields": {"resulting_state": 59, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 53, "fields": {"resulting_state": 8, "next_state_transition": 54}}, {"model": "template.statetransition", "pk": 54, "fields": {"resulting_state": 60, "next_state_transition": 55}}, {"model": "template.statetransition", "pk": 55, "fields": {"resulting_state": 61, "next_state_transition": 56}}, {"model": "template.statetransition", "pk": 56, "fields": {"resulting_state": 62, "next_state_transition": 57}}, {"model": "template.statetransition", "pk": 57, "fields": {"resulting_state": 63, "next_state_transition": 58}}, {"model": "template.statetransition", "pk": 58, "fields": {"resulting_state": 64, "next_state_transition": 59}}, {"model": "template.statetransition", "pk": 59, "fields": {"resulting_state": 65, "next_state_transition": 60}}, {"model": "template.statetransition", "pk": 60, "fields": {"resulting_state": 66, "next_state_transition": 61}}, {"model": "template.statetransition", "pk": 61, "fields": {"resulting_state": 67, "next_state_transition": 62}}, {"model": "template.statetransition", "pk": 62, "fields": {"resulting_state": 68, "next_state_transition": 63}}, {"model": "template.statetransition", "pk": 63, "fields": {"resulting_state": 69, "next_state_transition": 64}}, {"model": "template.statetransition", "pk": 64, "fields": {"resulting_state": 70, "next_state_transition": 65}}, {"model": "template.statetransition", "pk": 65, "fields": {"resulting_state": 71, "next_state_transition": 66}}, {"model": "template.statetransition", "pk": 66, "fields": {"resulting_state": 72, "next_state_transition": 67}}, {"model": "template.statetransition", "pk": 67, "fields": {"resulting_state": 73, "next_state_transition": 68}}, {"model": "template.statetransition", "pk": 68, "fields": {"resulting_state": 74, "next_state_transition": 69}}, {"model": "template.statetransition", "pk": 69, "fields": {"resulting_state": 75, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 70, "fields": {"resulting_state": 7, "next_state_transition": 71}}, {"model": "template.statetransition", "pk": 71, "fields": {"resulting_state": 76, "next_state_transition": 72}}, {"model": "template.statetransition", "pk": 72, "fields": {"resulting_state": 77, "next_state_transition": 73}}, {"model": "template.statetransition", "pk": 73, "fields": {"resulting_state": 78, "next_state_transition": 74}}, {"model": "template.statetransition", "pk": 74, "fields": {"resulting_state": 79, "next_state_transition": 75}}, {"model": "template.statetransition", "pk": 75, "fields": {"resulting_state": 80, "next_state_transition": 76}}, {"model": "template.statetransition", "pk": 76, "fields": {"resulting_state": 81, "next_state_transition": 77}}, {"model": "template.statetransition", "pk": 77, "fields": {"resulting_state": 82, "next_state_transition": 78}}, {"model": "template.statetransition", "pk": 78, "fields": {"resulting_state": 83, "next_state_transition": 79}}, {"model": "template.statetransition", "pk": 79, "fields": {"resulting_state": 84, "next_state_transition": 80}}, {"model": "template.statetransition", "pk": 80, "fields": {"resulting_state": 85, "next_state_transition": 81}}, {"model": "template.statetransition", "pk": 81, "fields": {"resulting_state": 86, "next_state_transition": 82}}, {"model": "template.statetransition", "pk": 82, "fields": {"resulting_state": 87, "next_state_transition": 83}}, {"model": "template.statetransition", "pk": 83, "fields": {"resulting_state": 88, "next_state_transition": 84}}, {"model": "template.statetransition", "pk": 84, "fields": {"resulting_state": 89, "next_state_transition": 85}}, {"model": "template.statetransition", "pk": 85, "fields": {"resulting_state": 90, "next_state_transition": 86}}, {"model": "template.statetransition", "pk": 86, "fields": {"resulting_state": 91, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 87, "fields": {"resulting_state": 6, "next_state_transition": 88}}, {"model": "template.statetransition", "pk": 88, "fields": {"resulting_state": 92, "next_state_transition": 89}}, {"model": "template.statetransition", "pk": 89, "fields": {"resulting_state": 93, "next_state_transition": 90}}, {"model": "template.statetransition", "pk": 90, "fields": {"resulting_state": 94, "next_state_transition": 91}}, {"model": "template.statetransition", "pk": 91, "fields": {"resulting_state": 95, "next_state_transition": 92}}, {"model": "template.statetransition", "pk": 92, "fields": {"resulting_state": 96, "next_state_transition": 93}}, {"model": "template.statetransition", "pk": 93, "fields": {"resulting_state": 97, "next_state_transition": 94}}, {"model": "template.statetransition", "pk": 94, "fields": {"resulting_state": 98, "next_state_transition": 95}}, {"model": "template.statetransition", "pk": 95, "fields": {"resulting_state": 99, "next_state_transition": 96}}, {"model": "template.statetransition", "pk": 96, "fields": {"resulting_state": 100, "next_state_transition": 97}}, {"model": "template.statetransition", "pk": 97, "fields": {"resulting_state": 101, "next_state_transition": 98}}, {"model": "template.statetransition", "pk": 98, "fields": {"resulting_state": 102, "next_state_transition": 99}}, {"model": "template.statetransition", "pk": 99, "fields": {"resulting_state": 103, "next_state_transition": 100}}, {"model": "template.statetransition", "pk": 100, "fields": {"resulting_state": 104, "next_state_transition": 101}}, {"model": "template.statetransition", "pk": 101, "fields": {"resulting_state": 105, "next_state_transition": 102}}, {"model": "template.statetransition", "pk": 102, "fields": {"resulting_state": 106, "next_state_transition": 103}}, {"model": "template.statetransition", "pk": 103, "fields": {"resulting_state": 107, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 104, "fields": {"resulting_state": 5, "next_state_transition": 105}}, {"model": "template.statetransition", "pk": 105, "fields": {"resulting_state": 108, "next_state_transition": 106}}, {"model": "template.statetransition", "pk": 106, "fields": {"resulting_state": 109, "next_state_transition": 107}}, {"model": "template.statetransition", "pk": 107, "fields": {"resulting_state": 110, "next_state_transition": 108}}, {"model": "template.statetransition", "pk": 108, "fields": {"resulting_state": 111, "next_state_transition": 109}}, {"model": "template.statetransition", "pk": 109, "fields": {"resulting_state": 112, "next_state_transition": 110}}, {"model": "template.statetransition", "pk": 110, "fields": {"resulting_state": 113, "next_state_transition": 111}}, {"model": "template.statetransition", "pk": 111, "fields": {"resulting_state": 114, "next_state_transition": 112}}, {"model": "template.statetransition", "pk": 112, "fields": {"resulting_state": 115, "next_state_transition": 113}}, {"model": "template.statetransition", "pk": 113, "fields": {"resulting_state": 116, "next_state_transition": 114}}, {"model": "template.statetransition", "pk": 114, "fields": {"resulting_state": 117, "next_state_transition": 115}}, {"model": "template.statetransition", "pk": 115, "fields": {"resulting_state": 118, "next_state_transition": 116}}, {"model": "template.statetransition", "pk": 116, "fields": {"resulting_state": 119, "next_state_transition": 117}}, {"model": "template.statetransition", "pk": 117, "fields": {"resulting_state": 120, "next_state_transition": 118}}, {"model": "template.statetransition", "pk": 118, "fields": {"resulting_state": 121, "next_state_transition": 119}}, {"model": "template.statetransition", "pk": 119, "fields": {"resulting_state": 122, "next_state_transition": 120}}, {"model": "template.statetransition", "pk": 120, "fields": {"resulting_state": 123, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 121, "fields": {"resulting_state": 4, "next_state_transition": 122}}, {"model": "template.statetransition", "pk": 122, "fields": {"resulting_state": 124, "next_state_transition": 123}}, {"model": "template.statetransition", "pk": 123, "fields": {"resulting_state": 125, "next_state_transition": 124}}, {"model": "template.statetransition", "pk": 124, "fields": {"resulting_state": 126, "next_state_transition": 125}}, {"model": "template.statetransition", "pk": 125, "fields": {"resulting_state": 127, "next_state_transition": 126}}, {"model": "template.statetransition", "pk": 126, "fields": {"resulting_state": 128, "next_state_transition": 127}}, {"model": "template.statetransition", "pk": 127, "fields": {"resulting_state": 129, "next_state_transition": 128}}, {"model": "template.statetransition", "pk": 128, "fields": {"resulting_state": 130, "next_state_transition": 129}}, {"model": "template.statetransition", "pk": 129, "fields": {"resulting_state": 131, "next_state_transition": 130}}, {"model": "template.statetransition", "pk": 130, "fields": {"resulting_state": 132, "next_state_transition": 131}}, {"model": "template.statetransition", "pk": 131, "fields": {"resulting_state": 133, "next_state_transition": 132}}, {"model": "template.statetransition", "pk": 132, "fields": {"resulting_state": 134, "next_state_transition": 133}}, {"model": "template.statetransition", "pk": 133, "fields": {"resulting_state": 135, "next_state_transition": 134}}, {"model": "template.statetransition", "pk": 134, "fields": {"resulting_state": 136, "next_state_transition": 135}}, {"model": "template.statetransition", "pk": 135, "fields": {"resulting_state": 137, "next_state_transition": 136}}, {"model": "template.statetransition", "pk": 136, "fields": {"resulting_state": 138, "next_state_transition": 137}}, {"model": "template.statetransition", "pk": 137, "fields": {"resulting_state": 139, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 138, "fields": {"resulting_state": 3, "next_state_transition": 139}}, {"model": "template.statetransition", "pk": 139, "fields": {"resulting_state": 140, "next_state_transition": 140}}, {"model": "template.statetransition", "pk": 140, "fields": {"resulting_state": 141, "next_state_transition": 141}}, {"model": "template.statetransition", "pk": 141, "fields": {"resulting_state": 142, "next_state_transition": 142}}, {"model": "template.statetransition", "pk": 142, "fields": {"resulting_state": 143, "next_state_transition": 143}}, {"model": "template.statetransition", "pk": 143, "fields": {"resulting_state": 144, "next_state_transition": 144}}, {"model": "template.statetransition", "pk": 144, "fields": {"resulting_state": 145, "next_state_transition": 145}}, {"model": "template.statetransition", "pk": 145, "fields": {"resulting_state": 146, "next_state_transition": 146}}, {"model": "template.statetransition", "pk": 146, "fields": {"resulting_state": 147, "next_state_transition": 147}}, {"model": "template.statetransition", "pk": 147, "fields": {"resulting_state": 148, "next_state_transition": 148}}, {"model": "template.statetransition", "pk": 148, "fields": {"resulting_state": 149, "next_state_transition": 149}}, {"model": "template.statetransition", "pk": 149, "fields": {"resulting_state": 150, "next_state_transition": 150}}, {"model": "template.statetransition", "pk": 150, "fields": {"resulting_state": 151, "next_state_transition": 151}}, {"model": "template.statetransition", "pk": 151, "fields": {"resulting_state": 152, "next_state_transition": 152}}, {"model": "template.statetransition", "pk": 152, "fields": {"resulting_state": 153, "next_state_transition": 153}}, {"model": "template.statetransition", "pk": 153, "fields": {"resulting_state": 154, "next_state_transition": 154}}, {"model": "template.statetransition", "pk": 154, "fields": {"resulting_state": 155, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 155, "fields": {"resulting_state": 166, "next_state_transition": 158}}, {"model": "template.statetransition", "pk": 156, "fields": {"resulting_state": 169, "next_state_transition": 155}}, {"model": "template.statetransition", "pk": 157, "fields": {"resulting_state": 168, "next_state_transition": 155}}, {"model": "template.statetransition", "pk": 158, "fields": {"resulting_state": 167, "next_state_transition": 159}}, {"model": "template.statetransition", "pk": 159, "fields": {"resulting_state": 170, "next_state_transition": 160}}, {"model": "template.statetransition", "pk": 160, "fields": {"resulting_state": 171, "next_state_transition": 161}}, {"model": "template.statetransition", "pk": 161, "fields": {"resulting_state": 172, "next_state_transition": 162}}, {"model": "template.statetransition", "pk": 162, "fields": {"resulting_state": 173, "next_state_transition": 163}}, {"model": "template.statetransition", "pk": 163, "fields": {"resulting_state": 174, "next_state_transition": 164}}, {"model": "template.statetransition", "pk": 164, "fields": {"resulting_state": 175, "next_state_transition": 165}}, {"model": "template.statetransition", "pk": 165, "fields": {"resulting_state": 176, "next_state_transition": 166}}, {"model": "template.statetransition", "pk": 166, "fields": {"resulting_state": 177, "next_state_transition": 167}}, {"model": "template.statetransition", "pk": 167, "fields": {"resulting_state": 178, "next_state_transition": 168}}, {"model": "template.statetransition", "pk": 168, "fields": {"resulting_state": 179, "next_state_transition": 169}}, {"model": "template.statetransition", "pk": 169, "fields": {"resulting_state": 180, "next_state_transition": 170}}, {"model": "template.statetransition", "pk": 170, "fields": {"resulting_state": 181, "next_state_transition": 171}}, {"model": "template.statetransition", "pk": 171, "fields": {"resulting_state": 182, "next_state_transition": 172}}, {"model": "template.statetransition", "pk": 172, "fields": {"resulting_state": 183, "next_state_transition": 173}}, {"model": "template.statetransition", "pk": 173, "fields": {"resulting_state": 184, "next_state_transition": 174}}, {"model": "template.statetransition", "pk": 174, "fields": {"resulting_state": 185, "next_state_transition": 175}}, {"model": "template.statetransition", "pk": 175, "fields": {"resulting_state": 186, "next_state_transition": 176}}, {"model": "template.statetransition", "pk": 176, "fields": {"resulting_state": 187, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 177, "fields": {"resulting_state": 165, "next_state_transition": 178}}, {"model": "template.statetransition", "pk": 178, "fields": {"resulting_state": 188, "next_state_transition": 179}}, {"model": "template.statetransition", "pk": 179, "fields": {"resulting_state": 189, "next_state_transition": 180}}, {"model": "template.statetransition", "pk": 180, "fields": {"resulting_state": 190, "next_state_transition": 181}}, {"model": "template.statetransition", "pk": 181, "fields": {"resulting_state": 191, "next_state_transition": 182}}, {"model": "template.statetransition", "pk": 182, "fields": {"resulting_state": 192, "next_state_transition": 183}}, {"model": "template.statetransition", "pk": 183, "fields": {"resulting_state": 193, "next_state_transition": 184}}, {"model": "template.statetransition", "pk": 184, "fields": {"resulting_state": 194, "next_state_transition": 185}}, {"model": "template.statetransition", "pk": 185, "fields": {"resulting_state": 195, "next_state_transition": 186}}, {"model": "template.statetransition", "pk": 186, "fields": {"resulting_state": 196, "next_state_transition": 187}}, {"model": "template.statetransition", "pk": 187, "fields": {"resulting_state": 197, "next_state_transition": 188}}, {"model": "template.statetransition", "pk": 188, "fields": {"resulting_state": 198, "next_state_transition": 189}}, {"model": "template.statetransition", "pk": 189, "fields": {"resulting_state": 199, "next_state_transition": 190}}, {"model": "template.statetransition", "pk": 190, "fields": {"resulting_state": 200, "next_state_transition": 191}}, {"model": "template.statetransition", "pk": 191, "fields": {"resulting_state": 201, "next_state_transition": 192}}, {"model": "template.statetransition", "pk": 192, "fields": {"resulting_state": 202, "next_state_transition": 193}}, {"model": "template.statetransition", "pk": 193, "fields": {"resulting_state": 203, "next_state_transition": 194}}, {"model": "template.statetransition", "pk": 194, "fields": {"resulting_state": 204, "next_state_transition": 195}}, {"model": "template.statetransition", "pk": 195, "fields": {"resulting_state": 205, "next_state_transition": 196}}, {"model": "template.statetransition", "pk": 196, "fields": {"resulting_state": 206, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 197, "fields": {"resulting_state": 164, "next_state_transition": 198}}, {"model": "template.statetransition", "pk": 198, "fields": {"resulting_state": 207, "next_state_transition": 199}}, {"model": "template.statetransition", "pk": 199, "fields": {"resulting_state": 208, "next_state_transition": 200}}, {"model": "template.statetransition", "pk": 200, "fields": {"resulting_state": 209, "next_state_transition": 201}}, {"model": "template.statetransition", "pk": 201, "fields": {"resulting_state": 210, "next_state_transition": 202}}, {"model": "template.statetransition", "pk": 202, "fields": {"resulting_state": 211, "next_state_transition": 203}}, {"model": "template.statetransition", "pk": 203, "fields": {"resulting_state": 212, "next_state_transition": 204}}, {"model": "template.statetransition", "pk": 204, "fields": {"resulting_state": 213, "next_state_transition": 205}}, {"model": "template.statetransition", "pk": 205, "fields": {"resulting_state": 214, "next_state_transition": 206}}, {"model": "template.statetransition", "pk": 206, "fields": {"resulting_state": 215, "next_state_transition": 207}}, {"model": "template.statetransition", "pk": 207, "fields": {"resulting_state": 216, "next_state_transition": 208}}, {"model": "template.statetransition", "pk": 208, "fields": {"resulting_state": 217, "next_state_transition": 209}}, {"model": "template.statetransition", "pk": 209, "fields": {"resulting_state": 218, "next_state_transition": 210}}, {"model": "template.statetransition", "pk": 210, "fields": {"resulting_state": 219, "next_state_transition": 211}}, {"model": "template.statetransition", "pk": 211, "fields": {"resulting_state": 220, "next_state_transition": 212}}, {"model": "template.statetransition", "pk": 212, "fields": {"resulting_state": 221, "next_state_transition": 213}}, {"model": "template.statetransition", "pk": 213, "fields": {"resulting_state": 222, "next_state_transition": 214}}, {"model": "template.statetransition", "pk": 214, "fields": {"resulting_state": 223, "next_state_transition": 215}}, {"model": "template.statetransition", "pk": 215, "fields": {"resulting_state": 224, "next_state_transition": 216}}, {"model": "template.statetransition", "pk": 216, "fields": {"resulting_state": 225, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 217, "fields": {"resulting_state": 163, "next_state_transition": 218}}, {"model": "template.statetransition", "pk": 218, "fields": {"resulting_state": 226, "next_state_transition": 219}}, {"model": "template.statetransition", "pk": 219, "fields": {"resulting_state": 227, "next_state_transition": 220}}, {"model": "template.statetransition", "pk": 220, "fields": {"resulting_state": 228, "next_state_transition": 221}}, {"model": "template.statetransition", "pk": 221, "fields": {"resulting_state": 229, "next_state_transition": 222}}, {"model": "template.statetransition", "pk": 222, "fields": {"resulting_state": 230, "next_state_transition": 223}}, {"model": "template.statetransition", "pk": 223, "fields": {"resulting_state": 231, "next_state_transition": 224}}, {"model": "template.statetransition", "pk": 224, "fields": {"resulting_state": 232, "next_state_transition": 225}}, {"model": "template.statetransition", "pk": 225, "fields": {"resulting_state": 233, "next_state_transition": 226}}, {"model": "template.statetransition", "pk": 226, "fields": {"resulting_state": 234, "next_state_transition": 227}}, {"model": "template.statetransition", "pk": 227, "fields": {"resulting_state": 235, "next_state_transition": 228}}, {"model": "template.statetransition", "pk": 228, "fields": {"resulting_state": 236, "next_state_transition": 229}}, {"model": "template.statetransition", "pk": 229, "fields": {"resulting_state": 237, "next_state_transition": 230}}, {"model": "template.statetransition", "pk": 230, "fields": {"resulting_state": 238, "next_state_transition": 231}}, {"model": "template.statetransition", "pk": 231, "fields": {"resulting_state": 239, "next_state_transition": 232}}, {"model": "template.statetransition", "pk": 232, "fields": {"resulting_state": 240, "next_state_transition": 233}}, {"model": "template.statetransition", "pk": 233, "fields": {"resulting_state": 241, "next_state_transition": 234}}, {"model": "template.statetransition", "pk": 234, "fields": {"resulting_state": 242, "next_state_transition": 235}}, {"model": "template.statetransition", "pk": 235, "fields": {"resulting_state": 243, "next_state_transition": 236}}, {"model": "template.statetransition", "pk": 236, "fields": {"resulting_state": 244, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 237, "fields": {"resulting_state": 162, "next_state_transition": 238}}, {"model": "template.statetransition", "pk": 238, "fields": {"resulting_state": 245, "next_state_transition": 239}}, {"model": "template.statetransition", "pk": 239, "fields": {"resulting_state": 246, "next_state_transition": 240}}, {"model": "template.statetransition", "pk": 240, "fields": {"resulting_state": 247, "next_state_transition": 241}}, {"model": "template.statetransition", "pk": 241, "fields": {"resulting_state": 248, "next_state_transition": 242}}, {"model": "template.statetransition", "pk": 242, "fields": {"resulting_state": 249, "next_state_transition": 243}}, {"model": "template.statetransition", "pk": 243, "fields": {"resulting_state": 250, "next_state_transition": 244}}, {"model": "template.statetransition", "pk": 244, "fields": {"resulting_state": 251, "next_state_transition": 245}}, {"model": "template.statetransition", "pk": 245, "fields": {"resulting_state": 252, "next_state_transition": 246}}, {"model": "template.statetransition", "pk": 246, "fields": {"resulting_state": 253, "next_state_transition": 247}}, {"model": "template.statetransition", "pk": 247, "fields": {"resulting_state": 254, "next_state_transition": 248}}, {"model": "template.statetransition", "pk": 248, "fields": {"resulting_state": 255, "next_state_transition": 249}}, {"model": "template.statetransition", "pk": 249, "fields": {"resulting_state": 256, "next_state_transition": 250}}, {"model": "template.statetransition", "pk": 250, "fields": {"resulting_state": 257, "next_state_transition": 251}}, {"model": "template.statetransition", "pk": 251, "fields": {"resulting_state": 258, "next_state_transition": 252}}, {"model": "template.statetransition", "pk": 252, "fields": {"resulting_state": 259, "next_state_transition": 253}}, {"model": "template.statetransition", "pk": 253, "fields": {"resulting_state": 260, "next_state_transition": 254}}, {"model": "template.statetransition", "pk": 254, "fields": {"resulting_state": 261, "next_state_transition": 255}}, {"model": "template.statetransition", "pk": 255, "fields": {"resulting_state": 262, "next_state_transition": 256}}, {"model": "template.statetransition", "pk": 256, "fields": {"resulting_state": 263, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 257, "fields": {"resulting_state": 161, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 258, "fields": {"resulting_state": 160, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 259, "fields": {"resulting_state": 159, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 260, "fields": {"resulting_state": 158, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 261, "fields": {"resulting_state": 268, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 262, "fields": {"resulting_state": 267, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 263, "fields": {"resulting_state": 266, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 264, "fields": {"resulting_state": 265, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 265, "fields": {"resulting_state": 278, "next_state_transition": 266}}, {"model": "template.statetransition", "pk": 266, "fields": {"resulting_state": 279, "next_state_transition": 267}}, {"model": "template.statetransition", "pk": 267, "fields": {"resulting_state": 280, "next_state_transition": 268}}, {"model": "template.statetransition", "pk": 268, "fields": {"resulting_state": 281, "next_state_transition": 269}}, {"model": "template.statetransition", "pk": 269, "fields": {"resulting_state": 282, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 270, "fields": {"resulting_state": 277, "next_state_transition": 271}}, {"model": "template.statetransition", "pk": 271, "fields": {"resulting_state": 283, "next_state_transition": 272}}, {"model": "template.statetransition", "pk": 272, "fields": {"resulting_state": 284, "next_state_transition": 273}}, {"model": "template.statetransition", "pk": 273, "fields": {"resulting_state": 285, "next_state_transition": 274}}, {"model": "template.statetransition", "pk": 274, "fields": {"resulting_state": 286, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 275, "fields": {"resulting_state": 276, "next_state_transition": 276}}, {"model": "template.statetransition", "pk": 276, "fields": {"resulting_state": 287, "next_state_transition": 277}}, {"model": "template.statetransition", "pk": 277, "fields": {"resulting_state": 288, "next_state_transition": 278}}, {"model": "template.statetransition", "pk": 278, "fields": {"resulting_state": 289, "next_state_transition": 279}}, {"model": "template.statetransition", "pk": 279, "fields": {"resulting_state": 290, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 280, "fields": {"resulting_state": 275, "next_state_transition": 281}}, {"model": "template.statetransition", "pk": 281, "fields": {"resulting_state": 291, "next_state_transition": 282}}, {"model": "template.statetransition", "pk": 282, "fields": {"resulting_state": 292, "next_state_transition": 283}}, {"model": "template.statetransition", "pk": 283, "fields": {"resulting_state": 293, "next_state_transition": 284}}, {"model": "template.statetransition", "pk": 284, "fields": {"resulting_state": 294, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 285, "fields": {"resulting_state": 274, "next_state_transition": 286}}, {"model": "template.statetransition", "pk": 286, "fields": {"resulting_state": 295, "next_state_transition": 287}}, {"model": "template.statetransition", "pk": 287, "fields": {"resulting_state": 296, "next_state_transition": 288}}, {"model": "template.statetransition", "pk": 288, "fields": {"resulting_state": 297, "next_state_transition": 289}}, {"model": "template.statetransition", "pk": 289, "fields": {"resulting_state": 298, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 290, "fields": {"resulting_state": 273, "next_state_transition": 291}}, {"model": "template.statetransition", "pk": 291, "fields": {"resulting_state": 299, "next_state_transition": 292}}, {"model": "template.statetransition", "pk": 292, "fields": {"resulting_state": 300, "next_state_transition": 293}}, {"model": "template.statetransition", "pk": 293, "fields": {"resulting_state": 301, "next_state_transition": 294}}, {"model": "template.statetransition", "pk": 294, "fields": {"resulting_state": 302, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 295, "fields": {"resulting_state": 272, "next_state_transition": 296}}, {"model": "template.statetransition", "pk": 296, "fields": {"resulting_state": 303, "next_state_transition": 297}}, {"model": "template.statetransition", "pk": 297, "fields": {"resulting_state": 304, "next_state_transition": 298}}, {"model": "template.statetransition", "pk": 298, "fields": {"resulting_state": 305, "next_state_transition": 299}}, {"model": "template.statetransition", "pk": 299, "fields": {"resulting_state": 306, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 300, "fields": {"resulting_state": 271, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 301, "fields": {"resulting_state": 270, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 302, "fields": {"resulting_state": 309, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 303, "fields": {"resulting_state": 308, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 304, "fields": {"resulting_state": 319, "next_state_transition": 305}}, {"model": "template.statetransition", "pk": 305, "fields": {"resulting_state": 320, "next_state_transition": 306}}, {"model": "template.statetransition", "pk": 306, "fields": {"resulting_state": 321, "next_state_transition": 307}}, {"model": "template.statetransition", "pk": 307, "fields": {"resulting_state": 322, "next_state_transition": 308}}, {"model": "template.statetransition", "pk": 308, "fields": {"resulting_state": 323, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 309, "fields": {"resulting_state": 318, "next_state_transition": 310}}, {"model": "template.statetransition", "pk": 310, "fields": {"resulting_state": 324, "next_state_transition": 311}}, {"model": "template.statetransition", "pk": 311, "fields": {"resulting_state": 325, "next_state_transition": 312}}, {"model": "template.statetransition", "pk": 312, "fields": {"resulting_state": 326, "next_state_transition": 313}}, {"model": "template.statetransition", "pk": 313, "fields": {"resulting_state": 327, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 314, "fields": {"resulting_state": 317, "next_state_transition": 315}}, {"model": "template.statetransition", "pk": 315, "fields": {"resulting_state": 328, "next_state_transition": 316}}, {"model": "template.statetransition", "pk": 316, "fields": {"resulting_state": 329, "next_state_transition": 317}}, {"model": "template.statetransition", "pk": 317, "fields": {"resulting_state": 330, "next_state_transition": 318}}, {"model": "template.statetransition", "pk": 318, "fields": {"resulting_state": 331, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 319, "fields": {"resulting_state": 316, "next_state_transition": 320}}, {"model": "template.statetransition", "pk": 320, "fields": {"resulting_state": 332, "next_state_transition": 321}}, {"model": "template.statetransition", "pk": 321, "fields": {"resulting_state": 333, "next_state_transition": 322}}, {"model": "template.statetransition", "pk": 322, "fields": {"resulting_state": 334, "next_state_transition": 323}}, {"model": "template.statetransition", "pk": 323, "fields": {"resulting_state": 335, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 324, "fields": {"resulting_state": 315, "next_state_transition": 325}}, {"model": "template.statetransition", "pk": 325, "fields": {"resulting_state": 336, "next_state_transition": 326}}, {"model": "template.statetransition", "pk": 326, "fields": {"resulting_state": 337, "next_state_transition": 327}}, {"model": "template.statetransition", "pk": 327, "fields": {"resulting_state": 338, "next_state_transition": 328}}, {"model": "template.statetransition", "pk": 328, "fields": {"resulting_state": 339, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 329, "fields": {"resulting_state": 314, "next_state_transition": 330}}, {"model": "template.statetransition", "pk": 330, "fields": {"resulting_state": 340, "next_state_transition": 331}}, {"model": "template.statetransition", "pk": 331, "fields": {"resulting_state": 341, "next_state_transition": 332}}, {"model": "template.statetransition", "pk": 332, "fields": {"resulting_state": 342, "next_state_transition": 333}}, {"model": "template.statetransition", "pk": 333, "fields": {"resulting_state": 343, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 334, "fields": {"resulting_state": 313, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 335, "fields": {"resulting_state": 312, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 336, "fields": {"resulting_state": 311, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 337, "fields": {"resulting_state": 347, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 338, "fields": {"resulting_state": 346, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 339, "fields": {"resulting_state": 345, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 340, "fields": {"resulting_state": 350, "next_state_transition": 597}}, {"model": "template.statetransition", "pk": 341, "fields": {"resulting_state": 359, "next_state_transition": 342}}, {"model": "template.statetransition", "pk": 342, "fields": {"resulting_state": 360, "next_state_transition": 343}}, {"model": "template.statetransition", "pk": 343, "fields": {"resulting_state": 361, "next_state_transition": 344}}, {"model": "template.statetransition", "pk": 344, "fields": {"resulting_state": 362, "next_state_transition": 345}}, {"model": "template.statetransition", "pk": 345, "fields": {"resulting_state": 363, "next_state_transition": 346}}, {"model": "template.statetransition", "pk": 346, "fields": {"resulting_state": 364, "next_state_transition": 347}}, {"model": "template.statetransition", "pk": 347, "fields": {"resulting_state": 365, "next_state_transition": 348}}, {"model": "template.statetransition", "pk": 348, "fields": {"resulting_state": 366, "next_state_transition": 349}}, {"model": "template.statetransition", "pk": 349, "fields": {"resulting_state": 367, "next_state_transition": 350}}, {"model": "template.statetransition", "pk": 350, "fields": {"resulting_state": 368, "next_state_transition": 351}}, {"model": "template.statetransition", "pk": 351, "fields": {"resulting_state": 369, "next_state_transition": 352}}, {"model": "template.statetransition", "pk": 352, "fields": {"resulting_state": 370, "next_state_transition": 353}}, {"model": "template.statetransition", "pk": 353, "fields": {"resulting_state": 371, "next_state_transition": 354}}, {"model": "template.statetransition", "pk": 354, "fields": {"resulting_state": 372, "next_state_transition": 355}}, {"model": "template.statetransition", "pk": 355, "fields": {"resulting_state": 373, "next_state_transition": 356}}, {"model": "template.statetransition", "pk": 356, "fields": {"resulting_state": 374, "next_state_transition": 357}}, {"model": "template.statetransition", "pk": 357, "fields": {"resulting_state": 375, "next_state_transition": 358}}, {"model": "template.statetransition", "pk": 358, "fields": {"resulting_state": 376, "next_state_transition": 359}}, {"model": "template.statetransition", "pk": 359, "fields": {"resulting_state": 377, "next_state_transition": 360}}, {"model": "template.statetransition", "pk": 360, "fields": {"resulting_state": 378, "next_state_transition": 361}}, {"model": "template.statetransition", "pk": 361, "fields": {"resulting_state": 379, "next_state_transition": 362}}, {"model": "template.statetransition", "pk": 362, "fields": {"resulting_state": 380, "next_state_transition": 363}}, {"model": "template.statetransition", "pk": 363, "fields": {"resulting_state": 381, "next_state_transition": 364}}, {"model": "template.statetransition", "pk": 364, "fields": {"resulting_state": 382, "next_state_transition": 365}}, {"model": "template.statetransition", "pk": 365, "fields": {"resulting_state": 383, "next_state_transition": 366}}, {"model": "template.statetransition", "pk": 366, "fields": {"resulting_state": 384, "next_state_transition": 367}}, {"model": "template.statetransition", "pk": 367, "fields": {"resulting_state": 385, "next_state_transition": 368}}, {"model": "template.statetransition", "pk": 368, "fields": {"resulting_state": 386, "next_state_transition": 369}}, {"model": "template.statetransition", "pk": 369, "fields": {"resulting_state": 387, "next_state_transition": 370}}, {"model": "template.statetransition", "pk": 370, "fields": {"resulting_state": 388, "next_state_transition": 371}}, {"model": "template.statetransition", "pk": 371, "fields": {"resulting_state": 389, "next_state_transition": 372}}, {"model": "template.statetransition", "pk": 372, "fields": {"resulting_state": 390, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 373, "fields": {"resulting_state": 358, "next_state_transition": 374}}, {"model": "template.statetransition", "pk": 374, "fields": {"resulting_state": 391, "next_state_transition": 375}}, {"model": "template.statetransition", "pk": 375, "fields": {"resulting_state": 392, "next_state_transition": 376}}, {"model": "template.statetransition", "pk": 376, "fields": {"resulting_state": 393, "next_state_transition": 377}}, {"model": "template.statetransition", "pk": 377, "fields": {"resulting_state": 394, "next_state_transition": 378}}, {"model": "template.statetransition", "pk": 378, "fields": {"resulting_state": 395, "next_state_transition": 379}}, {"model": "template.statetransition", "pk": 379, "fields": {"resulting_state": 396, "next_state_transition": 380}}, {"model": "template.statetransition", "pk": 380, "fields": {"resulting_state": 397, "next_state_transition": 381}}, {"model": "template.statetransition", "pk": 381, "fields": {"resulting_state": 398, "next_state_transition": 382}}, {"model": "template.statetransition", "pk": 382, "fields": {"resulting_state": 399, "next_state_transition": 383}}, {"model": "template.statetransition", "pk": 383, "fields": {"resulting_state": 400, "next_state_transition": 384}}, {"model": "template.statetransition", "pk": 384, "fields": {"resulting_state": 401, "next_state_transition": 385}}, {"model": "template.statetransition", "pk": 385, "fields": {"resulting_state": 402, "next_state_transition": 386}}, {"model": "template.statetransition", "pk": 386, "fields": {"resulting_state": 403, "next_state_transition": 387}}, {"model": "template.statetransition", "pk": 387, "fields": {"resulting_state": 404, "next_state_transition": 388}}, {"model": "template.statetransition", "pk": 388, "fields": {"resulting_state": 405, "next_state_transition": 389}}, {"model": "template.statetransition", "pk": 389, "fields": {"resulting_state": 406, "next_state_transition": 390}}, {"model": "template.statetransition", "pk": 390, "fields": {"resulting_state": 407, "next_state_transition": 391}}, {"model": "template.statetransition", "pk": 391, "fields": {"resulting_state": 408, "next_state_transition": 392}}, {"model": "template.statetransition", "pk": 392, "fields": {"resulting_state": 409, "next_state_transition": 393}}, {"model": "template.statetransition", "pk": 393, "fields": {"resulting_state": 410, "next_state_transition": 394}}, {"model": "template.statetransition", "pk": 394, "fields": {"resulting_state": 411, "next_state_transition": 395}}, {"model": "template.statetransition", "pk": 395, "fields": {"resulting_state": 412, "next_state_transition": 396}}, {"model": "template.statetransition", "pk": 396, "fields": {"resulting_state": 413, "next_state_transition": 397}}, {"model": "template.statetransition", "pk": 397, "fields": {"resulting_state": 414, "next_state_transition": 398}}, {"model": "template.statetransition", "pk": 398, "fields": {"resulting_state": 415, "next_state_transition": 399}}, {"model": "template.statetransition", "pk": 399, "fields": {"resulting_state": 416, "next_state_transition": 400}}, {"model": "template.statetransition", "pk": 400, "fields": {"resulting_state": 417, "next_state_transition": 401}}, {"model": "template.statetransition", "pk": 401, "fields": {"resulting_state": 418, "next_state_transition": 402}}, {"model": "template.statetransition", "pk": 402, "fields": {"resulting_state": 419, "next_state_transition": 403}}, {"model": "template.statetransition", "pk": 403, "fields": {"resulting_state": 420, "next_state_transition": 404}}, {"model": "template.statetransition", "pk": 404, "fields": {"resulting_state": 421, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 405, "fields": {"resulting_state": 357, "next_state_transition": 406}}, {"model": "template.statetransition", "pk": 406, "fields": {"resulting_state": 422, "next_state_transition": 407}}, {"model": "template.statetransition", "pk": 407, "fields": {"resulting_state": 423, "next_state_transition": 408}}, {"model": "template.statetransition", "pk": 408, "fields": {"resulting_state": 424, "next_state_transition": 409}}, {"model": "template.statetransition", "pk": 409, "fields": {"resulting_state": 425, "next_state_transition": 410}}, {"model": "template.statetransition", "pk": 410, "fields": {"resulting_state": 426, "next_state_transition": 411}}, {"model": "template.statetransition", "pk": 411, "fields": {"resulting_state": 427, "next_state_transition": 412}}, {"model": "template.statetransition", "pk": 412, "fields": {"resulting_state": 428, "next_state_transition": 413}}, {"model": "template.statetransition", "pk": 413, "fields": {"resulting_state": 429, "next_state_transition": 414}}, {"model": "template.statetransition", "pk": 414, "fields": {"resulting_state": 430, "next_state_transition": 415}}, {"model": "template.statetransition", "pk": 415, "fields": {"resulting_state": 431, "next_state_transition": 416}}, {"model": "template.statetransition", "pk": 416, "fields": {"resulting_state": 432, "next_state_transition": 417}}, {"model": "template.statetransition", "pk": 417, "fields": {"resulting_state": 433, "next_state_transition": 418}}, {"model": "template.statetransition", "pk": 418, "fields": {"resulting_state": 434, "next_state_transition": 419}}, {"model": "template.statetransition", "pk": 419, "fields": {"resulting_state": 435, "next_state_transition": 420}}, {"model": "template.statetransition", "pk": 420, "fields": {"resulting_state": 436, "next_state_transition": 421}}, {"model": "template.statetransition", "pk": 421, "fields": {"resulting_state": 437, "next_state_transition": 422}}, {"model": "template.statetransition", "pk": 422, "fields": {"resulting_state": 438, "next_state_transition": 423}}, {"model": "template.statetransition", "pk": 423, "fields": {"resulting_state": 439, "next_state_transition": 424}}, {"model": "template.statetransition", "pk": 424, "fields": {"resulting_state": 440, "next_state_transition": 425}}, {"model": "template.statetransition", "pk": 425, "fields": {"resulting_state": 441, "next_state_transition": 426}}, {"model": "template.statetransition", "pk": 426, "fields": {"resulting_state": 442, "next_state_transition": 427}}, {"model": "template.statetransition", "pk": 427, "fields": {"resulting_state": 443, "next_state_transition": 428}}, {"model": "template.statetransition", "pk": 428, "fields": {"resulting_state": 444, "next_state_transition": 429}}, {"model": "template.statetransition", "pk": 429, "fields": {"resulting_state": 445, "next_state_transition": 430}}, {"model": "template.statetransition", "pk": 430, "fields": {"resulting_state": 446, "next_state_transition": 431}}, {"model": "template.statetransition", "pk": 431, "fields": {"resulting_state": 447, "next_state_transition": 432}}, {"model": "template.statetransition", "pk": 432, "fields": {"resulting_state": 448, "next_state_transition": 433}}, {"model": "template.statetransition", "pk": 433, "fields": {"resulting_state": 449, "next_state_transition": 434}}, {"model": "template.statetransition", "pk": 434, "fields": {"resulting_state": 450, "next_state_transition": 435}}, {"model": "template.statetransition", "pk": 435, "fields": {"resulting_state": 451, "next_state_transition": 436}}, {"model": "template.statetransition", "pk": 436, "fields": {"resulting_state": 452, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 437, "fields": {"resulting_state": 356, "next_state_transition": 438}}, {"model": "template.statetransition", "pk": 438, "fields": {"resulting_state": 453, "next_state_transition": 439}}, {"model": "template.statetransition", "pk": 439, "fields": {"resulting_state": 454, "next_state_transition": 440}}, {"model": "template.statetransition", "pk": 440, "fields": {"resulting_state": 455, "next_state_transition": 441}}, {"model": "template.statetransition", "pk": 441, "fields": {"resulting_state": 456, "next_state_transition": 442}}, {"model": "template.statetransition", "pk": 442, "fields": {"resulting_state": 457, "next_state_transition": 443}}, {"model": "template.statetransition", "pk": 443, "fields": {"resulting_state": 458, "next_state_transition": 444}}, {"model": "template.statetransition", "pk": 444, "fields": {"resulting_state": 459, "next_state_transition": 445}}, {"model": "template.statetransition", "pk": 445, "fields": {"resulting_state": 460, "next_state_transition": 446}}, {"model": "template.statetransition", "pk": 446, "fields": {"resulting_state": 461, "next_state_transition": 447}}, {"model": "template.statetransition", "pk": 447, "fields": {"resulting_state": 462, "next_state_transition": 448}}, {"model": "template.statetransition", "pk": 448, "fields": {"resulting_state": 463, "next_state_transition": 449}}, {"model": "template.statetransition", "pk": 449, "fields": {"resulting_state": 464, "next_state_transition": 450}}, {"model": "template.statetransition", "pk": 450, "fields": {"resulting_state": 465, "next_state_transition": 451}}, {"model": "template.statetransition", "pk": 451, "fields": {"resulting_state": 466, "next_state_transition": 452}}, {"model": "template.statetransition", "pk": 452, "fields": {"resulting_state": 467, "next_state_transition": 453}}, {"model": "template.statetransition", "pk": 453, "fields": {"resulting_state": 468, "next_state_transition": 454}}, {"model": "template.statetransition", "pk": 454, "fields": {"resulting_state": 469, "next_state_transition": 455}}, {"model": "template.statetransition", "pk": 455, "fields": {"resulting_state": 470, "next_state_transition": 456}}, {"model": "template.statetransition", "pk": 456, "fields": {"resulting_state": 471, "next_state_transition": 457}}, {"model": "template.statetransition", "pk": 457, "fields": {"resulting_state": 472, "next_state_transition": 458}}, {"model": "template.statetransition", "pk": 458, "fields": {"resulting_state": 473, "next_state_transition": 459}}, {"model": "template.statetransition", "pk": 459, "fields": {"resulting_state": 474, "next_state_transition": 460}}, {"model": "template.statetransition", "pk": 460, "fields": {"resulting_state": 475, "next_state_transition": 461}}, {"model": "template.statetransition", "pk": 461, "fields": {"resulting_state": 476, "next_state_transition": 462}}, {"model": "template.statetransition", "pk": 462, "fields": {"resulting_state": 477, "next_state_transition": 463}}, {"model": "template.statetransition", "pk": 463, "fields": {"resulting_state": 478, "next_state_transition": 464}}, {"model": "template.statetransition", "pk": 464, "fields": {"resulting_state": 479, "next_state_transition": 465}}, {"model": "template.statetransition", "pk": 465, "fields": {"resulting_state": 480, "next_state_transition": 466}}, {"model": "template.statetransition", "pk": 466, "fields": {"resulting_state": 481, "next_state_transition": 467}}, {"model": "template.statetransition", "pk": 467, "fields": {"resulting_state": 482, "next_state_transition": 468}}, {"model": "template.statetransition", "pk": 468, "fields": {"resulting_state": 483, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 469, "fields": {"resulting_state": 355, "next_state_transition": 470}}, {"model": "template.statetransition", "pk": 470, "fields": {"resulting_state": 484, "next_state_transition": 471}}, {"model": "template.statetransition", "pk": 471, "fields": {"resulting_state": 485, "next_state_transition": 472}}, {"model": "template.statetransition", "pk": 472, "fields": {"resulting_state": 486, "next_state_transition": 473}}, {"model": "template.statetransition", "pk": 473, "fields": {"resulting_state": 487, "next_state_transition": 474}}, {"model": "template.statetransition", "pk": 474, "fields": {"resulting_state": 488, "next_state_transition": 475}}, {"model": "template.statetransition", "pk": 475, "fields": {"resulting_state": 489, "next_state_transition": 476}}, {"model": "template.statetransition", "pk": 476, "fields": {"resulting_state": 490, "next_state_transition": 477}}, {"model": "template.statetransition", "pk": 477, "fields": {"resulting_state": 491, "next_state_transition": 478}}, {"model": "template.statetransition", "pk": 478, "fields": {"resulting_state": 492, "next_state_transition": 479}}, {"model": "template.statetransition", "pk": 479, "fields": {"resulting_state": 493, "next_state_transition": 480}}, {"model": "template.statetransition", "pk": 480, "fields": {"resulting_state": 494, "next_state_transition": 481}}, {"model": "template.statetransition", "pk": 481, "fields": {"resulting_state": 495, "next_state_transition": 482}}, {"model": "template.statetransition", "pk": 482, "fields": {"resulting_state": 496, "next_state_transition": 483}}, {"model": "template.statetransition", "pk": 483, "fields": {"resulting_state": 497, "next_state_transition": 484}}, {"model": "template.statetransition", "pk": 484, "fields": {"resulting_state": 498, "next_state_transition": 485}}, {"model": "template.statetransition", "pk": 485, "fields": {"resulting_state": 499, "next_state_transition": 486}}, {"model": "template.statetransition", "pk": 486, "fields": {"resulting_state": 500, "next_state_transition": 487}}, {"model": "template.statetransition", "pk": 487, "fields": {"resulting_state": 501, "next_state_transition": 488}}, {"model": "template.statetransition", "pk": 488, "fields": {"resulting_state": 502, "next_state_transition": 489}}, {"model": "template.statetransition", "pk": 489, "fields": {"resulting_state": 503, "next_state_transition": 490}}, {"model": "template.statetransition", "pk": 490, "fields": {"resulting_state": 504, "next_state_transition": 491}}, {"model": "template.statetransition", "pk": 491, "fields": {"resulting_state": 505, "next_state_transition": 492}}, {"model": "template.statetransition", "pk": 492, "fields": {"resulting_state": 506, "next_state_transition": 493}}, {"model": "template.statetransition", "pk": 493, "fields": {"resulting_state": 507, "next_state_transition": 494}}, {"model": "template.statetransition", "pk": 494, "fields": {"resulting_state": 508, "next_state_transition": 495}}, {"model": "template.statetransition", "pk": 495, "fields": {"resulting_state": 509, "next_state_transition": 496}}, {"model": "template.statetransition", "pk": 496, "fields": {"resulting_state": 510, "next_state_transition": 497}}, {"model": "template.statetransition", "pk": 497, "fields": {"resulting_state": 511, "next_state_transition": 498}}, {"model": "template.statetransition", "pk": 498, "fields": {"resulting_state": 512, "next_state_transition": 499}}, {"model": "template.statetransition", "pk": 499, "fields": {"resulting_state": 513, "next_state_transition": 500}}, {"model": "template.statetransition", "pk": 500, "fields": {"resulting_state": 514, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 501, "fields": {"resulting_state": 354, "next_state_transition": 502}}, {"model": "template.statetransition", "pk": 502, "fields": {"resulting_state": 515, "next_state_transition": 503}}, {"model": "template.statetransition", "pk": 503, "fields": {"resulting_state": 516, "next_state_transition": 504}}, {"model": "template.statetransition", "pk": 504, "fields": {"resulting_state": 517, "next_state_transition": 505}}, {"model": "template.statetransition", "pk": 505, "fields": {"resulting_state": 518, "next_state_transition": 506}}, {"model": "template.statetransition", "pk": 506, "fields": {"resulting_state": 519, "next_state_transition": 507}}, {"model": "template.statetransition", "pk": 507, "fields": {"resulting_state": 520, "next_state_transition": 508}}, {"model": "template.statetransition", "pk": 508, "fields": {"resulting_state": 521, "next_state_transition": 509}}, {"model": "template.statetransition", "pk": 509, "fields": {"resulting_state": 522, "next_state_transition": 510}}, {"model": "template.statetransition", "pk": 510, "fields": {"resulting_state": 523, "next_state_transition": 511}}, {"model": "template.statetransition", "pk": 511, "fields": {"resulting_state": 524, "next_state_transition": 512}}, {"model": "template.statetransition", "pk": 512, "fields": {"resulting_state": 525, "next_state_transition": 513}}, {"model": "template.statetransition", "pk": 513, "fields": {"resulting_state": 526, "next_state_transition": 514}}, {"model": "template.statetransition", "pk": 514, "fields": {"resulting_state": 527, "next_state_transition": 515}}, {"model": "template.statetransition", "pk": 515, "fields": {"resulting_state": 528, "next_state_transition": 516}}, {"model": "template.statetransition", "pk": 516, "fields": {"resulting_state": 529, "next_state_transition": 517}}, {"model": "template.statetransition", "pk": 517, "fields": {"resulting_state": 530, "next_state_transition": 518}}, {"model": "template.statetransition", "pk": 518, "fields": {"resulting_state": 531, "next_state_transition": 519}}, {"model": "template.statetransition", "pk": 519, "fields": {"resulting_state": 532, "next_state_transition": 520}}, {"model": "template.statetransition", "pk": 520, "fields": {"resulting_state": 533, "next_state_transition": 521}}, {"model": "template.statetransition", "pk": 521, "fields": {"resulting_state": 534, "next_state_transition": 522}}, {"model": "template.statetransition", "pk": 522, "fields": {"resulting_state": 535, "next_state_transition": 523}}, {"model": "template.statetransition", "pk": 523, "fields": {"resulting_state": 536, "next_state_transition": 524}}, {"model": "template.statetransition", "pk": 524, "fields": {"resulting_state": 537, "next_state_transition": 525}}, {"model": "template.statetransition", "pk": 525, "fields": {"resulting_state": 538, "next_state_transition": 526}}, {"model": "template.statetransition", "pk": 526, "fields": {"resulting_state": 539, "next_state_transition": 527}}, {"model": "template.statetransition", "pk": 527, "fields": {"resulting_state": 540, "next_state_transition": 528}}, {"model": "template.statetransition", "pk": 528, "fields": {"resulting_state": 541, "next_state_transition": 529}}, {"model": "template.statetransition", "pk": 529, "fields": {"resulting_state": 542, "next_state_transition": 530}}, {"model": "template.statetransition", "pk": 530, "fields": {"resulting_state": 543, "next_state_transition": 531}}, {"model": "template.statetransition", "pk": 531, "fields": {"resulting_state": 544, "next_state_transition": 532}}, {"model": "template.statetransition", "pk": 532, "fields": {"resulting_state": 545, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 533, "fields": {"resulting_state": 353, "next_state_transition": 534}}, {"model": "template.statetransition", "pk": 534, "fields": {"resulting_state": 546, "next_state_transition": 535}}, {"model": "template.statetransition", "pk": 535, "fields": {"resulting_state": 547, "next_state_transition": 536}}, {"model": "template.statetransition", "pk": 536, "fields": {"resulting_state": 548, "next_state_transition": 537}}, {"model": "template.statetransition", "pk": 537, "fields": {"resulting_state": 549, "next_state_transition": 538}}, {"model": "template.statetransition", "pk": 538, "fields": {"resulting_state": 550, "next_state_transition": 539}}, {"model": "template.statetransition", "pk": 539, "fields": {"resulting_state": 551, "next_state_transition": 540}}, {"model": "template.statetransition", "pk": 540, "fields": {"resulting_state": 552, "next_state_transition": 541}}, {"model": "template.statetransition", "pk": 541, "fields": {"resulting_state": 553, "next_state_transition": 542}}, {"model": "template.statetransition", "pk": 542, "fields": {"resulting_state": 554, "next_state_transition": 543}}, {"model": "template.statetransition", "pk": 543, "fields": {"resulting_state": 555, "next_state_transition": 544}}, {"model": "template.statetransition", "pk": 544, "fields": {"resulting_state": 556, "next_state_transition": 545}}, {"model": "template.statetransition", "pk": 545, "fields": {"resulting_state": 557, "next_state_transition": 546}}, {"model": "template.statetransition", "pk": 546, "fields": {"resulting_state": 558, "next_state_transition": 547}}, {"model": "template.statetransition", "pk": 547, "fields": {"resulting_state": 559, "next_state_transition": 548}}, {"model": "template.statetransition", "pk": 548, "fields": {"resulting_state": 560, "next_state_transition": 549}}, {"model": "template.statetransition", "pk": 549, "fields": {"resulting_state": 561, "next_state_transition": 550}}, {"model": "template.statetransition", "pk": 550, "fields": {"resulting_state": 562, "next_state_transition": 551}}, {"model": "template.statetransition", "pk": 551, "fields": {"resulting_state": 563, "next_state_transition": 552}}, {"model": "template.statetransition", "pk": 552, "fields": {"resulting_state": 564, "next_state_transition": 553}}, {"model": "template.statetransition", "pk": 553, "fields": {"resulting_state": 565, "next_state_transition": 554}}, {"model": "template.statetransition", "pk": 554, "fields": {"resulting_state": 566, "next_state_transition": 555}}, {"model": "template.statetransition", "pk": 555, "fields": {"resulting_state": 567, "next_state_transition": 556}}, {"model": "template.statetransition", "pk": 556, "fields": {"resulting_state": 568, "next_state_transition": 557}}, {"model": "template.statetransition", "pk": 557, "fields": {"resulting_state": 569, "next_state_transition": 558}}, {"model": "template.statetransition", "pk": 558, "fields": {"resulting_state": 570, "next_state_transition": 559}}, {"model": "template.statetransition", "pk": 559, "fields": {"resulting_state": 571, "next_state_transition": 560}}, {"model": "template.statetransition", "pk": 560, "fields": {"resulting_state": 572, "next_state_transition": 561}}, {"model": "template.statetransition", "pk": 561, "fields": {"resulting_state": 573, "next_state_transition": 562}}, {"model": "template.statetransition", "pk": 562, "fields": {"resulting_state": 574, "next_state_transition": 563}}, {"model": "template.statetransition", "pk": 563, "fields": {"resulting_state": 575, "next_state_transition": 564}}, {"model": "template.statetransition", "pk": 564, "fields": {"resulting_state": 576, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 565, "fields": {"resulting_state": 352, "next_state_transition": 566}}, {"model": "template.statetransition", "pk": 566, "fields": {"resulting_state": 577, "next_state_transition": 567}}, {"model": "template.statetransition", "pk": 567, "fields": {"resulting_state": 578, "next_state_transition": 568}}, {"model": "template.statetransition", "pk": 568, "fields": {"resulting_state": 579, "next_state_transition": 569}}, {"model": "template.statetransition", "pk": 569, "fields": {"resulting_state": 580, "next_state_transition": 570}}, {"model": "template.statetransition", "pk": 570, "fields": {"resulting_state": 581, "next_state_transition": 571}}, {"model": "template.statetransition", "pk": 571, "fields": {"resulting_state": 582, "next_state_transition": 572}}, {"model": "template.statetransition", "pk": 572, "fields": {"resulting_state": 583, "next_state_transition": 573}}, {"model": "template.statetransition", "pk": 573, "fields": {"resulting_state": 584, "next_state_transition": 574}}, {"model": "template.statetransition", "pk": 574, "fields": {"resulting_state": 585, "next_state_transition": 575}}, {"model": "template.statetransition", "pk": 575, "fields": {"resulting_state": 586, "next_state_transition": 576}}, {"model": "template.statetransition", "pk": 576, "fields": {"resulting_state": 587, "next_state_transition": 577}}, {"model": "template.statetransition", "pk": 577, "fields": {"resulting_state": 588, "next_state_transition": 578}}, {"model": "template.statetransition", "pk": 578, "fields": {"resulting_state": 589, "next_state_transition": 579}}, {"model": "template.statetransition", "pk": 579, "fields": {"resulting_state": 590, "next_state_transition": 580}}, {"model": "template.statetransition", "pk": 580, "fields": {"resulting_state": 591, "next_state_transition": 581}}, {"model": "template.statetransition", "pk": 581, "fields": {"resulting_state": 592, "next_state_transition": 582}}, {"model": "template.statetransition", "pk": 582, "fields": {"resulting_state": 593, "next_state_transition": 583}}, {"model": "template.statetransition", "pk": 583, "fields": {"resulting_state": 594, "next_state_transition": 584}}, {"model": "template.statetransition", "pk": 584, "fields": {"resulting_state": 595, "next_state_transition": 585}}, {"model": "template.statetransition", "pk": 585, "fields": {"resulting_state": 596, "next_state_transition": 586}}, {"model": "template.statetransition", "pk": 586, "fields": {"resulting_state": 597, "next_state_transition": 587}}, {"model": "template.statetransition", "pk": 587, "fields": {"resulting_state": 598, "next_state_transition": 588}}, {"model": "template.statetransition", "pk": 588, "fields": {"resulting_state": 599, "next_state_transition": 589}}, {"model": "template.statetransition", "pk": 589, "fields": {"resulting_state": 600, "next_state_transition": 590}}, {"model": "template.statetransition", "pk": 590, "fields": {"resulting_state": 601, "next_state_transition": 591}}, {"model": "template.statetransition", "pk": 591, "fields": {"resulting_state": 602, "next_state_transition": 592}}, {"model": "template.statetransition", "pk": 592, "fields": {"resulting_state": 603, "next_state_transition": 593}}, {"model": "template.statetransition", "pk": 593, "fields": {"resulting_state": 604, "next_state_transition": 594}}, {"model": "template.statetransition", "pk": 594, "fields": {"resulting_state": 605, "next_state_transition": 595}}, {"model": "template.statetransition", "pk": 595, "fields": {"resulting_state": 606, "next_state_transition": 596}}, {"model": "template.statetransition", "pk": 596, "fields": {"resulting_state": 607, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 597, "fields": {"resulting_state": 351, "next_state_transition": 598}}, {"model": "template.statetransition", "pk": 598, "fields": {"resulting_state": 608, "next_state_transition": 599}}, {"model": "template.statetransition", "pk": 599, "fields": {"resulting_state": 609, "next_state_transition": 600}}, {"model": "template.statetransition", "pk": 600, "fields": {"resulting_state": 610, "next_state_transition": 601}}, {"model": "template.statetransition", "pk": 601, "fields": {"resulting_state": 611, "next_state_transition": 602}}, {"model": "template.statetransition", "pk": 602, "fields": {"resulting_state": 612, "next_state_transition": 603}}, {"model": "template.statetransition", "pk": 603, "fields": {"resulting_state": 613, "next_state_transition": 604}}, {"model": "template.statetransition", "pk": 604, "fields": {"resulting_state": 614, "next_state_transition": 605}}, {"model": "template.statetransition", "pk": 605, "fields": {"resulting_state": 615, "next_state_transition": 606}}, {"model": "template.statetransition", "pk": 606, "fields": {"resulting_state": 616, "next_state_transition": 607}}, {"model": "template.statetransition", "pk": 607, "fields": {"resulting_state": 617, "next_state_transition": 608}}, {"model": "template.statetransition", "pk": 608, "fields": {"resulting_state": 618, "next_state_transition": 609}}, {"model": "template.statetransition", "pk": 609, "fields": {"resulting_state": 619, "next_state_transition": 610}}, {"model": "template.statetransition", "pk": 610, "fields": {"resulting_state": 620, "next_state_transition": 611}}, {"model": "template.statetransition", "pk": 611, "fields": {"resulting_state": 621, "next_state_transition": 612}}, {"model": "template.statetransition", "pk": 612, "fields": {"resulting_state": 622, "next_state_transition": 613}}, {"model": "template.statetransition", "pk": 613, "fields": {"resulting_state": 623, "next_state_transition": 614}}, {"model": "template.statetransition", "pk": 614, "fields": {"resulting_state": 624, "next_state_transition": 615}}, {"model": "template.statetransition", "pk": 615, "fields": {"resulting_state": 625, "next_state_transition": 616}}, {"model": "template.statetransition", "pk": 616, "fields": {"resulting_state": 626, "next_state_transition": 617}}, {"model": "template.statetransition", "pk": 617, "fields": {"resulting_state": 627, "next_state_transition": 618}}, {"model": "template.statetransition", "pk": 618, "fields": {"resulting_state": 628, "next_state_transition": 619}}, {"model": "template.statetransition", "pk": 619, "fields": {"resulting_state": 629, "next_state_transition": 620}}, {"model": "template.statetransition", "pk": 620, "fields": {"resulting_state": 630, "next_state_transition": 621}}, {"model": "template.statetransition", "pk": 621, "fields": {"resulting_state": 631, "next_state_transition": 622}}, {"model": "template.statetransition", "pk": 622, "fields": {"resulting_state": 632, "next_state_transition": 623}}, {"model": "template.statetransition", "pk": 623, "fields": {"resulting_state": 633, "next_state_transition": 624}}, {"model": "template.statetransition", "pk": 624, "fields": {"resulting_state": 634, "next_state_transition": 625}}, {"model": "template.statetransition", "pk": 625, "fields": {"resulting_state": 635, "next_state_transition": 626}}, {"model": "template.statetransition", "pk": 626, "fields": {"resulting_state": 636, "next_state_transition": 627}}, {"model": "template.statetransition", "pk": 627, "fields": {"resulting_state": 637, "next_state_transition": 628}}, {"model": "template.statetransition", "pk": 628, "fields": {"resulting_state": 638, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 629, "fields": {"resulting_state": 349, "next_state_transition": 597}}, {"model": "template.statetransition", "pk": 630, "fields": {"resulting_state": 649, "next_state_transition": 632}}, {"model": "template.statetransition", "pk": 631, "fields": {"resulting_state": 651, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 632, "fields": {"resulting_state": 650, "next_state_transition": 633}}, {"model": "template.statetransition", "pk": 633, "fields": {"resulting_state": 652, "next_state_transition": 634}}, {"model": "template.statetransition", "pk": 634, "fields": {"resulting_state": 653, "next_state_transition": 635}}, {"model": "template.statetransition", "pk": 635, "fields": {"resulting_state": 654, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 636, "fields": {"resulting_state": 648, "next_state_transition": 637}}, {"model": "template.statetransition", "pk": 637, "fields": {"resulting_state": 655, "next_state_transition": 638}}, {"model": "template.statetransition", "pk": 638, "fields": {"resulting_state": 656, "next_state_transition": 639}}, {"model": "template.statetransition", "pk": 639, "fields": {"resulting_state": 657, "next_state_transition": 640}}, {"model": "template.statetransition", "pk": 640, "fields": {"resulting_state": 658, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 641, "fields": {"resulting_state": 647, "next_state_transition": 642}}, {"model": "template.statetransition", "pk": 642, "fields": {"resulting_state": 659, "next_state_transition": 643}}, {"model": "template.statetransition", "pk": 643, "fields": {"resulting_state": 660, "next_state_transition": 644}}, {"model": "template.statetransition", "pk": 644, "fields": {"resulting_state": 661, "next_state_transition": 645}}, {"model": "template.statetransition", "pk": 645, "fields": {"resulting_state": 662, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 646, "fields": {"resulting_state": 646, "next_state_transition": 647}}, {"model": "template.statetransition", "pk": 647, "fields": {"resulting_state": 663, "next_state_transition": 648}}, {"model": "template.statetransition", "pk": 648, "fields": {"resulting_state": 664, "next_state_transition": 649}}, {"model": "template.statetransition", "pk": 649, "fields": {"resulting_state": 665, "next_state_transition": 650}}, {"model": "template.statetransition", "pk": 650, "fields": {"resulting_state": 666, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 651, "fields": {"resulting_state": 645, "next_state_transition": 652}}, {"model": "template.statetransition", "pk": 652, "fields": {"resulting_state": 667, "next_state_transition": 653}}, {"model": "template.statetransition", "pk": 653, "fields": {"resulting_state": 668, "next_state_transition": 654}}, {"model": "template.statetransition", "pk": 654, "fields": {"resulting_state": 669, "next_state_transition": 655}}, {"model": "template.statetransition", "pk": 655, "fields": {"resulting_state": 670, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 656, "fields": {"resulting_state": 644, "next_state_transition": 657}}, {"model": "template.statetransition", "pk": 657, "fields": {"resulting_state": 671, "next_state_transition": 658}}, {"model": "template.statetransition", "pk": 658, "fields": {"resulting_state": 672, "next_state_transition": 659}}, {"model": "template.statetransition", "pk": 659, "fields": {"resulting_state": 673, "next_state_transition": 660}}, {"model": "template.statetransition", "pk": 660, "fields": {"resulting_state": 674, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 661, "fields": {"resulting_state": 643, "next_state_transition": 662}}, {"model": "template.statetransition", "pk": 662, "fields": {"resulting_state": 675, "next_state_transition": 663}}, {"model": "template.statetransition", "pk": 663, "fields": {"resulting_state": 676, "next_state_transition": 664}}, {"model": "template.statetransition", "pk": 664, "fields": {"resulting_state": 677, "next_state_transition": 665}}, {"model": "template.statetransition", "pk": 665, "fields": {"resulting_state": 678, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 666, "fields": {"resulting_state": 642, "next_state_transition": 667}}, {"model": "template.statetransition", "pk": 667, "fields": {"resulting_state": 679, "next_state_transition": 668}}, {"model": "template.statetransition", "pk": 668, "fields": {"resulting_state": 680, "next_state_transition": 669}}, {"model": "template.statetransition", "pk": 669, "fields": {"resulting_state": 681, "next_state_transition": 670}}, {"model": "template.statetransition", "pk": 670, "fields": {"resulting_state": 682, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 671, "fields": {"resulting_state": 641, "next_state_transition": 672}}, {"model": "template.statetransition", "pk": 672, "fields": {"resulting_state": 683, "next_state_transition": 673}}, {"model": "template.statetransition", "pk": 673, "fields": {"resulting_state": 684, "next_state_transition": 674}}, {"model": "template.statetransition", "pk": 674, "fields": {"resulting_state": 685, "next_state_transition": 675}}, {"model": "template.statetransition", "pk": 675, "fields": {"resulting_state": 686, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 676, "fields": {"resulting_state": 697, "next_state_transition": 677}}, {"model": "template.statetransition", "pk": 677, "fields": {"resulting_state": 698, "next_state_transition": 678}}, {"model": "template.statetransition", "pk": 678, "fields": {"resulting_state": 699, "next_state_transition": 679}}, {"model": "template.statetransition", "pk": 679, "fields": {"resulting_state": 700, "next_state_transition": 680}}, {"model": "template.statetransition", "pk": 680, "fields": {"resulting_state": 701, "next_state_transition": 681}}, {"model": "template.statetransition", "pk": 681, "fields": {"resulting_state": 702, "next_state_transition": 682}}, {"model": "template.statetransition", "pk": 682, "fields": {"resulting_state": 703, "next_state_transition": 683}}, {"model": "template.statetransition", "pk": 683, "fields": {"resulting_state": 704, "next_state_transition": 684}}, {"model": "template.statetransition", "pk": 684, "fields": {"resulting_state": 705, "next_state_transition": 685}}, {"model": "template.statetransition", "pk": 685, "fields": {"resulting_state": 706, "next_state_transition": 686}}, {"model": "template.statetransition", "pk": 686, "fields": {"resulting_state": 707, "next_state_transition": 687}}, {"model": "template.statetransition", "pk": 687, "fields": {"resulting_state": 708, "next_state_transition": 688}}, {"model": "template.statetransition", "pk": 688, "fields": {"resulting_state": 709, "next_state_transition": 689}}, {"model": "template.statetransition", "pk": 689, "fields": {"resulting_state": 710, "next_state_transition": 690}}, {"model": "template.statetransition", "pk": 690, "fields": {"resulting_state": 711, "next_state_transition": 691}}, {"model": "template.statetransition", "pk": 691, "fields": {"resulting_state": 712, "next_state_transition": 692}}, {"model": "template.statetransition", "pk": 692, "fields": {"resulting_state": 713, "next_state_transition": 693}}, {"model": "template.statetransition", "pk": 693, "fields": {"resulting_state": 714, "next_state_transition": 694}}, {"model": "template.statetransition", "pk": 694, "fields": {"resulting_state": 715, "next_state_transition": 695}}, {"model": "template.statetransition", "pk": 695, "fields": {"resulting_state": 716, "next_state_transition": 696}}, {"model": "template.statetransition", "pk": 696, "fields": {"resulting_state": 717, "next_state_transition": 697}}, {"model": "template.statetransition", "pk": 697, "fields": {"resulting_state": 718, "next_state_transition": 698}}, {"model": "template.statetransition", "pk": 698, "fields": {"resulting_state": 719, "next_state_transition": 699}}, {"model": "template.statetransition", "pk": 699, "fields": {"resulting_state": 720, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 700, "fields": {"resulting_state": 696, "next_state_transition": 701}}, {"model": "template.statetransition", "pk": 701, "fields": {"resulting_state": 721, "next_state_transition": 702}}, {"model": "template.statetransition", "pk": 702, "fields": {"resulting_state": 722, "next_state_transition": 703}}, {"model": "template.statetransition", "pk": 703, "fields": {"resulting_state": 723, "next_state_transition": 704}}, {"model": "template.statetransition", "pk": 704, "fields": {"resulting_state": 724, "next_state_transition": 705}}, {"model": "template.statetransition", "pk": 705, "fields": {"resulting_state": 725, "next_state_transition": 706}}, {"model": "template.statetransition", "pk": 706, "fields": {"resulting_state": 726, "next_state_transition": 707}}, {"model": "template.statetransition", "pk": 707, "fields": {"resulting_state": 727, "next_state_transition": 708}}, {"model": "template.statetransition", "pk": 708, "fields": {"resulting_state": 728, "next_state_transition": 709}}, {"model": "template.statetransition", "pk": 709, "fields": {"resulting_state": 729, "next_state_transition": 710}}, {"model": "template.statetransition", "pk": 710, "fields": {"resulting_state": 730, "next_state_transition": 711}}, {"model": "template.statetransition", "pk": 711, "fields": {"resulting_state": 731, "next_state_transition": 712}}, {"model": "template.statetransition", "pk": 712, "fields": {"resulting_state": 732, "next_state_transition": 713}}, {"model": "template.statetransition", "pk": 713, "fields": {"resulting_state": 733, "next_state_transition": 714}}, {"model": "template.statetransition", "pk": 714, "fields": {"resulting_state": 734, "next_state_transition": 715}}, {"model": "template.statetransition", "pk": 715, "fields": {"resulting_state": 735, "next_state_transition": 716}}, {"model": "template.statetransition", "pk": 716, "fields": {"resulting_state": 736, "next_state_transition": 717}}, {"model": "template.statetransition", "pk": 717, "fields": {"resulting_state": 737, "next_state_transition": 718}}, {"model": "template.statetransition", "pk": 718, "fields": {"resulting_state": 738, "next_state_transition": 719}}, {"model": "template.statetransition", "pk": 719, "fields": {"resulting_state": 739, "next_state_transition": 720}}, {"model": "template.statetransition", "pk": 720, "fields": {"resulting_state": 740, "next_state_transition": 721}}, {"model": "template.statetransition", "pk": 721, "fields": {"resulting_state": 741, "next_state_transition": 722}}, {"model": "template.statetransition", "pk": 722, "fields": {"resulting_state": 742, "next_state_transition": 723}}, {"model": "template.statetransition", "pk": 723, "fields": {"resulting_state": 743, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 724, "fields": {"resulting_state": 695, "next_state_transition": 725}}, {"model": "template.statetransition", "pk": 725, "fields": {"resulting_state": 744, "next_state_transition": 726}}, {"model": "template.statetransition", "pk": 726, "fields": {"resulting_state": 745, "next_state_transition": 727}}, {"model": "template.statetransition", "pk": 727, "fields": {"resulting_state": 746, "next_state_transition": 728}}, {"model": "template.statetransition", "pk": 728, "fields": {"resulting_state": 747, "next_state_transition": 729}}, {"model": "template.statetransition", "pk": 729, "fields": {"resulting_state": 748, "next_state_transition": 730}}, {"model": "template.statetransition", "pk": 730, "fields": {"resulting_state": 749, "next_state_transition": 731}}, {"model": "template.statetransition", "pk": 731, "fields": {"resulting_state": 750, "next_state_transition": 732}}, {"model": "template.statetransition", "pk": 732, "fields": {"resulting_state": 751, "next_state_transition": 733}}, {"model": "template.statetransition", "pk": 733, "fields": {"resulting_state": 752, "next_state_transition": 734}}, {"model": "template.statetransition", "pk": 734, "fields": {"resulting_state": 753, "next_state_transition": 735}}, {"model": "template.statetransition", "pk": 735, "fields": {"resulting_state": 754, "next_state_transition": 736}}, {"model": "template.statetransition", "pk": 736, "fields": {"resulting_state": 755, "next_state_transition": 737}}, {"model": "template.statetransition", "pk": 737, "fields": {"resulting_state": 756, "next_state_transition": 738}}, {"model": "template.statetransition", "pk": 738, "fields": {"resulting_state": 757, "next_state_transition": 739}}, {"model": "template.statetransition", "pk": 739, "fields": {"resulting_state": 758, "next_state_transition": 740}}, {"model": "template.statetransition", "pk": 740, "fields": {"resulting_state": 759, "next_state_transition": 741}}, {"model": "template.statetransition", "pk": 741, "fields": {"resulting_state": 760, "next_state_transition": 742}}, {"model": "template.statetransition", "pk": 742, "fields": {"resulting_state": 761, "next_state_transition": 743}}, {"model": "template.statetransition", "pk": 743, "fields": {"resulting_state": 762, "next_state_transition": 744}}, {"model": "template.statetransition", "pk": 744, "fields": {"resulting_state": 763, "next_state_transition": 745}}, {"model": "template.statetransition", "pk": 745, "fields": {"resulting_state": 764, "next_state_transition": 746}}, {"model": "template.statetransition", "pk": 746, "fields": {"resulting_state": 765, "next_state_transition": 747}}, {"model": "template.statetransition", "pk": 747, "fields": {"resulting_state": 766, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 748, "fields": {"resulting_state": 694, "next_state_transition": 749}}, {"model": "template.statetransition", "pk": 749, "fields": {"resulting_state": 767, "next_state_transition": 750}}, {"model": "template.statetransition", "pk": 750, "fields": {"resulting_state": 768, "next_state_transition": 751}}, {"model": "template.statetransition", "pk": 751, "fields": {"resulting_state": 769, "next_state_transition": 752}}, {"model": "template.statetransition", "pk": 752, "fields": {"resulting_state": 770, "next_state_transition": 753}}, {"model": "template.statetransition", "pk": 753, "fields": {"resulting_state": 771, "next_state_transition": 754}}, {"model": "template.statetransition", "pk": 754, "fields": {"resulting_state": 772, "next_state_transition": 755}}, {"model": "template.statetransition", "pk": 755, "fields": {"resulting_state": 773, "next_state_transition": 756}}, {"model": "template.statetransition", "pk": 756, "fields": {"resulting_state": 774, "next_state_transition": 757}}, {"model": "template.statetransition", "pk": 757, "fields": {"resulting_state": 775, "next_state_transition": 758}}, {"model": "template.statetransition", "pk": 758, "fields": {"resulting_state": 776, "next_state_transition": 759}}, {"model": "template.statetransition", "pk": 759, "fields": {"resulting_state": 777, "next_state_transition": 760}}, {"model": "template.statetransition", "pk": 760, "fields": {"resulting_state": 778, "next_state_transition": 761}}, {"model": "template.statetransition", "pk": 761, "fields": {"resulting_state": 779, "next_state_transition": 762}}, {"model": "template.statetransition", "pk": 762, "fields": {"resulting_state": 780, "next_state_transition": 763}}, {"model": "template.statetransition", "pk": 763, "fields": {"resulting_state": 781, "next_state_transition": 764}}, {"model": "template.statetransition", "pk": 764, "fields": {"resulting_state": 782, "next_state_transition": 765}}, {"model": "template.statetransition", "pk": 765, "fields": {"resulting_state": 783, "next_state_transition": 766}}, {"model": "template.statetransition", "pk": 766, "fields": {"resulting_state": 784, "next_state_transition": 767}}, {"model": "template.statetransition", "pk": 767, "fields": {"resulting_state": 785, "next_state_transition": 768}}, {"model": "template.statetransition", "pk": 768, "fields": {"resulting_state": 786, "next_state_transition": 769}}, {"model": "template.statetransition", "pk": 769, "fields": {"resulting_state": 787, "next_state_transition": 770}}, {"model": "template.statetransition", "pk": 770, "fields": {"resulting_state": 788, "next_state_transition": 771}}, {"model": "template.statetransition", "pk": 771, "fields": {"resulting_state": 789, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 772, "fields": {"resulting_state": 693, "next_state_transition": 773}}, {"model": "template.statetransition", "pk": 773, "fields": {"resulting_state": 790, "next_state_transition": 774}}, {"model": "template.statetransition", "pk": 774, "fields": {"resulting_state": 791, "next_state_transition": 775}}, {"model": "template.statetransition", "pk": 775, "fields": {"resulting_state": 792, "next_state_transition": 776}}, {"model": "template.statetransition", "pk": 776, "fields": {"resulting_state": 793, "next_state_transition": 777}}, {"model": "template.statetransition", "pk": 777, "fields": {"resulting_state": 794, "next_state_transition": 778}}, {"model": "template.statetransition", "pk": 778, "fields": {"resulting_state": 795, "next_state_transition": 779}}, {"model": "template.statetransition", "pk": 779, "fields": {"resulting_state": 796, "next_state_transition": 780}}, {"model": "template.statetransition", "pk": 780, "fields": {"resulting_state": 797, "next_state_transition": 781}}, {"model": "template.statetransition", "pk": 781, "fields": {"resulting_state": 798, "next_state_transition": 782}}, {"model": "template.statetransition", "pk": 782, "fields": {"resulting_state": 799, "next_state_transition": 783}}, {"model": "template.statetransition", "pk": 783, "fields": {"resulting_state": 800, "next_state_transition": 784}}, {"model": "template.statetransition", "pk": 784, "fields": {"resulting_state": 801, "next_state_transition": 785}}, {"model": "template.statetransition", "pk": 785, "fields": {"resulting_state": 802, "next_state_transition": 786}}, {"model": "template.statetransition", "pk": 786, "fields": {"resulting_state": 803, "next_state_transition": 787}}, {"model": "template.statetransition", "pk": 787, "fields": {"resulting_state": 804, "next_state_transition": 788}}, {"model": "template.statetransition", "pk": 788, "fields": {"resulting_state": 805, "next_state_transition": 789}}, {"model": "template.statetransition", "pk": 789, "fields": {"resulting_state": 806, "next_state_transition": 790}}, {"model": "template.statetransition", "pk": 790, "fields": {"resulting_state": 807, "next_state_transition": 791}}, {"model": "template.statetransition", "pk": 791, "fields": {"resulting_state": 808, "next_state_transition": 792}}, {"model": "template.statetransition", "pk": 792, "fields": {"resulting_state": 809, "next_state_transition": 793}}, {"model": "template.statetransition", "pk": 793, "fields": {"resulting_state": 810, "next_state_transition": 794}}, {"model": "template.statetransition", "pk": 794, "fields": {"resulting_state": 811, "next_state_transition": 795}}, {"model": "template.statetransition", "pk": 795, "fields": {"resulting_state": 812, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 796, "fields": {"resulting_state": 692, "next_state_transition": 797}}, {"model": "template.statetransition", "pk": 797, "fields": {"resulting_state": 813, "next_state_transition": 798}}, {"model": "template.statetransition", "pk": 798, "fields": {"resulting_state": 814, "next_state_transition": 799}}, {"model": "template.statetransition", "pk": 799, "fields": {"resulting_state": 815, "next_state_transition": 800}}, {"model": "template.statetransition", "pk": 800, "fields": {"resulting_state": 816, "next_state_transition": 801}}, {"model": "template.statetransition", "pk": 801, "fields": {"resulting_state": 817, "next_state_transition": 802}}, {"model": "template.statetransition", "pk": 802, "fields": {"resulting_state": 818, "next_state_transition": 803}}, {"model": "template.statetransition", "pk": 803, "fields": {"resulting_state": 819, "next_state_transition": 804}}, {"model": "template.statetransition", "pk": 804, "fields": {"resulting_state": 820, "next_state_transition": 805}}, {"model": "template.statetransition", "pk": 805, "fields": {"resulting_state": 821, "next_state_transition": 806}}, {"model": "template.statetransition", "pk": 806, "fields": {"resulting_state": 822, "next_state_transition": 807}}, {"model": "template.statetransition", "pk": 807, "fields": {"resulting_state": 823, "next_state_transition": 808}}, {"model": "template.statetransition", "pk": 808, "fields": {"resulting_state": 824, "next_state_transition": 809}}, {"model": "template.statetransition", "pk": 809, "fields": {"resulting_state": 825, "next_state_transition": 810}}, {"model": "template.statetransition", "pk": 810, "fields": {"resulting_state": 826, "next_state_transition": 811}}, {"model": "template.statetransition", "pk": 811, "fields": {"resulting_state": 827, "next_state_transition": 812}}, {"model": "template.statetransition", "pk": 812, "fields": {"resulting_state": 828, "next_state_transition": 813}}, {"model": "template.statetransition", "pk": 813, "fields": {"resulting_state": 829, "next_state_transition": 814}}, {"model": "template.statetransition", "pk": 814, "fields": {"resulting_state": 830, "next_state_transition": 815}}, {"model": "template.statetransition", "pk": 815, "fields": {"resulting_state": 831, "next_state_transition": 816}}, {"model": "template.statetransition", "pk": 816, "fields": {"resulting_state": 832, "next_state_transition": 817}}, {"model": "template.statetransition", "pk": 817, "fields": {"resulting_state": 833, "next_state_transition": 818}}, {"model": "template.statetransition", "pk": 818, "fields": {"resulting_state": 834, "next_state_transition": 819}}, {"model": "template.statetransition", "pk": 819, "fields": {"resulting_state": 835, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 820, "fields": {"resulting_state": 691, "next_state_transition": 821}}, {"model": "template.statetransition", "pk": 821, "fields": {"resulting_state": 836, "next_state_transition": 822}}, {"model": "template.statetransition", "pk": 822, "fields": {"resulting_state": 837, "next_state_transition": 823}}, {"model": "template.statetransition", "pk": 823, "fields": {"resulting_state": 838, "next_state_transition": 824}}, {"model": "template.statetransition", "pk": 824, "fields": {"resulting_state": 839, "next_state_transition": 825}}, {"model": "template.statetransition", "pk": 825, "fields": {"resulting_state": 840, "next_state_transition": 826}}, {"model": "template.statetransition", "pk": 826, "fields": {"resulting_state": 841, "next_state_transition": 827}}, {"model": "template.statetransition", "pk": 827, "fields": {"resulting_state": 842, "next_state_transition": 828}}, {"model": "template.statetransition", "pk": 828, "fields": {"resulting_state": 843, "next_state_transition": 829}}, {"model": "template.statetransition", "pk": 829, "fields": {"resulting_state": 844, "next_state_transition": 830}}, {"model": "template.statetransition", "pk": 830, "fields": {"resulting_state": 845, "next_state_transition": 831}}, {"model": "template.statetransition", "pk": 831, "fields": {"resulting_state": 846, "next_state_transition": 832}}, {"model": "template.statetransition", "pk": 832, "fields": {"resulting_state": 847, "next_state_transition": 833}}, {"model": "template.statetransition", "pk": 833, "fields": {"resulting_state": 848, "next_state_transition": 834}}, {"model": "template.statetransition", "pk": 834, "fields": {"resulting_state": 849, "next_state_transition": 835}}, {"model": "template.statetransition", "pk": 835, "fields": {"resulting_state": 850, "next_state_transition": 836}}, {"model": "template.statetransition", "pk": 836, "fields": {"resulting_state": 851, "next_state_transition": 837}}, {"model": "template.statetransition", "pk": 837, "fields": {"resulting_state": 852, "next_state_transition": 838}}, {"model": "template.statetransition", "pk": 838, "fields": {"resulting_state": 853, "next_state_transition": 839}}, {"model": "template.statetransition", "pk": 839, "fields": {"resulting_state": 854, "next_state_transition": 840}}, {"model": "template.statetransition", "pk": 840, "fields": {"resulting_state": 855, "next_state_transition": 841}}, {"model": "template.statetransition", "pk": 841, "fields": {"resulting_state": 856, "next_state_transition": 842}}, {"model": "template.statetransition", "pk": 842, "fields": {"resulting_state": 857, "next_state_transition": 843}}, {"model": "template.statetransition", "pk": 843, "fields": {"resulting_state": 858, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 844, "fields": {"resulting_state": 690, "next_state_transition": 845}}, {"model": "template.statetransition", "pk": 845, "fields": {"resulting_state": 859, "next_state_transition": 846}}, {"model": "template.statetransition", "pk": 846, "fields": {"resulting_state": 860, "next_state_transition": 847}}, {"model": "template.statetransition", "pk": 847, "fields": {"resulting_state": 861, "next_state_transition": 848}}, {"model": "template.statetransition", "pk": 848, "fields": {"resulting_state": 862, "next_state_transition": 849}}, {"model": "template.statetransition", "pk": 849, "fields": {"resulting_state": 863, "next_state_transition": 850}}, {"model": "template.statetransition", "pk": 850, "fields": {"resulting_state": 864, "next_state_transition": 851}}, {"model": "template.statetransition", "pk": 851, "fields": {"resulting_state": 865, "next_state_transition": 852}}, {"model": "template.statetransition", "pk": 852, "fields": {"resulting_state": 866, "next_state_transition": 853}}, {"model": "template.statetransition", "pk": 853, "fields": {"resulting_state": 867, "next_state_transition": 854}}, {"model": "template.statetransition", "pk": 854, "fields": {"resulting_state": 868, "next_state_transition": 855}}, {"model": "template.statetransition", "pk": 855, "fields": {"resulting_state": 869, "next_state_transition": 856}}, {"model": "template.statetransition", "pk": 856, "fields": {"resulting_state": 870, "next_state_transition": 857}}, {"model": "template.statetransition", "pk": 857, "fields": {"resulting_state": 871, "next_state_transition": 858}}, {"model": "template.statetransition", "pk": 858, "fields": {"resulting_state": 872, "next_state_transition": 859}}, {"model": "template.statetransition", "pk": 859, "fields": {"resulting_state": 873, "next_state_transition": 860}}, {"model": "template.statetransition", "pk": 860, "fields": {"resulting_state": 874, "next_state_transition": 861}}, {"model": "template.statetransition", "pk": 861, "fields": {"resulting_state": 875, "next_state_transition": 862}}, {"model": "template.statetransition", "pk": 862, "fields": {"resulting_state": 876, "next_state_transition": 863}}, {"model": "template.statetransition", "pk": 863, "fields": {"resulting_state": 877, "next_state_transition": 864}}, {"model": "template.statetransition", "pk": 864, "fields": {"resulting_state": 878, "next_state_transition": 865}}, {"model": "template.statetransition", "pk": 865, "fields": {"resulting_state": 879, "next_state_transition": 866}}, {"model": "template.statetransition", "pk": 866, "fields": {"resulting_state": 880, "next_state_transition": 867}}, {"model": "template.statetransition", "pk": 867, "fields": {"resulting_state": 881, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 868, "fields": {"resulting_state": 689, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 869, "fields": {"resulting_state": 883, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 870, "fields": {"resulting_state": 892, "next_state_transition": 919}}, {"model": "template.statetransition", "pk": 871, "fields": {"resulting_state": 895, "next_state_transition": 872}}, {"model": "template.statetransition", "pk": 872, "fields": {"resulting_state": 896, "next_state_transition": 873}}, {"model": "template.statetransition", "pk": 873, "fields": {"resulting_state": 897, "next_state_transition": 874}}, {"model": "template.statetransition", "pk": 874, "fields": {"resulting_state": 898, "next_state_transition": 875}}, {"model": "template.statetransition", "pk": 875, "fields": {"resulting_state": 899, "next_state_transition": 876}}, {"model": "template.statetransition", "pk": 876, "fields": {"resulting_state": 900, "next_state_transition": 877}}, {"model": "template.statetransition", "pk": 877, "fields": {"resulting_state": 901, "next_state_transition": 878}}, {"model": "template.statetransition", "pk": 878, "fields": {"resulting_state": 902, "next_state_transition": 879}}, {"model": "template.statetransition", "pk": 879, "fields": {"resulting_state": 903, "next_state_transition": 880}}, {"model": "template.statetransition", "pk": 880, "fields": {"resulting_state": 904, "next_state_transition": 881}}, {"model": "template.statetransition", "pk": 881, "fields": {"resulting_state": 905, "next_state_transition": 882}}, {"model": "template.statetransition", "pk": 882, "fields": {"resulting_state": 906, "next_state_transition": 883}}, {"model": "template.statetransition", "pk": 883, "fields": {"resulting_state": 907, "next_state_transition": 884}}, {"model": "template.statetransition", "pk": 884, "fields": {"resulting_state": 908, "next_state_transition": 885}}, {"model": "template.statetransition", "pk": 885, "fields": {"resulting_state": 909, "next_state_transition": 886}}, {"model": "template.statetransition", "pk": 886, "fields": {"resulting_state": 910, "next_state_transition": 887}}, {"model": "template.statetransition", "pk": 887, "fields": {"resulting_state": 911, "next_state_transition": 888}}, {"model": "template.statetransition", "pk": 888, "fields": {"resulting_state": 912, "next_state_transition": 889}}, {"model": "template.statetransition", "pk": 889, "fields": {"resulting_state": 913, "next_state_transition": 890}}, {"model": "template.statetransition", "pk": 890, "fields": {"resulting_state": 914, "next_state_transition": 891}}, {"model": "template.statetransition", "pk": 891, "fields": {"resulting_state": 915, "next_state_transition": 892}}, {"model": "template.statetransition", "pk": 892, "fields": {"resulting_state": 916, "next_state_transition": 893}}, {"model": "template.statetransition", "pk": 893, "fields": {"resulting_state": 917, "next_state_transition": 894}}, {"model": "template.statetransition", "pk": 894, "fields": {"resulting_state": 918, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 895, "fields": {"resulting_state": 894, "next_state_transition": 896}}, {"model": "template.statetransition", "pk": 896, "fields": {"resulting_state": 919, "next_state_transition": 897}}, {"model": "template.statetransition", "pk": 897, "fields": {"resulting_state": 920, "next_state_transition": 898}}, {"model": "template.statetransition", "pk": 898, "fields": {"resulting_state": 921, "next_state_transition": 899}}, {"model": "template.statetransition", "pk": 899, "fields": {"resulting_state": 922, "next_state_transition": 900}}, {"model": "template.statetransition", "pk": 900, "fields": {"resulting_state": 923, "next_state_transition": 901}}, {"model": "template.statetransition", "pk": 901, "fields": {"resulting_state": 924, "next_state_transition": 902}}, {"model": "template.statetransition", "pk": 902, "fields": {"resulting_state": 925, "next_state_transition": 903}}, {"model": "template.statetransition", "pk": 903, "fields": {"resulting_state": 926, "next_state_transition": 904}}, {"model": "template.statetransition", "pk": 904, "fields": {"resulting_state": 927, "next_state_transition": 905}}, {"model": "template.statetransition", "pk": 905, "fields": {"resulting_state": 928, "next_state_transition": 906}}, {"model": "template.statetransition", "pk": 906, "fields": {"resulting_state": 929, "next_state_transition": 907}}, {"model": "template.statetransition", "pk": 907, "fields": {"resulting_state": 930, "next_state_transition": 908}}, {"model": "template.statetransition", "pk": 908, "fields": {"resulting_state": 931, "next_state_transition": 909}}, {"model": "template.statetransition", "pk": 909, "fields": {"resulting_state": 932, "next_state_transition": 910}}, {"model": "template.statetransition", "pk": 910, "fields": {"resulting_state": 933, "next_state_transition": 911}}, {"model": "template.statetransition", "pk": 911, "fields": {"resulting_state": 934, "next_state_transition": 912}}, {"model": "template.statetransition", "pk": 912, "fields": {"resulting_state": 935, "next_state_transition": 913}}, {"model": "template.statetransition", "pk": 913, "fields": {"resulting_state": 936, "next_state_transition": 914}}, {"model": "template.statetransition", "pk": 914, "fields": {"resulting_state": 937, "next_state_transition": 915}}, {"model": "template.statetransition", "pk": 915, "fields": {"resulting_state": 938, "next_state_transition": 916}}, {"model": "template.statetransition", "pk": 916, "fields": {"resulting_state": 939, "next_state_transition": 917}}, {"model": "template.statetransition", "pk": 917, "fields": {"resulting_state": 940, "next_state_transition": 918}}, {"model": "template.statetransition", "pk": 918, "fields": {"resulting_state": 941, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 919, "fields": {"resulting_state": 893, "next_state_transition": 920}}, {"model": "template.statetransition", "pk": 920, "fields": {"resulting_state": 942, "next_state_transition": 921}}, {"model": "template.statetransition", "pk": 921, "fields": {"resulting_state": 943, "next_state_transition": 922}}, {"model": "template.statetransition", "pk": 922, "fields": {"resulting_state": 944, "next_state_transition": 923}}, {"model": "template.statetransition", "pk": 923, "fields": {"resulting_state": 945, "next_state_transition": 924}}, {"model": "template.statetransition", "pk": 924, "fields": {"resulting_state": 946, "next_state_transition": 925}}, {"model": "template.statetransition", "pk": 925, "fields": {"resulting_state": 947, "next_state_transition": 926}}, {"model": "template.statetransition", "pk": 926, "fields": {"resulting_state": 948, "next_state_transition": 927}}, {"model": "template.statetransition", "pk": 927, "fields": {"resulting_state": 949, "next_state_transition": 928}}, {"model": "template.statetransition", "pk": 928, "fields": {"resulting_state": 950, "next_state_transition": 929}}, {"model": "template.statetransition", "pk": 929, "fields": {"resulting_state": 951, "next_state_transition": 930}}, {"model": "template.statetransition", "pk": 930, "fields": {"resulting_state": 952, "next_state_transition": 931}}, {"model": "template.statetransition", "pk": 931, "fields": {"resulting_state": 953, "next_state_transition": 932}}, {"model": "template.statetransition", "pk": 932, "fields": {"resulting_state": 954, "next_state_transition": 933}}, {"model": "template.statetransition", "pk": 933, "fields": {"resulting_state": 955, "next_state_transition": 934}}, {"model": "template.statetransition", "pk": 934, "fields": {"resulting_state": 956, "next_state_transition": 935}}, {"model": "template.statetransition", "pk": 935, "fields": {"resulting_state": 957, "next_state_transition": 936}}, {"model": "template.statetransition", "pk": 936, "fields": {"resulting_state": 958, "next_state_transition": 937}}, {"model": "template.statetransition", "pk": 937, "fields": {"resulting_state": 959, "next_state_transition": 938}}, {"model": "template.statetransition", "pk": 938, "fields": {"resulting_state": 960, "next_state_transition": 939}}, {"model": "template.statetransition", "pk": 939, "fields": {"resulting_state": 961, "next_state_transition": 940}}, {"model": "template.statetransition", "pk": 940, "fields": {"resulting_state": 962, "next_state_transition": 941}}, {"model": "template.statetransition", "pk": 941, "fields": {"resulting_state": 963, "next_state_transition": 942}}, {"model": "template.statetransition", "pk": 942, "fields": {"resulting_state": 964, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 943, "fields": {"resulting_state": 891, "next_state_transition": 919}}, {"model": "template.statetransition", "pk": 944, "fields": {"resulting_state": 890, "next_state_transition": 945}}, {"model": "template.statetransition", "pk": 945, "fields": {"resulting_state": 965, "next_state_transition": 946}}, {"model": "template.statetransition", "pk": 946, "fields": {"resulting_state": 966, "next_state_transition": 947}}, {"model": "template.statetransition", "pk": 947, "fields": {"resulting_state": 967, "next_state_transition": 948}}, {"model": "template.statetransition", "pk": 948, "fields": {"resulting_state": 968, "next_state_transition": 949}}, {"model": "template.statetransition", "pk": 949, "fields": {"resulting_state": 969, "next_state_transition": 950}}, {"model": "template.statetransition", "pk": 950, "fields": {"resulting_state": 970, "next_state_transition": 951}}, {"model": "template.statetransition", "pk": 951, "fields": {"resulting_state": 971, "next_state_transition": 952}}, {"model": "template.statetransition", "pk": 952, "fields": {"resulting_state": 972, "next_state_transition": 953}}, {"model": "template.statetransition", "pk": 953, "fields": {"resulting_state": 973, "next_state_transition": 954}}, {"model": "template.statetransition", "pk": 954, "fields": {"resulting_state": 974, "next_state_transition": 955}}, {"model": "template.statetransition", "pk": 955, "fields": {"resulting_state": 975, "next_state_transition": 956}}, {"model": "template.statetransition", "pk": 956, "fields": {"resulting_state": 976, "next_state_transition": 957}}, {"model": "template.statetransition", "pk": 957, "fields": {"resulting_state": 977, "next_state_transition": 958}}, {"model": "template.statetransition", "pk": 958, "fields": {"resulting_state": 978, "next_state_transition": 959}}, {"model": "template.statetransition", "pk": 959, "fields": {"resulting_state": 979, "next_state_transition": 960}}, {"model": "template.statetransition", "pk": 960, "fields": {"resulting_state": 980, "next_state_transition": 961}}, {"model": "template.statetransition", "pk": 961, "fields": {"resulting_state": 981, "next_state_transition": 962}}, {"model": "template.statetransition", "pk": 962, "fields": {"resulting_state": 982, "next_state_transition": 963}}, {"model": "template.statetransition", "pk": 963, "fields": {"resulting_state": 983, "next_state_transition": 964}}, {"model": "template.statetransition", "pk": 964, "fields": {"resulting_state": 984, "next_state_transition": 965}}, {"model": "template.statetransition", "pk": 965, "fields": {"resulting_state": 985, "next_state_transition": 966}}, {"model": "template.statetransition", "pk": 966, "fields": {"resulting_state": 986, "next_state_transition": 967}}, {"model": "template.statetransition", "pk": 967, "fields": {"resulting_state": 987, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 968, "fields": {"resulting_state": 889, "next_state_transition": 969}}, {"model": "template.statetransition", "pk": 969, "fields": {"resulting_state": 988, "next_state_transition": 970}}, {"model": "template.statetransition", "pk": 970, "fields": {"resulting_state": 989, "next_state_transition": 971}}, {"model": "template.statetransition", "pk": 971, "fields": {"resulting_state": 990, "next_state_transition": 972}}, {"model": "template.statetransition", "pk": 972, "fields": {"resulting_state": 991, "next_state_transition": 973}}, {"model": "template.statetransition", "pk": 973, "fields": {"resulting_state": 992, "next_state_transition": 974}}, {"model": "template.statetransition", "pk": 974, "fields": {"resulting_state": 993, "next_state_transition": 975}}, {"model": "template.statetransition", "pk": 975, "fields": {"resulting_state": 994, "next_state_transition": 976}}, {"model": "template.statetransition", "pk": 976, "fields": {"resulting_state": 995, "next_state_transition": 977}}, {"model": "template.statetransition", "pk": 977, "fields": {"resulting_state": 996, "next_state_transition": 978}}, {"model": "template.statetransition", "pk": 978, "fields": {"resulting_state": 997, "next_state_transition": 979}}, {"model": "template.statetransition", "pk": 979, "fields": {"resulting_state": 998, "next_state_transition": 980}}, {"model": "template.statetransition", "pk": 980, "fields": {"resulting_state": 999, "next_state_transition": 981}}, {"model": "template.statetransition", "pk": 981, "fields": {"resulting_state": 1000, "next_state_transition": 982}}, {"model": "template.statetransition", "pk": 982, "fields": {"resulting_state": 1001, "next_state_transition": 983}}, {"model": "template.statetransition", "pk": 983, "fields": {"resulting_state": 1002, "next_state_transition": 984}}, {"model": "template.statetransition", "pk": 984, "fields": {"resulting_state": 1003, "next_state_transition": 985}}, {"model": "template.statetransition", "pk": 985, "fields": {"resulting_state": 1004, "next_state_transition": 986}}, {"model": "template.statetransition", "pk": 986, "fields": {"resulting_state": 1005, "next_state_transition": 987}}, {"model": "template.statetransition", "pk": 987, "fields": {"resulting_state": 1006, "next_state_transition": 988}}, {"model": "template.statetransition", "pk": 988, "fields": {"resulting_state": 1007, "next_state_transition": 989}}, {"model": "template.statetransition", "pk": 989, "fields": {"resulting_state": 1008, "next_state_transition": 990}}, {"model": "template.statetransition", "pk": 990, "fields": {"resulting_state": 1009, "next_state_transition": 991}}, {"model": "template.statetransition", "pk": 991, "fields": {"resulting_state": 1010, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 992, "fields": {"resulting_state": 888, "next_state_transition": 993}}, {"model": "template.statetransition", "pk": 993, "fields": {"resulting_state": 1011, "next_state_transition": 994}}, {"model": "template.statetransition", "pk": 994, "fields": {"resulting_state": 1012, "next_state_transition": 995}}, {"model": "template.statetransition", "pk": 995, "fields": {"resulting_state": 1013, "next_state_transition": 996}}, {"model": "template.statetransition", "pk": 996, "fields": {"resulting_state": 1014, "next_state_transition": 997}}, {"model": "template.statetransition", "pk": 997, "fields": {"resulting_state": 1015, "next_state_transition": 998}}, {"model": "template.statetransition", "pk": 998, "fields": {"resulting_state": 1016, "next_state_transition": 999}}, {"model": "template.statetransition", "pk": 999, "fields": {"resulting_state": 1017, "next_state_transition": 1000}}, {"model": "template.statetransition", "pk": 1000, "fields": {"resulting_state": 1018, "next_state_transition": 1001}}, {"model": "template.statetransition", "pk": 1001, "fields": {"resulting_state": 1019, "next_state_transition": 1002}}, {"model": "template.statetransition", "pk": 1002, "fields": {"resulting_state": 1020, "next_state_transition": 1003}}, {"model": "template.statetransition", "pk": 1003, "fields": {"resulting_state": 1021, "next_state_transition": 1004}}, {"model": "template.statetransition", "pk": 1004, "fields": {"resulting_state": 1022, "next_state_transition": 1005}}, {"model": "template.statetransition", "pk": 1005, "fields": {"resulting_state": 1023, "next_state_transition": 1006}}, {"model": "template.statetransition", "pk": 1006, "fields": {"resulting_state": 1024, "next_state_transition": 1007}}, {"model": "template.statetransition", "pk": 1007, "fields": {"resulting_state": 1025, "next_state_transition": 1008}}, {"model": "template.statetransition", "pk": 1008, "fields": {"resulting_state": 1026, "next_state_transition": 1009}}, {"model": "template.statetransition", "pk": 1009, "fields": {"resulting_state": 1027, "next_state_transition": 1010}}, {"model": "template.statetransition", "pk": 1010, "fields": {"resulting_state": 1028, "next_state_transition": 1011}}, {"model": "template.statetransition", "pk": 1011, "fields": {"resulting_state": 1029, "next_state_transition": 1012}}, {"model": "template.statetransition", "pk": 1012, "fields": {"resulting_state": 1030, "next_state_transition": 1013}}, {"model": "template.statetransition", "pk": 1013, "fields": {"resulting_state": 1031, "next_state_transition": 1014}}, {"model": "template.statetransition", "pk": 1014, "fields": {"resulting_state": 1032, "next_state_transition": 1015}}, {"model": "template.statetransition", "pk": 1015, "fields": {"resulting_state": 1033, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1016, "fields": {"resulting_state": 887, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1017, "fields": {"resulting_state": 886, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1018, "fields": {"resulting_state": 885, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1019, "fields": {"resulting_state": 1037, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1020, "fields": {"resulting_state": 1036, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1021, "fields": {"resulting_state": 1035, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1022, "fields": {"resulting_state": 1047, "next_state_transition": 1025}}, {"model": "template.statetransition", "pk": 1023, "fields": {"resulting_state": 1050, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1024, "fields": {"resulting_state": 1049, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1025, "fields": {"resulting_state": 1048, "next_state_transition": 1026}}, {"model": "template.statetransition", "pk": 1026, "fields": {"resulting_state": 1051, "next_state_transition": 1027}}, {"model": "template.statetransition", "pk": 1027, "fields": {"resulting_state": 1052, "next_state_transition": 1028}}, {"model": "template.statetransition", "pk": 1028, "fields": {"resulting_state": 1053, "next_state_transition": 1029}}, {"model": "template.statetransition", "pk": 1029, "fields": {"resulting_state": 1054, "next_state_transition": 1030}}, {"model": "template.statetransition", "pk": 1030, "fields": {"resulting_state": 1055, "next_state_transition": 1031}}, {"model": "template.statetransition", "pk": 1031, "fields": {"resulting_state": 1056, "next_state_transition": 1032}}, {"model": "template.statetransition", "pk": 1032, "fields": {"resulting_state": 1057, "next_state_transition": 1033}}, {"model": "template.statetransition", "pk": 1033, "fields": {"resulting_state": 1058, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1034, "fields": {"resulting_state": 1046, "next_state_transition": 1035}}, {"model": "template.statetransition", "pk": 1035, "fields": {"resulting_state": 1059, "next_state_transition": 1036}}, {"model": "template.statetransition", "pk": 1036, "fields": {"resulting_state": 1060, "next_state_transition": 1037}}, {"model": "template.statetransition", "pk": 1037, "fields": {"resulting_state": 1061, "next_state_transition": 1038}}, {"model": "template.statetransition", "pk": 1038, "fields": {"resulting_state": 1062, "next_state_transition": 1039}}, {"model": "template.statetransition", "pk": 1039, "fields": {"resulting_state": 1063, "next_state_transition": 1040}}, {"model": "template.statetransition", "pk": 1040, "fields": {"resulting_state": 1064, "next_state_transition": 1041}}, {"model": "template.statetransition", "pk": 1041, "fields": {"resulting_state": 1065, "next_state_transition": 1042}}, {"model": "template.statetransition", "pk": 1042, "fields": {"resulting_state": 1066, "next_state_transition": 1043}}, {"model": "template.statetransition", "pk": 1043, "fields": {"resulting_state": 1067, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1044, "fields": {"resulting_state": 1045, "next_state_transition": 1045}}, {"model": "template.statetransition", "pk": 1045, "fields": {"resulting_state": 1068, "next_state_transition": 1046}}, {"model": "template.statetransition", "pk": 1046, "fields": {"resulting_state": 1069, "next_state_transition": 1047}}, {"model": "template.statetransition", "pk": 1047, "fields": {"resulting_state": 1070, "next_state_transition": 1048}}, {"model": "template.statetransition", "pk": 1048, "fields": {"resulting_state": 1071, "next_state_transition": 1049}}, {"model": "template.statetransition", "pk": 1049, "fields": {"resulting_state": 1072, "next_state_transition": 1050}}, {"model": "template.statetransition", "pk": 1050, "fields": {"resulting_state": 1073, "next_state_transition": 1051}}, {"model": "template.statetransition", "pk": 1051, "fields": {"resulting_state": 1074, "next_state_transition": 1052}}, {"model": "template.statetransition", "pk": 1052, "fields": {"resulting_state": 1075, "next_state_transition": 1053}}, {"model": "template.statetransition", "pk": 1053, "fields": {"resulting_state": 1076, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1054, "fields": {"resulting_state": 1044, "next_state_transition": 1055}}, {"model": "template.statetransition", "pk": 1055, "fields": {"resulting_state": 1077, "next_state_transition": 1056}}, {"model": "template.statetransition", "pk": 1056, "fields": {"resulting_state": 1078, "next_state_transition": 1057}}, {"model": "template.statetransition", "pk": 1057, "fields": {"resulting_state": 1079, "next_state_transition": 1058}}, {"model": "template.statetransition", "pk": 1058, "fields": {"resulting_state": 1080, "next_state_transition": 1059}}, {"model": "template.statetransition", "pk": 1059, "fields": {"resulting_state": 1081, "next_state_transition": 1060}}, {"model": "template.statetransition", "pk": 1060, "fields": {"resulting_state": 1082, "next_state_transition": 1061}}, {"model": "template.statetransition", "pk": 1061, "fields": {"resulting_state": 1083, "next_state_transition": 1062}}, {"model": "template.statetransition", "pk": 1062, "fields": {"resulting_state": 1084, "next_state_transition": 1063}}, {"model": "template.statetransition", "pk": 1063, "fields": {"resulting_state": 1085, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1064, "fields": {"resulting_state": 1043, "next_state_transition": 1065}}, {"model": "template.statetransition", "pk": 1065, "fields": {"resulting_state": 1086, "next_state_transition": 1066}}, {"model": "template.statetransition", "pk": 1066, "fields": {"resulting_state": 1087, "next_state_transition": 1067}}, {"model": "template.statetransition", "pk": 1067, "fields": {"resulting_state": 1088, "next_state_transition": 1068}}, {"model": "template.statetransition", "pk": 1068, "fields": {"resulting_state": 1089, "next_state_transition": 1069}}, {"model": "template.statetransition", "pk": 1069, "fields": {"resulting_state": 1090, "next_state_transition": 1070}}, {"model": "template.statetransition", "pk": 1070, "fields": {"resulting_state": 1091, "next_state_transition": 1071}}, {"model": "template.statetransition", "pk": 1071, "fields": {"resulting_state": 1092, "next_state_transition": 1072}}, {"model": "template.statetransition", "pk": 1072, "fields": {"resulting_state": 1093, "next_state_transition": 1073}}, {"model": "template.statetransition", "pk": 1073, "fields": {"resulting_state": 1094, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1074, "fields": {"resulting_state": 1042, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1075, "fields": {"resulting_state": 1041, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1076, "fields": {"resulting_state": 1040, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1077, "fields": {"resulting_state": 1039, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1078, "fields": {"resulting_state": 1099, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1079, "fields": {"resulting_state": 1098, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1080, "fields": {"resulting_state": 1097, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1081, "fields": {"resulting_state": 1096, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1082, "fields": {"resulting_state": 1110, "next_state_transition": 1083}}, {"model": "template.statetransition", "pk": 1083, "fields": {"resulting_state": 1111, "next_state_transition": 1084}}, {"model": "template.statetransition", "pk": 1084, "fields": {"resulting_state": 1112, "next_state_transition": 1085}}, {"model": "template.statetransition", "pk": 1085, "fields": {"resulting_state": 1113, "next_state_transition": 1086}}, {"model": "template.statetransition", "pk": 1086, "fields": {"resulting_state": 1114, "next_state_transition": 1087}}, {"model": "template.statetransition", "pk": 1087, "fields": {"resulting_state": 1115, "next_state_transition": 1088}}, {"model": "template.statetransition", "pk": 1088, "fields": {"resulting_state": 1116, "next_state_transition": 1089}}, {"model": "template.statetransition", "pk": 1089, "fields": {"resulting_state": 1117, "next_state_transition": 1090}}, {"model": "template.statetransition", "pk": 1090, "fields": {"resulting_state": 1118, "next_state_transition": 1091}}, {"model": "template.statetransition", "pk": 1091, "fields": {"resulting_state": 1119, "next_state_transition": 1092}}, {"model": "template.statetransition", "pk": 1092, "fields": {"resulting_state": 1120, "next_state_transition": 1093}}, {"model": "template.statetransition", "pk": 1093, "fields": {"resulting_state": 1121, "next_state_transition": 1094}}, {"model": "template.statetransition", "pk": 1094, "fields": {"resulting_state": 1122, "next_state_transition": 1095}}, {"model": "template.statetransition", "pk": 1095, "fields": {"resulting_state": 1123, "next_state_transition": 1096}}, {"model": "template.statetransition", "pk": 1096, "fields": {"resulting_state": 1124, "next_state_transition": 1097}}, {"model": "template.statetransition", "pk": 1097, "fields": {"resulting_state": 1125, "next_state_transition": 1098}}, {"model": "template.statetransition", "pk": 1098, "fields": {"resulting_state": 1126, "next_state_transition": 1099}}, {"model": "template.statetransition", "pk": 1099, "fields": {"resulting_state": 1127, "next_state_transition": 1100}}, {"model": "template.statetransition", "pk": 1100, "fields": {"resulting_state": 1128, "next_state_transition": 1101}}, {"model": "template.statetransition", "pk": 1101, "fields": {"resulting_state": 1129, "next_state_transition": 1102}}, {"model": "template.statetransition", "pk": 1102, "fields": {"resulting_state": 1130, "next_state_transition": 1103}}, {"model": "template.statetransition", "pk": 1103, "fields": {"resulting_state": 1131, "next_state_transition": 1104}}, {"model": "template.statetransition", "pk": 1104, "fields": {"resulting_state": 1132, "next_state_transition": 1105}}, {"model": "template.statetransition", "pk": 1105, "fields": {"resulting_state": 1133, "next_state_transition": 1106}}, {"model": "template.statetransition", "pk": 1106, "fields": {"resulting_state": 1134, "next_state_transition": 1107}}, {"model": "template.statetransition", "pk": 1107, "fields": {"resulting_state": 1135, "next_state_transition": 1108}}, {"model": "template.statetransition", "pk": 1108, "fields": {"resulting_state": 1136, "next_state_transition": 1109}}, {"model": "template.statetransition", "pk": 1109, "fields": {"resulting_state": 1137, "next_state_transition": 1110}}, {"model": "template.statetransition", "pk": 1110, "fields": {"resulting_state": 1138, "next_state_transition": 1111}}, {"model": "template.statetransition", "pk": 1111, "fields": {"resulting_state": 1139, "next_state_transition": 1112}}, {"model": "template.statetransition", "pk": 1112, "fields": {"resulting_state": 1140, "next_state_transition": 1113}}, {"model": "template.statetransition", "pk": 1113, "fields": {"resulting_state": 1141, "next_state_transition": 1114}}, {"model": "template.statetransition", "pk": 1114, "fields": {"resulting_state": 1142, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1115, "fields": {"resulting_state": 1109, "next_state_transition": 1083}}, {"model": "template.statetransition", "pk": 1116, "fields": {"resulting_state": 1108, "next_state_transition": 1117}}, {"model": "template.statetransition", "pk": 1117, "fields": {"resulting_state": 1143, "next_state_transition": 1118}}, {"model": "template.statetransition", "pk": 1118, "fields": {"resulting_state": 1144, "next_state_transition": 1119}}, {"model": "template.statetransition", "pk": 1119, "fields": {"resulting_state": 1145, "next_state_transition": 1120}}, {"model": "template.statetransition", "pk": 1120, "fields": {"resulting_state": 1146, "next_state_transition": 1121}}, {"model": "template.statetransition", "pk": 1121, "fields": {"resulting_state": 1147, "next_state_transition": 1122}}, {"model": "template.statetransition", "pk": 1122, "fields": {"resulting_state": 1148, "next_state_transition": 1123}}, {"model": "template.statetransition", "pk": 1123, "fields": {"resulting_state": 1149, "next_state_transition": 1124}}, {"model": "template.statetransition", "pk": 1124, "fields": {"resulting_state": 1150, "next_state_transition": 1125}}, {"model": "template.statetransition", "pk": 1125, "fields": {"resulting_state": 1151, "next_state_transition": 1126}}, {"model": "template.statetransition", "pk": 1126, "fields": {"resulting_state": 1152, "next_state_transition": 1127}}, {"model": "template.statetransition", "pk": 1127, "fields": {"resulting_state": 1153, "next_state_transition": 1128}}, {"model": "template.statetransition", "pk": 1128, "fields": {"resulting_state": 1154, "next_state_transition": 1129}}, {"model": "template.statetransition", "pk": 1129, "fields": {"resulting_state": 1155, "next_state_transition": 1130}}, {"model": "template.statetransition", "pk": 1130, "fields": {"resulting_state": 1156, "next_state_transition": 1131}}, {"model": "template.statetransition", "pk": 1131, "fields": {"resulting_state": 1157, "next_state_transition": 1132}}, {"model": "template.statetransition", "pk": 1132, "fields": {"resulting_state": 1158, "next_state_transition": 1133}}, {"model": "template.statetransition", "pk": 1133, "fields": {"resulting_state": 1159, "next_state_transition": 1134}}, {"model": "template.statetransition", "pk": 1134, "fields": {"resulting_state": 1160, "next_state_transition": 1135}}, {"model": "template.statetransition", "pk": 1135, "fields": {"resulting_state": 1161, "next_state_transition": 1136}}, {"model": "template.statetransition", "pk": 1136, "fields": {"resulting_state": 1162, "next_state_transition": 1137}}, {"model": "template.statetransition", "pk": 1137, "fields": {"resulting_state": 1163, "next_state_transition": 1138}}, {"model": "template.statetransition", "pk": 1138, "fields": {"resulting_state": 1164, "next_state_transition": 1139}}, {"model": "template.statetransition", "pk": 1139, "fields": {"resulting_state": 1165, "next_state_transition": 1140}}, {"model": "template.statetransition", "pk": 1140, "fields": {"resulting_state": 1166, "next_state_transition": 1141}}, {"model": "template.statetransition", "pk": 1141, "fields": {"resulting_state": 1167, "next_state_transition": 1142}}, {"model": "template.statetransition", "pk": 1142, "fields": {"resulting_state": 1168, "next_state_transition": 1143}}, {"model": "template.statetransition", "pk": 1143, "fields": {"resulting_state": 1169, "next_state_transition": 1144}}, {"model": "template.statetransition", "pk": 1144, "fields": {"resulting_state": 1170, "next_state_transition": 1145}}, {"model": "template.statetransition", "pk": 1145, "fields": {"resulting_state": 1171, "next_state_transition": 1146}}, {"model": "template.statetransition", "pk": 1146, "fields": {"resulting_state": 1172, "next_state_transition": 1147}}, {"model": "template.statetransition", "pk": 1147, "fields": {"resulting_state": 1173, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1148, "fields": {"resulting_state": 1107, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1149, "fields": {"resulting_state": 1106, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1150, "fields": {"resulting_state": 1105, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1151, "fields": {"resulting_state": 1104, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1152, "fields": {"resulting_state": 1103, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1153, "fields": {"resulting_state": 1102, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1154, "fields": {"resulting_state": 1101, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1155, "fields": {"resulting_state": 1181, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1156, "fields": {"resulting_state": 1180, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1157, "fields": {"resulting_state": 1179, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1158, "fields": {"resulting_state": 1178, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1159, "fields": {"resulting_state": 1177, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1160, "fields": {"resulting_state": 1176, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1161, "fields": {"resulting_state": 1175, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1162, "fields": {"resulting_state": 1191, "next_state_transition": 1163}}, {"model": "template.statetransition", "pk": 1163, "fields": {"resulting_state": 1192, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1164, "fields": {"resulting_state": 1190, "next_state_transition": 1165}}, {"model": "template.statetransition", "pk": 1165, "fields": {"resulting_state": 1193, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1166, "fields": {"resulting_state": 1189, "next_state_transition": 1167}}, {"model": "template.statetransition", "pk": 1167, "fields": {"resulting_state": 1194, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1168, "fields": {"resulting_state": 1188, "next_state_transition": 1169}}, {"model": "template.statetransition", "pk": 1169, "fields": {"resulting_state": 1195, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1170, "fields": {"resulting_state": 1187, "next_state_transition": 1171}}, {"model": "template.statetransition", "pk": 1171, "fields": {"resulting_state": 1196, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1172, "fields": {"resulting_state": 1186, "next_state_transition": 1173}}, {"model": "template.statetransition", "pk": 1173, "fields": {"resulting_state": 1197, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1174, "fields": {"resulting_state": 1185, "next_state_transition": 1175}}, {"model": "template.statetransition", "pk": 1175, "fields": {"resulting_state": 1198, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1176, "fields": {"resulting_state": 1184, "next_state_transition": 1177}}, {"model": "template.statetransition", "pk": 1177, "fields": {"resulting_state": 1199, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1178, "fields": {"resulting_state": 1183, "next_state_transition": 1179}}, {"model": "template.statetransition", "pk": 1179, "fields": {"resulting_state": 1200, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1180, "fields": {"resulting_state": 1211, "next_state_transition": 1181}}, {"model": "template.statetransition", "pk": 1181, "fields": {"resulting_state": 1212, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1182, "fields": {"resulting_state": 1210, "next_state_transition": 1183}}, {"model": "template.statetransition", "pk": 1183, "fields": {"resulting_state": 1213, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1184, "fields": {"resulting_state": 1209, "next_state_transition": 1185}}, {"model": "template.statetransition", "pk": 1185, "fields": {"resulting_state": 1214, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1186, "fields": {"resulting_state": 1208, "next_state_transition": 1187}}, {"model": "template.statetransition", "pk": 1187, "fields": {"resulting_state": 1215, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1188, "fields": {"resulting_state": 1207, "next_state_transition": 1189}}, {"model": "template.statetransition", "pk": 1189, "fields": {"resulting_state": 1216, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1190, "fields": {"resulting_state": 1206, "next_state_transition": 1191}}, {"model": "template.statetransition", "pk": 1191, "fields": {"resulting_state": 1217, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1192, "fields": {"resulting_state": 1205, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1193, "fields": {"resulting_state": 1204, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1194, "fields": {"resulting_state": 1203, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1195, "fields": {"resulting_state": 1221, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1196, "fields": {"resulting_state": 1220, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1197, "fields": {"resulting_state": 1219, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1198, "fields": {"resulting_state": 1231, "next_state_transition": 1199}}, {"model": "template.statetransition", "pk": 1199, "fields": {"resulting_state": 1232, "next_state_transition": 1200}}, {"model": "template.statetransition", "pk": 1200, "fields": {"resulting_state": 1233, "next_state_transition": 1201}}, {"model": "template.statetransition", "pk": 1201, "fields": {"resulting_state": 1234, "next_state_transition": 1202}}, {"model": "template.statetransition", "pk": 1202, "fields": {"resulting_state": 1235, "next_state_transition": 1203}}, {"model": "template.statetransition", "pk": 1203, "fields": {"resulting_state": 1236, "next_state_transition": 1204}}, {"model": "template.statetransition", "pk": 1204, "fields": {"resulting_state": 1237, "next_state_transition": 1205}}, {"model": "template.statetransition", "pk": 1205, "fields": {"resulting_state": 1238, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1206, "fields": {"resulting_state": 1230, "next_state_transition": 1207}}, {"model": "template.statetransition", "pk": 1207, "fields": {"resulting_state": 1239, "next_state_transition": 1208}}, {"model": "template.statetransition", "pk": 1208, "fields": {"resulting_state": 1240, "next_state_transition": 1209}}, {"model": "template.statetransition", "pk": 1209, "fields": {"resulting_state": 1241, "next_state_transition": 1210}}, {"model": "template.statetransition", "pk": 1210, "fields": {"resulting_state": 1242, "next_state_transition": 1211}}, {"model": "template.statetransition", "pk": 1211, "fields": {"resulting_state": 1243, "next_state_transition": 1212}}, {"model": "template.statetransition", "pk": 1212, "fields": {"resulting_state": 1244, "next_state_transition": 1213}}, {"model": "template.statetransition", "pk": 1213, "fields": {"resulting_state": 1245, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1214, "fields": {"resulting_state": 1229, "next_state_transition": 1215}}, {"model": "template.statetransition", "pk": 1215, "fields": {"resulting_state": 1246, "next_state_transition": 1216}}, {"model": "template.statetransition", "pk": 1216, "fields": {"resulting_state": 1247, "next_state_transition": 1217}}, {"model": "template.statetransition", "pk": 1217, "fields": {"resulting_state": 1248, "next_state_transition": 1218}}, {"model": "template.statetransition", "pk": 1218, "fields": {"resulting_state": 1249, "next_state_transition": 1219}}, {"model": "template.statetransition", "pk": 1219, "fields": {"resulting_state": 1250, "next_state_transition": 1220}}, {"model": "template.statetransition", "pk": 1220, "fields": {"resulting_state": 1251, "next_state_transition": 1221}}, {"model": "template.statetransition", "pk": 1221, "fields": {"resulting_state": 1252, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1222, "fields": {"resulting_state": 1228, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1223, "fields": {"resulting_state": 1227, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1224, "fields": {"resulting_state": 1226, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1225, "fields": {"resulting_state": 1225, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1226, "fields": {"resulting_state": 1224, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1227, "fields": {"resulting_state": 1223, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1228, "fields": {"resulting_state": 1259, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1229, "fields": {"resulting_state": 1258, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1230, "fields": {"resulting_state": 1257, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1231, "fields": {"resulting_state": 1256, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1232, "fields": {"resulting_state": 1255, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1233, "fields": {"resulting_state": 1254, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1234, "fields": {"resulting_state": 1269, "next_state_transition": 1235}}, {"model": "template.statetransition", "pk": 1235, "fields": {"resulting_state": 1270, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1236, "fields": {"resulting_state": 1268, "next_state_transition": 1237}}, {"model": "template.statetransition", "pk": 1237, "fields": {"resulting_state": 1271, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1238, "fields": {"resulting_state": 1267, "next_state_transition": 1239}}, {"model": "template.statetransition", "pk": 1239, "fields": {"resulting_state": 1272, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1240, "fields": {"resulting_state": 1266, "next_state_transition": 1241}}, {"model": "template.statetransition", "pk": 1241, "fields": {"resulting_state": 1273, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1242, "fields": {"resulting_state": 1265, "next_state_transition": 1243}}, {"model": "template.statetransition", "pk": 1243, "fields": {"resulting_state": 1274, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1244, "fields": {"resulting_state": 1264, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1245, "fields": {"resulting_state": 1263, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1246, "fields": {"resulting_state": 1262, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1247, "fields": {"resulting_state": 1261, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1248, "fields": {"resulting_state": 1279, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1249, "fields": {"resulting_state": 1278, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1250, "fields": {"resulting_state": 1277, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1251, "fields": {"resulting_state": 1276, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1252, "fields": {"resulting_state": 1289, "next_state_transition": 1253}}, {"model": "template.statetransition", "pk": 1253, "fields": {"resulting_state": 1290, "next_state_transition": 1254}}, {"model": "template.statetransition", "pk": 1254, "fields": {"resulting_state": 1291, "next_state_transition": 1255}}, {"model": "template.statetransition", "pk": 1255, "fields": {"resulting_state": 1292, "next_state_transition": 1256}}, {"model": "template.statetransition", "pk": 1256, "fields": {"resulting_state": 1293, "next_state_transition": 1257}}, {"model": "template.statetransition", "pk": 1257, "fields": {"resulting_state": 1294, "next_state_transition": 1258}}, {"model": "template.statetransition", "pk": 1258, "fields": {"resulting_state": 1295, "next_state_transition": 1259}}, {"model": "template.statetransition", "pk": 1259, "fields": {"resulting_state": 1296, "next_state_transition": 1260}}, {"model": "template.statetransition", "pk": 1260, "fields": {"resulting_state": 1297, "next_state_transition": 1261}}, {"model": "template.statetransition", "pk": 1261, "fields": {"resulting_state": 1298, "next_state_transition": 1262}}, {"model": "template.statetransition", "pk": 1262, "fields": {"resulting_state": 1299, "next_state_transition": 1263}}, {"model": "template.statetransition", "pk": 1263, "fields": {"resulting_state": 1300, "next_state_transition": 1264}}, {"model": "template.statetransition", "pk": 1264, "fields": {"resulting_state": 1301, "next_state_transition": 1265}}, {"model": "template.statetransition", "pk": 1265, "fields": {"resulting_state": 1302, "next_state_transition": 1266}}, {"model": "template.statetransition", "pk": 1266, "fields": {"resulting_state": 1303, "next_state_transition": 1267}}, {"model": "template.statetransition", "pk": 1267, "fields": {"resulting_state": 1304, "next_state_transition": 1268}}, {"model": "template.statetransition", "pk": 1268, "fields": {"resulting_state": 1305, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1269, "fields": {"resulting_state": 1288, "next_state_transition": 1270}}, {"model": "template.statetransition", "pk": 1270, "fields": {"resulting_state": 1306, "next_state_transition": 1271}}, {"model": "template.statetransition", "pk": 1271, "fields": {"resulting_state": 1307, "next_state_transition": 1272}}, {"model": "template.statetransition", "pk": 1272, "fields": {"resulting_state": 1308, "next_state_transition": 1273}}, {"model": "template.statetransition", "pk": 1273, "fields": {"resulting_state": 1309, "next_state_transition": 1274}}, {"model": "template.statetransition", "pk": 1274, "fields": {"resulting_state": 1310, "next_state_transition": 1275}}, {"model": "template.statetransition", "pk": 1275, "fields": {"resulting_state": 1311, "next_state_transition": 1276}}, {"model": "template.statetransition", "pk": 1276, "fields": {"resulting_state": 1312, "next_state_transition": 1277}}, {"model": "template.statetransition", "pk": 1277, "fields": {"resulting_state": 1313, "next_state_transition": 1278}}, {"model": "template.statetransition", "pk": 1278, "fields": {"resulting_state": 1314, "next_state_transition": 1279}}, {"model": "template.statetransition", "pk": 1279, "fields": {"resulting_state": 1315, "next_state_transition": 1280}}, {"model": "template.statetransition", "pk": 1280, "fields": {"resulting_state": 1316, "next_state_transition": 1281}}, {"model": "template.statetransition", "pk": 1281, "fields": {"resulting_state": 1317, "next_state_transition": 1282}}, {"model": "template.statetransition", "pk": 1282, "fields": {"resulting_state": 1318, "next_state_transition": 1283}}, {"model": "template.statetransition", "pk": 1283, "fields": {"resulting_state": 1319, "next_state_transition": 1284}}, {"model": "template.statetransition", "pk": 1284, "fields": {"resulting_state": 1320, "next_state_transition": 1285}}, {"model": "template.statetransition", "pk": 1285, "fields": {"resulting_state": 1321, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1286, "fields": {"resulting_state": 1287, "next_state_transition": 1287}}, {"model": "template.statetransition", "pk": 1287, "fields": {"resulting_state": 1322, "next_state_transition": 1288}}, {"model": "template.statetransition", "pk": 1288, "fields": {"resulting_state": 1323, "next_state_transition": 1289}}, {"model": "template.statetransition", "pk": 1289, "fields": {"resulting_state": 1324, "next_state_transition": 1290}}, {"model": "template.statetransition", "pk": 1290, "fields": {"resulting_state": 1325, "next_state_transition": 1291}}, {"model": "template.statetransition", "pk": 1291, "fields": {"resulting_state": 1326, "next_state_transition": 1292}}, {"model": "template.statetransition", "pk": 1292, "fields": {"resulting_state": 1327, "next_state_transition": 1293}}, {"model": "template.statetransition", "pk": 1293, "fields": {"resulting_state": 1328, "next_state_transition": 1294}}, {"model": "template.statetransition", "pk": 1294, "fields": {"resulting_state": 1329, "next_state_transition": 1295}}, {"model": "template.statetransition", "pk": 1295, "fields": {"resulting_state": 1330, "next_state_transition": 1296}}, {"model": "template.statetransition", "pk": 1296, "fields": {"resulting_state": 1331, "next_state_transition": 1297}}, {"model": "template.statetransition", "pk": 1297, "fields": {"resulting_state": 1332, "next_state_transition": 1298}}, {"model": "template.statetransition", "pk": 1298, "fields": {"resulting_state": 1333, "next_state_transition": 1299}}, {"model": "template.statetransition", "pk": 1299, "fields": {"resulting_state": 1334, "next_state_transition": 1300}}, {"model": "template.statetransition", "pk": 1300, "fields": {"resulting_state": 1335, "next_state_transition": 1301}}, {"model": "template.statetransition", "pk": 1301, "fields": {"resulting_state": 1336, "next_state_transition": 1302}}, {"model": "template.statetransition", "pk": 1302, "fields": {"resulting_state": 1337, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1303, "fields": {"resulting_state": 1286, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1304, "fields": {"resulting_state": 1285, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1305, "fields": {"resulting_state": 1284, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1306, "fields": {"resulting_state": 1283, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1307, "fields": {"resulting_state": 1282, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1308, "fields": {"resulting_state": 1281, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1309, "fields": {"resulting_state": 1344, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1310, "fields": {"resulting_state": 1343, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1311, "fields": {"resulting_state": 1342, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1312, "fields": {"resulting_state": 1341, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1313, "fields": {"resulting_state": 1340, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1314, "fields": {"resulting_state": 1339, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1315, "fields": {"resulting_state": 1354, "next_state_transition": 1316}}, {"model": "template.statetransition", "pk": 1316, "fields": {"resulting_state": 1355, "next_state_transition": 1317}}, {"model": "template.statetransition", "pk": 1317, "fields": {"resulting_state": 1356, "next_state_transition": 1318}}, {"model": "template.statetransition", "pk": 1318, "fields": {"resulting_state": 1357, "next_state_transition": 1319}}, {"model": "template.statetransition", "pk": 1319, "fields": {"resulting_state": 1358, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1320, "fields": {"resulting_state": 1353, "next_state_transition": 1321}}, {"model": "template.statetransition", "pk": 1321, "fields": {"resulting_state": 1359, "next_state_transition": 1322}}, {"model": "template.statetransition", "pk": 1322, "fields": {"resulting_state": 1360, "next_state_transition": 1323}}, {"model": "template.statetransition", "pk": 1323, "fields": {"resulting_state": 1361, "next_state_transition": 1324}}, {"model": "template.statetransition", "pk": 1324, "fields": {"resulting_state": 1362, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1325, "fields": {"resulting_state": 1352, "next_state_transition": 1326}}, {"model": "template.statetransition", "pk": 1326, "fields": {"resulting_state": 1363, "next_state_transition": 1327}}, {"model": "template.statetransition", "pk": 1327, "fields": {"resulting_state": 1364, "next_state_transition": 1328}}, {"model": "template.statetransition", "pk": 1328, "fields": {"resulting_state": 1365, "next_state_transition": 1329}}, {"model": "template.statetransition", "pk": 1329, "fields": {"resulting_state": 1366, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1330, "fields": {"resulting_state": 1351, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1331, "fields": {"resulting_state": 1350, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1332, "fields": {"resulting_state": 1349, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1333, "fields": {"resulting_state": 1348, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1334, "fields": {"resulting_state": 1347, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1335, "fields": {"resulting_state": 1346, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1336, "fields": {"resulting_state": 1373, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1337, "fields": {"resulting_state": 1372, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1338, "fields": {"resulting_state": 1371, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1339, "fields": {"resulting_state": 1370, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1340, "fields": {"resulting_state": 1369, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1341, "fields": {"resulting_state": 1368, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1342, "fields": {"resulting_state": 1383, "next_state_transition": 1343}}, {"model": "template.statetransition", "pk": 1343, "fields": {"resulting_state": 1384, "next_state_transition": 1344}}, {"model": "template.statetransition", "pk": 1344, "fields": {"resulting_state": 1385, "next_state_transition": 1345}}, {"model": "template.statetransition", "pk": 1345, "fields": {"resulting_state": 1386, "next_state_transition": 1346}}, {"model": "template.statetransition", "pk": 1346, "fields": {"resulting_state": 1387, "next_state_transition": 1347}}, {"model": "template.statetransition", "pk": 1347, "fields": {"resulting_state": 1388, "next_state_transition": 1348}}, {"model": "template.statetransition", "pk": 1348, "fields": {"resulting_state": 1389, "next_state_transition": 1349}}, {"model": "template.statetransition", "pk": 1349, "fields": {"resulting_state": 1390, "next_state_transition": 1350}}, {"model": "template.statetransition", "pk": 1350, "fields": {"resulting_state": 1391, "next_state_transition": 1351}}, {"model": "template.statetransition", "pk": 1351, "fields": {"resulting_state": 1392, "next_state_transition": 1352}}, {"model": "template.statetransition", "pk": 1352, "fields": {"resulting_state": 1393, "next_state_transition": 1353}}, {"model": "template.statetransition", "pk": 1353, "fields": {"resulting_state": 1394, "next_state_transition": 1354}}, {"model": "template.statetransition", "pk": 1354, "fields": {"resulting_state": 1395, "next_state_transition": 1355}}, {"model": "template.statetransition", "pk": 1355, "fields": {"resulting_state": 1396, "next_state_transition": 1356}}, {"model": "template.statetransition", "pk": 1356, "fields": {"resulting_state": 1397, "next_state_transition": 1357}}, {"model": "template.statetransition", "pk": 1357, "fields": {"resulting_state": 1398, "next_state_transition": 1358}}, {"model": "template.statetransition", "pk": 1358, "fields": {"resulting_state": 1399, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1359, "fields": {"resulting_state": 1382, "next_state_transition": 1360}}, {"model": "template.statetransition", "pk": 1360, "fields": {"resulting_state": 1400, "next_state_transition": 1361}}, {"model": "template.statetransition", "pk": 1361, "fields": {"resulting_state": 1401, "next_state_transition": 1362}}, {"model": "template.statetransition", "pk": 1362, "fields": {"resulting_state": 1402, "next_state_transition": 1363}}, {"model": "template.statetransition", "pk": 1363, "fields": {"resulting_state": 1403, "next_state_transition": 1364}}, {"model": "template.statetransition", "pk": 1364, "fields": {"resulting_state": 1404, "next_state_transition": 1365}}, {"model": "template.statetransition", "pk": 1365, "fields": {"resulting_state": 1405, "next_state_transition": 1366}}, {"model": "template.statetransition", "pk": 1366, "fields": {"resulting_state": 1406, "next_state_transition": 1367}}, {"model": "template.statetransition", "pk": 1367, "fields": {"resulting_state": 1407, "next_state_transition": 1368}}, {"model": "template.statetransition", "pk": 1368, "fields": {"resulting_state": 1408, "next_state_transition": 1369}}, {"model": "template.statetransition", "pk": 1369, "fields": {"resulting_state": 1409, "next_state_transition": 1370}}, {"model": "template.statetransition", "pk": 1370, "fields": {"resulting_state": 1410, "next_state_transition": 1371}}, {"model": "template.statetransition", "pk": 1371, "fields": {"resulting_state": 1411, "next_state_transition": 1372}}, {"model": "template.statetransition", "pk": 1372, "fields": {"resulting_state": 1412, "next_state_transition": 1373}}, {"model": "template.statetransition", "pk": 1373, "fields": {"resulting_state": 1413, "next_state_transition": 1374}}, {"model": "template.statetransition", "pk": 1374, "fields": {"resulting_state": 1414, "next_state_transition": 1375}}, {"model": "template.statetransition", "pk": 1375, "fields": {"resulting_state": 1415, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1376, "fields": {"resulting_state": 1381, "next_state_transition": 1377}}, {"model": "template.statetransition", "pk": 1377, "fields": {"resulting_state": 1416, "next_state_transition": 1378}}, {"model": "template.statetransition", "pk": 1378, "fields": {"resulting_state": 1417, "next_state_transition": 1379}}, {"model": "template.statetransition", "pk": 1379, "fields": {"resulting_state": 1418, "next_state_transition": 1380}}, {"model": "template.statetransition", "pk": 1380, "fields": {"resulting_state": 1419, "next_state_transition": 1381}}, {"model": "template.statetransition", "pk": 1381, "fields": {"resulting_state": 1420, "next_state_transition": 1382}}, {"model": "template.statetransition", "pk": 1382, "fields": {"resulting_state": 1421, "next_state_transition": 1383}}, {"model": "template.statetransition", "pk": 1383, "fields": {"resulting_state": 1422, "next_state_transition": 1384}}, {"model": "template.statetransition", "pk": 1384, "fields": {"resulting_state": 1423, "next_state_transition": 1385}}, {"model": "template.statetransition", "pk": 1385, "fields": {"resulting_state": 1424, "next_state_transition": 1386}}, {"model": "template.statetransition", "pk": 1386, "fields": {"resulting_state": 1425, "next_state_transition": 1387}}, {"model": "template.statetransition", "pk": 1387, "fields": {"resulting_state": 1426, "next_state_transition": 1388}}, {"model": "template.statetransition", "pk": 1388, "fields": {"resulting_state": 1427, "next_state_transition": 1389}}, {"model": "template.statetransition", "pk": 1389, "fields": {"resulting_state": 1428, "next_state_transition": 1390}}, {"model": "template.statetransition", "pk": 1390, "fields": {"resulting_state": 1429, "next_state_transition": 1391}}, {"model": "template.statetransition", "pk": 1391, "fields": {"resulting_state": 1430, "next_state_transition": 1392}}, {"model": "template.statetransition", "pk": 1392, "fields": {"resulting_state": 1431, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1393, "fields": {"resulting_state": 1380, "next_state_transition": 1394}}, {"model": "template.statetransition", "pk": 1394, "fields": {"resulting_state": 1432, "next_state_transition": 1395}}, {"model": "template.statetransition", "pk": 1395, "fields": {"resulting_state": 1433, "next_state_transition": 1396}}, {"model": "template.statetransition", "pk": 1396, "fields": {"resulting_state": 1434, "next_state_transition": 1397}}, {"model": "template.statetransition", "pk": 1397, "fields": {"resulting_state": 1435, "next_state_transition": 1398}}, {"model": "template.statetransition", "pk": 1398, "fields": {"resulting_state": 1436, "next_state_transition": 1399}}, {"model": "template.statetransition", "pk": 1399, "fields": {"resulting_state": 1437, "next_state_transition": 1400}}, {"model": "template.statetransition", "pk": 1400, "fields": {"resulting_state": 1438, "next_state_transition": 1401}}, {"model": "template.statetransition", "pk": 1401, "fields": {"resulting_state": 1439, "next_state_transition": 1402}}, {"model": "template.statetransition", "pk": 1402, "fields": {"resulting_state": 1440, "next_state_transition": 1403}}, {"model": "template.statetransition", "pk": 1403, "fields": {"resulting_state": 1441, "next_state_transition": 1404}}, {"model": "template.statetransition", "pk": 1404, "fields": {"resulting_state": 1442, "next_state_transition": 1405}}, {"model": "template.statetransition", "pk": 1405, "fields": {"resulting_state": 1443, "next_state_transition": 1406}}, {"model": "template.statetransition", "pk": 1406, "fields": {"resulting_state": 1444, "next_state_transition": 1407}}, {"model": "template.statetransition", "pk": 1407, "fields": {"resulting_state": 1445, "next_state_transition": 1408}}, {"model": "template.statetransition", "pk": 1408, "fields": {"resulting_state": 1446, "next_state_transition": 1409}}, {"model": "template.statetransition", "pk": 1409, "fields": {"resulting_state": 1447, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1410, "fields": {"resulting_state": 1379, "next_state_transition": 1411}}, {"model": "template.statetransition", "pk": 1411, "fields": {"resulting_state": 1448, "next_state_transition": 1412}}, {"model": "template.statetransition", "pk": 1412, "fields": {"resulting_state": 1449, "next_state_transition": 1413}}, {"model": "template.statetransition", "pk": 1413, "fields": {"resulting_state": 1450, "next_state_transition": 1414}}, {"model": "template.statetransition", "pk": 1414, "fields": {"resulting_state": 1451, "next_state_transition": 1415}}, {"model": "template.statetransition", "pk": 1415, "fields": {"resulting_state": 1452, "next_state_transition": 1416}}, {"model": "template.statetransition", "pk": 1416, "fields": {"resulting_state": 1453, "next_state_transition": 1417}}, {"model": "template.statetransition", "pk": 1417, "fields": {"resulting_state": 1454, "next_state_transition": 1418}}, {"model": "template.statetransition", "pk": 1418, "fields": {"resulting_state": 1455, "next_state_transition": 1419}}, {"model": "template.statetransition", "pk": 1419, "fields": {"resulting_state": 1456, "next_state_transition": 1420}}, {"model": "template.statetransition", "pk": 1420, "fields": {"resulting_state": 1457, "next_state_transition": 1421}}, {"model": "template.statetransition", "pk": 1421, "fields": {"resulting_state": 1458, "next_state_transition": 1422}}, {"model": "template.statetransition", "pk": 1422, "fields": {"resulting_state": 1459, "next_state_transition": 1423}}, {"model": "template.statetransition", "pk": 1423, "fields": {"resulting_state": 1460, "next_state_transition": 1424}}, {"model": "template.statetransition", "pk": 1424, "fields": {"resulting_state": 1461, "next_state_transition": 1425}}, {"model": "template.statetransition", "pk": 1425, "fields": {"resulting_state": 1462, "next_state_transition": 1426}}, {"model": "template.statetransition", "pk": 1426, "fields": {"resulting_state": 1463, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1427, "fields": {"resulting_state": 1378, "next_state_transition": 1428}}, {"model": "template.statetransition", "pk": 1428, "fields": {"resulting_state": 1464, "next_state_transition": 1429}}, {"model": "template.statetransition", "pk": 1429, "fields": {"resulting_state": 1465, "next_state_transition": 1430}}, {"model": "template.statetransition", "pk": 1430, "fields": {"resulting_state": 1466, "next_state_transition": 1431}}, {"model": "template.statetransition", "pk": 1431, "fields": {"resulting_state": 1467, "next_state_transition": 1432}}, {"model": "template.statetransition", "pk": 1432, "fields": {"resulting_state": 1468, "next_state_transition": 1433}}, {"model": "template.statetransition", "pk": 1433, "fields": {"resulting_state": 1469, "next_state_transition": 1434}}, {"model": "template.statetransition", "pk": 1434, "fields": {"resulting_state": 1470, "next_state_transition": 1435}}, {"model": "template.statetransition", "pk": 1435, "fields": {"resulting_state": 1471, "next_state_transition": 1436}}, {"model": "template.statetransition", "pk": 1436, "fields": {"resulting_state": 1472, "next_state_transition": 1437}}, {"model": "template.statetransition", "pk": 1437, "fields": {"resulting_state": 1473, "next_state_transition": 1438}}, {"model": "template.statetransition", "pk": 1438, "fields": {"resulting_state": 1474, "next_state_transition": 1439}}, {"model": "template.statetransition", "pk": 1439, "fields": {"resulting_state": 1475, "next_state_transition": 1440}}, {"model": "template.statetransition", "pk": 1440, "fields": {"resulting_state": 1476, "next_state_transition": 1441}}, {"model": "template.statetransition", "pk": 1441, "fields": {"resulting_state": 1477, "next_state_transition": 1442}}, {"model": "template.statetransition", "pk": 1442, "fields": {"resulting_state": 1478, "next_state_transition": 1443}}, {"model": "template.statetransition", "pk": 1443, "fields": {"resulting_state": 1479, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1444, "fields": {"resulting_state": 1377, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1445, "fields": {"resulting_state": 1376, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1446, "fields": {"resulting_state": 1375, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1447, "fields": {"resulting_state": 1483, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1448, "fields": {"resulting_state": 1482, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1449, "fields": {"resulting_state": 1481, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1450, "fields": {"resulting_state": 1493, "next_state_transition": 1451}}, {"model": "template.statetransition", "pk": 1451, "fields": {"resulting_state": 1494, "next_state_transition": 1452}}, {"model": "template.statetransition", "pk": 1452, "fields": {"resulting_state": 1495, "next_state_transition": 1453}}, {"model": "template.statetransition", "pk": 1453, "fields": {"resulting_state": 1496, "next_state_transition": 1454}}, {"model": "template.statetransition", "pk": 1454, "fields": {"resulting_state": 1497, "next_state_transition": 1455}}, {"model": "template.statetransition", "pk": 1455, "fields": {"resulting_state": 1498, "next_state_transition": 1456}}, {"model": "template.statetransition", "pk": 1456, "fields": {"resulting_state": 1499, "next_state_transition": 1457}}, {"model": "template.statetransition", "pk": 1457, "fields": {"resulting_state": 1500, "next_state_transition": 1458}}, {"model": "template.statetransition", "pk": 1458, "fields": {"resulting_state": 1501, "next_state_transition": 1459}}, {"model": "template.statetransition", "pk": 1459, "fields": {"resulting_state": 1502, "next_state_transition": 1460}}, {"model": "template.statetransition", "pk": 1460, "fields": {"resulting_state": 1503, "next_state_transition": 1461}}, {"model": "template.statetransition", "pk": 1461, "fields": {"resulting_state": 1504, "next_state_transition": 1462}}, {"model": "template.statetransition", "pk": 1462, "fields": {"resulting_state": 1505, "next_state_transition": 1463}}, {"model": "template.statetransition", "pk": 1463, "fields": {"resulting_state": 1506, "next_state_transition": 1464}}, {"model": "template.statetransition", "pk": 1464, "fields": {"resulting_state": 1507, "next_state_transition": 1465}}, {"model": "template.statetransition", "pk": 1465, "fields": {"resulting_state": 1508, "next_state_transition": 1466}}, {"model": "template.statetransition", "pk": 1466, "fields": {"resulting_state": 1509, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1467, "fields": {"resulting_state": 1492, "next_state_transition": 1468}}, {"model": "template.statetransition", "pk": 1468, "fields": {"resulting_state": 1510, "next_state_transition": 1469}}, {"model": "template.statetransition", "pk": 1469, "fields": {"resulting_state": 1511, "next_state_transition": 1470}}, {"model": "template.statetransition", "pk": 1470, "fields": {"resulting_state": 1512, "next_state_transition": 1471}}, {"model": "template.statetransition", "pk": 1471, "fields": {"resulting_state": 1513, "next_state_transition": 1472}}, {"model": "template.statetransition", "pk": 1472, "fields": {"resulting_state": 1514, "next_state_transition": 1473}}, {"model": "template.statetransition", "pk": 1473, "fields": {"resulting_state": 1515, "next_state_transition": 1474}}, {"model": "template.statetransition", "pk": 1474, "fields": {"resulting_state": 1516, "next_state_transition": 1475}}, {"model": "template.statetransition", "pk": 1475, "fields": {"resulting_state": 1517, "next_state_transition": 1476}}, {"model": "template.statetransition", "pk": 1476, "fields": {"resulting_state": 1518, "next_state_transition": 1477}}, {"model": "template.statetransition", "pk": 1477, "fields": {"resulting_state": 1519, "next_state_transition": 1478}}, {"model": "template.statetransition", "pk": 1478, "fields": {"resulting_state": 1520, "next_state_transition": 1479}}, {"model": "template.statetransition", "pk": 1479, "fields": {"resulting_state": 1521, "next_state_transition": 1480}}, {"model": "template.statetransition", "pk": 1480, "fields": {"resulting_state": 1522, "next_state_transition": 1481}}, {"model": "template.statetransition", "pk": 1481, "fields": {"resulting_state": 1523, "next_state_transition": 1482}}, {"model": "template.statetransition", "pk": 1482, "fields": {"resulting_state": 1524, "next_state_transition": 1483}}, {"model": "template.statetransition", "pk": 1483, "fields": {"resulting_state": 1525, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1484, "fields": {"resulting_state": 1491, "next_state_transition": 1485}}, {"model": "template.statetransition", "pk": 1485, "fields": {"resulting_state": 1526, "next_state_transition": 1486}}, {"model": "template.statetransition", "pk": 1486, "fields": {"resulting_state": 1527, "next_state_transition": 1487}}, {"model": "template.statetransition", "pk": 1487, "fields": {"resulting_state": 1528, "next_state_transition": 1488}}, {"model": "template.statetransition", "pk": 1488, "fields": {"resulting_state": 1529, "next_state_transition": 1489}}, {"model": "template.statetransition", "pk": 1489, "fields": {"resulting_state": 1530, "next_state_transition": 1490}}, {"model": "template.statetransition", "pk": 1490, "fields": {"resulting_state": 1531, "next_state_transition": 1491}}, {"model": "template.statetransition", "pk": 1491, "fields": {"resulting_state": 1532, "next_state_transition": 1492}}, {"model": "template.statetransition", "pk": 1492, "fields": {"resulting_state": 1533, "next_state_transition": 1493}}, {"model": "template.statetransition", "pk": 1493, "fields": {"resulting_state": 1534, "next_state_transition": 1494}}, {"model": "template.statetransition", "pk": 1494, "fields": {"resulting_state": 1535, "next_state_transition": 1495}}, {"model": "template.statetransition", "pk": 1495, "fields": {"resulting_state": 1536, "next_state_transition": 1496}}, {"model": "template.statetransition", "pk": 1496, "fields": {"resulting_state": 1537, "next_state_transition": 1497}}, {"model": "template.statetransition", "pk": 1497, "fields": {"resulting_state": 1538, "next_state_transition": 1498}}, {"model": "template.statetransition", "pk": 1498, "fields": {"resulting_state": 1539, "next_state_transition": 1499}}, {"model": "template.statetransition", "pk": 1499, "fields": {"resulting_state": 1540, "next_state_transition": 1500}}, {"model": "template.statetransition", "pk": 1500, "fields": {"resulting_state": 1541, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1501, "fields": {"resulting_state": 1490, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1502, "fields": {"resulting_state": 1489, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1503, "fields": {"resulting_state": 1488, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1504, "fields": {"resulting_state": 1487, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1505, "fields": {"resulting_state": 1486, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1506, "fields": {"resulting_state": 1485, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1507, "fields": {"resulting_state": 1548, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1508, "fields": {"resulting_state": 1547, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1509, "fields": {"resulting_state": 1546, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1510, "fields": {"resulting_state": 1545, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1511, "fields": {"resulting_state": 1544, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1512, "fields": {"resulting_state": 1543, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1513, "fields": {"resulting_state": 1558, "next_state_transition": 1514}}, {"model": "template.statetransition", "pk": 1514, "fields": {"resulting_state": 1559, "next_state_transition": 1515}}, {"model": "template.statetransition", "pk": 1515, "fields": {"resulting_state": 1560, "next_state_transition": 1516}}, {"model": "template.statetransition", "pk": 1516, "fields": {"resulting_state": 1561, "next_state_transition": 1517}}, {"model": "template.statetransition", "pk": 1517, "fields": {"resulting_state": 1562, "next_state_transition": 1518}}, {"model": "template.statetransition", "pk": 1518, "fields": {"resulting_state": 1563, "next_state_transition": 1519}}, {"model": "template.statetransition", "pk": 1519, "fields": {"resulting_state": 1564, "next_state_transition": 1520}}, {"model": "template.statetransition", "pk": 1520, "fields": {"resulting_state": 1565, "next_state_transition": 1521}}, {"model": "template.statetransition", "pk": 1521, "fields": {"resulting_state": 1566, "next_state_transition": 1522}}, {"model": "template.statetransition", "pk": 1522, "fields": {"resulting_state": 1567, "next_state_transition": 1523}}, {"model": "template.statetransition", "pk": 1523, "fields": {"resulting_state": 1568, "next_state_transition": 1524}}, {"model": "template.statetransition", "pk": 1524, "fields": {"resulting_state": 1569, "next_state_transition": 1525}}, {"model": "template.statetransition", "pk": 1525, "fields": {"resulting_state": 1570, "next_state_transition": 1526}}, {"model": "template.statetransition", "pk": 1526, "fields": {"resulting_state": 1571, "next_state_transition": 1527}}, {"model": "template.statetransition", "pk": 1527, "fields": {"resulting_state": 1572, "next_state_transition": 1528}}, {"model": "template.statetransition", "pk": 1528, "fields": {"resulting_state": 1573, "next_state_transition": 1529}}, {"model": "template.statetransition", "pk": 1529, "fields": {"resulting_state": 1574, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1530, "fields": {"resulting_state": 1557, "next_state_transition": 1531}}, {"model": "template.statetransition", "pk": 1531, "fields": {"resulting_state": 1575, "next_state_transition": 1532}}, {"model": "template.statetransition", "pk": 1532, "fields": {"resulting_state": 1576, "next_state_transition": 1533}}, {"model": "template.statetransition", "pk": 1533, "fields": {"resulting_state": 1577, "next_state_transition": 1534}}, {"model": "template.statetransition", "pk": 1534, "fields": {"resulting_state": 1578, "next_state_transition": 1535}}, {"model": "template.statetransition", "pk": 1535, "fields": {"resulting_state": 1579, "next_state_transition": 1536}}, {"model": "template.statetransition", "pk": 1536, "fields": {"resulting_state": 1580, "next_state_transition": 1537}}, {"model": "template.statetransition", "pk": 1537, "fields": {"resulting_state": 1581, "next_state_transition": 1538}}, {"model": "template.statetransition", "pk": 1538, "fields": {"resulting_state": 1582, "next_state_transition": 1539}}, {"model": "template.statetransition", "pk": 1539, "fields": {"resulting_state": 1583, "next_state_transition": 1540}}, {"model": "template.statetransition", "pk": 1540, "fields": {"resulting_state": 1584, "next_state_transition": 1541}}, {"model": "template.statetransition", "pk": 1541, "fields": {"resulting_state": 1585, "next_state_transition": 1542}}, {"model": "template.statetransition", "pk": 1542, "fields": {"resulting_state": 1586, "next_state_transition": 1543}}, {"model": "template.statetransition", "pk": 1543, "fields": {"resulting_state": 1587, "next_state_transition": 1544}}, {"model": "template.statetransition", "pk": 1544, "fields": {"resulting_state": 1588, "next_state_transition": 1545}}, {"model": "template.statetransition", "pk": 1545, "fields": {"resulting_state": 1589, "next_state_transition": 1546}}, {"model": "template.statetransition", "pk": 1546, "fields": {"resulting_state": 1590, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1547, "fields": {"resulting_state": 1556, "next_state_transition": 1548}}, {"model": "template.statetransition", "pk": 1548, "fields": {"resulting_state": 1591, "next_state_transition": 1549}}, {"model": "template.statetransition", "pk": 1549, "fields": {"resulting_state": 1592, "next_state_transition": 1550}}, {"model": "template.statetransition", "pk": 1550, "fields": {"resulting_state": 1593, "next_state_transition": 1551}}, {"model": "template.statetransition", "pk": 1551, "fields": {"resulting_state": 1594, "next_state_transition": 1552}}, {"model": "template.statetransition", "pk": 1552, "fields": {"resulting_state": 1595, "next_state_transition": 1553}}, {"model": "template.statetransition", "pk": 1553, "fields": {"resulting_state": 1596, "next_state_transition": 1554}}, {"model": "template.statetransition", "pk": 1554, "fields": {"resulting_state": 1597, "next_state_transition": 1555}}, {"model": "template.statetransition", "pk": 1555, "fields": {"resulting_state": 1598, "next_state_transition": 1556}}, {"model": "template.statetransition", "pk": 1556, "fields": {"resulting_state": 1599, "next_state_transition": 1557}}, {"model": "template.statetransition", "pk": 1557, "fields": {"resulting_state": 1600, "next_state_transition": 1558}}, {"model": "template.statetransition", "pk": 1558, "fields": {"resulting_state": 1601, "next_state_transition": 1559}}, {"model": "template.statetransition", "pk": 1559, "fields": {"resulting_state": 1602, "next_state_transition": 1560}}, {"model": "template.statetransition", "pk": 1560, "fields": {"resulting_state": 1603, "next_state_transition": 1561}}, {"model": "template.statetransition", "pk": 1561, "fields": {"resulting_state": 1604, "next_state_transition": 1562}}, {"model": "template.statetransition", "pk": 1562, "fields": {"resulting_state": 1605, "next_state_transition": 1563}}, {"model": "template.statetransition", "pk": 1563, "fields": {"resulting_state": 1606, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1564, "fields": {"resulting_state": 1555, "next_state_transition": 1565}}, {"model": "template.statetransition", "pk": 1565, "fields": {"resulting_state": 1607, "next_state_transition": 1566}}, {"model": "template.statetransition", "pk": 1566, "fields": {"resulting_state": 1608, "next_state_transition": 1567}}, {"model": "template.statetransition", "pk": 1567, "fields": {"resulting_state": 1609, "next_state_transition": 1568}}, {"model": "template.statetransition", "pk": 1568, "fields": {"resulting_state": 1610, "next_state_transition": 1569}}, {"model": "template.statetransition", "pk": 1569, "fields": {"resulting_state": 1611, "next_state_transition": 1570}}, {"model": "template.statetransition", "pk": 1570, "fields": {"resulting_state": 1612, "next_state_transition": 1571}}, {"model": "template.statetransition", "pk": 1571, "fields": {"resulting_state": 1613, "next_state_transition": 1572}}, {"model": "template.statetransition", "pk": 1572, "fields": {"resulting_state": 1614, "next_state_transition": 1573}}, {"model": "template.statetransition", "pk": 1573, "fields": {"resulting_state": 1615, "next_state_transition": 1574}}, {"model": "template.statetransition", "pk": 1574, "fields": {"resulting_state": 1616, "next_state_transition": 1575}}, {"model": "template.statetransition", "pk": 1575, "fields": {"resulting_state": 1617, "next_state_transition": 1576}}, {"model": "template.statetransition", "pk": 1576, "fields": {"resulting_state": 1618, "next_state_transition": 1577}}, {"model": "template.statetransition", "pk": 1577, "fields": {"resulting_state": 1619, "next_state_transition": 1578}}, {"model": "template.statetransition", "pk": 1578, "fields": {"resulting_state": 1620, "next_state_transition": 1579}}, {"model": "template.statetransition", "pk": 1579, "fields": {"resulting_state": 1621, "next_state_transition": 1580}}, {"model": "template.statetransition", "pk": 1580, "fields": {"resulting_state": 1622, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1581, "fields": {"resulting_state": 1554, "next_state_transition": 1582}}, {"model": "template.statetransition", "pk": 1582, "fields": {"resulting_state": 1623, "next_state_transition": 1583}}, {"model": "template.statetransition", "pk": 1583, "fields": {"resulting_state": 1624, "next_state_transition": 1584}}, {"model": "template.statetransition", "pk": 1584, "fields": {"resulting_state": 1625, "next_state_transition": 1585}}, {"model": "template.statetransition", "pk": 1585, "fields": {"resulting_state": 1626, "next_state_transition": 1586}}, {"model": "template.statetransition", "pk": 1586, "fields": {"resulting_state": 1627, "next_state_transition": 1587}}, {"model": "template.statetransition", "pk": 1587, "fields": {"resulting_state": 1628, "next_state_transition": 1588}}, {"model": "template.statetransition", "pk": 1588, "fields": {"resulting_state": 1629, "next_state_transition": 1589}}, {"model": "template.statetransition", "pk": 1589, "fields": {"resulting_state": 1630, "next_state_transition": 1590}}, {"model": "template.statetransition", "pk": 1590, "fields": {"resulting_state": 1631, "next_state_transition": 1591}}, {"model": "template.statetransition", "pk": 1591, "fields": {"resulting_state": 1632, "next_state_transition": 1592}}, {"model": "template.statetransition", "pk": 1592, "fields": {"resulting_state": 1633, "next_state_transition": 1593}}, {"model": "template.statetransition", "pk": 1593, "fields": {"resulting_state": 1634, "next_state_transition": 1594}}, {"model": "template.statetransition", "pk": 1594, "fields": {"resulting_state": 1635, "next_state_transition": 1595}}, {"model": "template.statetransition", "pk": 1595, "fields": {"resulting_state": 1636, "next_state_transition": 1596}}, {"model": "template.statetransition", "pk": 1596, "fields": {"resulting_state": 1637, "next_state_transition": 1597}}, {"model": "template.statetransition", "pk": 1597, "fields": {"resulting_state": 1638, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1598, "fields": {"resulting_state": 1553, "next_state_transition": 1599}}, {"model": "template.statetransition", "pk": 1599, "fields": {"resulting_state": 1639, "next_state_transition": 1600}}, {"model": "template.statetransition", "pk": 1600, "fields": {"resulting_state": 1640, "next_state_transition": 1601}}, {"model": "template.statetransition", "pk": 1601, "fields": {"resulting_state": 1641, "next_state_transition": 1602}}, {"model": "template.statetransition", "pk": 1602, "fields": {"resulting_state": 1642, "next_state_transition": 1603}}, {"model": "template.statetransition", "pk": 1603, "fields": {"resulting_state": 1643, "next_state_transition": 1604}}, {"model": "template.statetransition", "pk": 1604, "fields": {"resulting_state": 1644, "next_state_transition": 1605}}, {"model": "template.statetransition", "pk": 1605, "fields": {"resulting_state": 1645, "next_state_transition": 1606}}, {"model": "template.statetransition", "pk": 1606, "fields": {"resulting_state": 1646, "next_state_transition": 1607}}, {"model": "template.statetransition", "pk": 1607, "fields": {"resulting_state": 1647, "next_state_transition": 1608}}, {"model": "template.statetransition", "pk": 1608, "fields": {"resulting_state": 1648, "next_state_transition": 1609}}, {"model": "template.statetransition", "pk": 1609, "fields": {"resulting_state": 1649, "next_state_transition": 1610}}, {"model": "template.statetransition", "pk": 1610, "fields": {"resulting_state": 1650, "next_state_transition": 1611}}, {"model": "template.statetransition", "pk": 1611, "fields": {"resulting_state": 1651, "next_state_transition": 1612}}, {"model": "template.statetransition", "pk": 1612, "fields": {"resulting_state": 1652, "next_state_transition": 1613}}, {"model": "template.statetransition", "pk": 1613, "fields": {"resulting_state": 1653, "next_state_transition": 1614}}, {"model": "template.statetransition", "pk": 1614, "fields": {"resulting_state": 1654, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1615, "fields": {"resulting_state": 1552, "next_state_transition": 1616}}, {"model": "template.statetransition", "pk": 1616, "fields": {"resulting_state": 1655, "next_state_transition": 1617}}, {"model": "template.statetransition", "pk": 1617, "fields": {"resulting_state": 1656, "next_state_transition": 1618}}, {"model": "template.statetransition", "pk": 1618, "fields": {"resulting_state": 1657, "next_state_transition": 1619}}, {"model": "template.statetransition", "pk": 1619, "fields": {"resulting_state": 1658, "next_state_transition": 1620}}, {"model": "template.statetransition", "pk": 1620, "fields": {"resulting_state": 1659, "next_state_transition": 1621}}, {"model": "template.statetransition", "pk": 1621, "fields": {"resulting_state": 1660, "next_state_transition": 1622}}, {"model": "template.statetransition", "pk": 1622, "fields": {"resulting_state": 1661, "next_state_transition": 1623}}, {"model": "template.statetransition", "pk": 1623, "fields": {"resulting_state": 1662, "next_state_transition": 1624}}, {"model": "template.statetransition", "pk": 1624, "fields": {"resulting_state": 1663, "next_state_transition": 1625}}, {"model": "template.statetransition", "pk": 1625, "fields": {"resulting_state": 1664, "next_state_transition": 1626}}, {"model": "template.statetransition", "pk": 1626, "fields": {"resulting_state": 1665, "next_state_transition": 1627}}, {"model": "template.statetransition", "pk": 1627, "fields": {"resulting_state": 1666, "next_state_transition": 1628}}, {"model": "template.statetransition", "pk": 1628, "fields": {"resulting_state": 1667, "next_state_transition": 1629}}, {"model": "template.statetransition", "pk": 1629, "fields": {"resulting_state": 1668, "next_state_transition": 1630}}, {"model": "template.statetransition", "pk": 1630, "fields": {"resulting_state": 1669, "next_state_transition": 1631}}, {"model": "template.statetransition", "pk": 1631, "fields": {"resulting_state": 1670, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1632, "fields": {"resulting_state": 1551, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1633, "fields": {"resulting_state": 1550, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1634, "fields": {"resulting_state": 1673, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1635, "fields": {"resulting_state": 1672, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1636, "fields": {"resulting_state": 1683, "next_state_transition": 1637}}, {"model": "template.statetransition", "pk": 1637, "fields": {"resulting_state": 1684, "next_state_transition": 1638}}, {"model": "template.statetransition", "pk": 1638, "fields": {"resulting_state": 1685, "next_state_transition": 1639}}, {"model": "template.statetransition", "pk": 1639, "fields": {"resulting_state": 1686, "next_state_transition": 1640}}, {"model": "template.statetransition", "pk": 1640, "fields": {"resulting_state": 1687, "next_state_transition": 1641}}, {"model": "template.statetransition", "pk": 1641, "fields": {"resulting_state": 1688, "next_state_transition": 1642}}, {"model": "template.statetransition", "pk": 1642, "fields": {"resulting_state": 1689, "next_state_transition": 1643}}, {"model": "template.statetransition", "pk": 1643, "fields": {"resulting_state": 1690, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1644, "fields": {"resulting_state": 1682, "next_state_transition": 1645}}, {"model": "template.statetransition", "pk": 1645, "fields": {"resulting_state": 1691, "next_state_transition": 1646}}, {"model": "template.statetransition", "pk": 1646, "fields": {"resulting_state": 1692, "next_state_transition": 1647}}, {"model": "template.statetransition", "pk": 1647, "fields": {"resulting_state": 1693, "next_state_transition": 1648}}, {"model": "template.statetransition", "pk": 1648, "fields": {"resulting_state": 1694, "next_state_transition": 1649}}, {"model": "template.statetransition", "pk": 1649, "fields": {"resulting_state": 1695, "next_state_transition": 1650}}, {"model": "template.statetransition", "pk": 1650, "fields": {"resulting_state": 1696, "next_state_transition": 1651}}, {"model": "template.statetransition", "pk": 1651, "fields": {"resulting_state": 1697, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1652, "fields": {"resulting_state": 1681, "next_state_transition": 1653}}, {"model": "template.statetransition", "pk": 1653, "fields": {"resulting_state": 1698, "next_state_transition": 1654}}, {"model": "template.statetransition", "pk": 1654, "fields": {"resulting_state": 1699, "next_state_transition": 1655}}, {"model": "template.statetransition", "pk": 1655, "fields": {"resulting_state": 1700, "next_state_transition": 1656}}, {"model": "template.statetransition", "pk": 1656, "fields": {"resulting_state": 1701, "next_state_transition": 1657}}, {"model": "template.statetransition", "pk": 1657, "fields": {"resulting_state": 1702, "next_state_transition": 1658}}, {"model": "template.statetransition", "pk": 1658, "fields": {"resulting_state": 1703, "next_state_transition": 1659}}, {"model": "template.statetransition", "pk": 1659, "fields": {"resulting_state": 1704, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1660, "fields": {"resulting_state": 1680, "next_state_transition": 1661}}, {"model": "template.statetransition", "pk": 1661, "fields": {"resulting_state": 1705, "next_state_transition": 1662}}, {"model": "template.statetransition", "pk": 1662, "fields": {"resulting_state": 1706, "next_state_transition": 1663}}, {"model": "template.statetransition", "pk": 1663, "fields": {"resulting_state": 1707, "next_state_transition": 1664}}, {"model": "template.statetransition", "pk": 1664, "fields": {"resulting_state": 1708, "next_state_transition": 1665}}, {"model": "template.statetransition", "pk": 1665, "fields": {"resulting_state": 1709, "next_state_transition": 1666}}, {"model": "template.statetransition", "pk": 1666, "fields": {"resulting_state": 1710, "next_state_transition": 1667}}, {"model": "template.statetransition", "pk": 1667, "fields": {"resulting_state": 1711, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1668, "fields": {"resulting_state": 1679, "next_state_transition": 1669}}, {"model": "template.statetransition", "pk": 1669, "fields": {"resulting_state": 1712, "next_state_transition": 1670}}, {"model": "template.statetransition", "pk": 1670, "fields": {"resulting_state": 1713, "next_state_transition": 1671}}, {"model": "template.statetransition", "pk": 1671, "fields": {"resulting_state": 1714, "next_state_transition": 1672}}, {"model": "template.statetransition", "pk": 1672, "fields": {"resulting_state": 1715, "next_state_transition": 1673}}, {"model": "template.statetransition", "pk": 1673, "fields": {"resulting_state": 1716, "next_state_transition": 1674}}, {"model": "template.statetransition", "pk": 1674, "fields": {"resulting_state": 1717, "next_state_transition": 1675}}, {"model": "template.statetransition", "pk": 1675, "fields": {"resulting_state": 1718, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1676, "fields": {"resulting_state": 1678, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1677, "fields": {"resulting_state": 1677, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1678, "fields": {"resulting_state": 1676, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1679, "fields": {"resulting_state": 1675, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1680, "fields": {"resulting_state": 1723, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1681, "fields": {"resulting_state": 1722, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1682, "fields": {"resulting_state": 1721, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1683, "fields": {"resulting_state": 1720, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1684, "fields": {"resulting_state": 1733, "next_state_transition": 1685}}, {"model": "template.statetransition", "pk": 1685, "fields": {"resulting_state": 1734, "next_state_transition": 1686}}, {"model": "template.statetransition", "pk": 1686, "fields": {"resulting_state": 1735, "next_state_transition": 1687}}, {"model": "template.statetransition", "pk": 1687, "fields": {"resulting_state": 1736, "next_state_transition": 1688}}, {"model": "template.statetransition", "pk": 1688, "fields": {"resulting_state": 1737, "next_state_transition": 1689}}, {"model": "template.statetransition", "pk": 1689, "fields": {"resulting_state": 1738, "next_state_transition": 1690}}, {"model": "template.statetransition", "pk": 1690, "fields": {"resulting_state": 1739, "next_state_transition": 1691}}, {"model": "template.statetransition", "pk": 1691, "fields": {"resulting_state": 1740, "next_state_transition": 1692}}, {"model": "template.statetransition", "pk": 1692, "fields": {"resulting_state": 1741, "next_state_transition": 1693}}, {"model": "template.statetransition", "pk": 1693, "fields": {"resulting_state": 1742, "next_state_transition": 1694}}, {"model": "template.statetransition", "pk": 1694, "fields": {"resulting_state": 1743, "next_state_transition": 1695}}, {"model": "template.statetransition", "pk": 1695, "fields": {"resulting_state": 1744, "next_state_transition": 1696}}, {"model": "template.statetransition", "pk": 1696, "fields": {"resulting_state": 1745, "next_state_transition": 1697}}, {"model": "template.statetransition", "pk": 1697, "fields": {"resulting_state": 1746, "next_state_transition": 1698}}, {"model": "template.statetransition", "pk": 1698, "fields": {"resulting_state": 1747, "next_state_transition": 1699}}, {"model": "template.statetransition", "pk": 1699, "fields": {"resulting_state": 1748, "next_state_transition": 1700}}, {"model": "template.statetransition", "pk": 1700, "fields": {"resulting_state": 1749, "next_state_transition": 1701}}, {"model": "template.statetransition", "pk": 1701, "fields": {"resulting_state": 1750, "next_state_transition": 1702}}, {"model": "template.statetransition", "pk": 1702, "fields": {"resulting_state": 1751, "next_state_transition": 1703}}, {"model": "template.statetransition", "pk": 1703, "fields": {"resulting_state": 1752, "next_state_transition": 1704}}, {"model": "template.statetransition", "pk": 1704, "fields": {"resulting_state": 1753, "next_state_transition": 1705}}, {"model": "template.statetransition", "pk": 1705, "fields": {"resulting_state": 1754, "next_state_transition": 1706}}, {"model": "template.statetransition", "pk": 1706, "fields": {"resulting_state": 1755, "next_state_transition": 1707}}, {"model": "template.statetransition", "pk": 1707, "fields": {"resulting_state": 1756, "next_state_transition": 1708}}, {"model": "template.statetransition", "pk": 1708, "fields": {"resulting_state": 1757, "next_state_transition": 1709}}, {"model": "template.statetransition", "pk": 1709, "fields": {"resulting_state": 1758, "next_state_transition": 1710}}, {"model": "template.statetransition", "pk": 1710, "fields": {"resulting_state": 1759, "next_state_transition": 1711}}, {"model": "template.statetransition", "pk": 1711, "fields": {"resulting_state": 1760, "next_state_transition": 1712}}, {"model": "template.statetransition", "pk": 1712, "fields": {"resulting_state": 1761, "next_state_transition": 1713}}, {"model": "template.statetransition", "pk": 1713, "fields": {"resulting_state": 1762, "next_state_transition": 1714}}, {"model": "template.statetransition", "pk": 1714, "fields": {"resulting_state": 1763, "next_state_transition": 1715}}, {"model": "template.statetransition", "pk": 1715, "fields": {"resulting_state": 1764, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1716, "fields": {"resulting_state": 1732, "next_state_transition": 1717}}, {"model": "template.statetransition", "pk": 1717, "fields": {"resulting_state": 1765, "next_state_transition": 1718}}, {"model": "template.statetransition", "pk": 1718, "fields": {"resulting_state": 1766, "next_state_transition": 1719}}, {"model": "template.statetransition", "pk": 1719, "fields": {"resulting_state": 1767, "next_state_transition": 1720}}, {"model": "template.statetransition", "pk": 1720, "fields": {"resulting_state": 1768, "next_state_transition": 1721}}, {"model": "template.statetransition", "pk": 1721, "fields": {"resulting_state": 1769, "next_state_transition": 1722}}, {"model": "template.statetransition", "pk": 1722, "fields": {"resulting_state": 1770, "next_state_transition": 1723}}, {"model": "template.statetransition", "pk": 1723, "fields": {"resulting_state": 1771, "next_state_transition": 1724}}, {"model": "template.statetransition", "pk": 1724, "fields": {"resulting_state": 1772, "next_state_transition": 1725}}, {"model": "template.statetransition", "pk": 1725, "fields": {"resulting_state": 1773, "next_state_transition": 1726}}, {"model": "template.statetransition", "pk": 1726, "fields": {"resulting_state": 1774, "next_state_transition": 1727}}, {"model": "template.statetransition", "pk": 1727, "fields": {"resulting_state": 1775, "next_state_transition": 1728}}, {"model": "template.statetransition", "pk": 1728, "fields": {"resulting_state": 1776, "next_state_transition": 1729}}, {"model": "template.statetransition", "pk": 1729, "fields": {"resulting_state": 1777, "next_state_transition": 1730}}, {"model": "template.statetransition", "pk": 1730, "fields": {"resulting_state": 1778, "next_state_transition": 1731}}, {"model": "template.statetransition", "pk": 1731, "fields": {"resulting_state": 1779, "next_state_transition": 1732}}, {"model": "template.statetransition", "pk": 1732, "fields": {"resulting_state": 1780, "next_state_transition": 1733}}, {"model": "template.statetransition", "pk": 1733, "fields": {"resulting_state": 1781, "next_state_transition": 1734}}, {"model": "template.statetransition", "pk": 1734, "fields": {"resulting_state": 1782, "next_state_transition": 1735}}, {"model": "template.statetransition", "pk": 1735, "fields": {"resulting_state": 1783, "next_state_transition": 1736}}, {"model": "template.statetransition", "pk": 1736, "fields": {"resulting_state": 1784, "next_state_transition": 1737}}, {"model": "template.statetransition", "pk": 1737, "fields": {"resulting_state": 1785, "next_state_transition": 1738}}, {"model": "template.statetransition", "pk": 1738, "fields": {"resulting_state": 1786, "next_state_transition": 1739}}, {"model": "template.statetransition", "pk": 1739, "fields": {"resulting_state": 1787, "next_state_transition": 1740}}, {"model": "template.statetransition", "pk": 1740, "fields": {"resulting_state": 1788, "next_state_transition": 1741}}, {"model": "template.statetransition", "pk": 1741, "fields": {"resulting_state": 1789, "next_state_transition": 1742}}, {"model": "template.statetransition", "pk": 1742, "fields": {"resulting_state": 1790, "next_state_transition": 1743}}, {"model": "template.statetransition", "pk": 1743, "fields": {"resulting_state": 1791, "next_state_transition": 1744}}, {"model": "template.statetransition", "pk": 1744, "fields": {"resulting_state": 1792, "next_state_transition": 1745}}, {"model": "template.statetransition", "pk": 1745, "fields": {"resulting_state": 1793, "next_state_transition": 1746}}, {"model": "template.statetransition", "pk": 1746, "fields": {"resulting_state": 1794, "next_state_transition": 1747}}, {"model": "template.statetransition", "pk": 1747, "fields": {"resulting_state": 1795, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1748, "fields": {"resulting_state": 1731, "next_state_transition": 1749}}, {"model": "template.statetransition", "pk": 1749, "fields": {"resulting_state": 1796, "next_state_transition": 1750}}, {"model": "template.statetransition", "pk": 1750, "fields": {"resulting_state": 1797, "next_state_transition": 1751}}, {"model": "template.statetransition", "pk": 1751, "fields": {"resulting_state": 1798, "next_state_transition": 1752}}, {"model": "template.statetransition", "pk": 1752, "fields": {"resulting_state": 1799, "next_state_transition": 1753}}, {"model": "template.statetransition", "pk": 1753, "fields": {"resulting_state": 1800, "next_state_transition": 1754}}, {"model": "template.statetransition", "pk": 1754, "fields": {"resulting_state": 1801, "next_state_transition": 1755}}, {"model": "template.statetransition", "pk": 1755, "fields": {"resulting_state": 1802, "next_state_transition": 1756}}, {"model": "template.statetransition", "pk": 1756, "fields": {"resulting_state": 1803, "next_state_transition": 1757}}, {"model": "template.statetransition", "pk": 1757, "fields": {"resulting_state": 1804, "next_state_transition": 1758}}, {"model": "template.statetransition", "pk": 1758, "fields": {"resulting_state": 1805, "next_state_transition": 1759}}, {"model": "template.statetransition", "pk": 1759, "fields": {"resulting_state": 1806, "next_state_transition": 1760}}, {"model": "template.statetransition", "pk": 1760, "fields": {"resulting_state": 1807, "next_state_transition": 1761}}, {"model": "template.statetransition", "pk": 1761, "fields": {"resulting_state": 1808, "next_state_transition": 1762}}, {"model": "template.statetransition", "pk": 1762, "fields": {"resulting_state": 1809, "next_state_transition": 1763}}, {"model": "template.statetransition", "pk": 1763, "fields": {"resulting_state": 1810, "next_state_transition": 1764}}, {"model": "template.statetransition", "pk": 1764, "fields": {"resulting_state": 1811, "next_state_transition": 1765}}, {"model": "template.statetransition", "pk": 1765, "fields": {"resulting_state": 1812, "next_state_transition": 1766}}, {"model": "template.statetransition", "pk": 1766, "fields": {"resulting_state": 1813, "next_state_transition": 1767}}, {"model": "template.statetransition", "pk": 1767, "fields": {"resulting_state": 1814, "next_state_transition": 1768}}, {"model": "template.statetransition", "pk": 1768, "fields": {"resulting_state": 1815, "next_state_transition": 1769}}, {"model": "template.statetransition", "pk": 1769, "fields": {"resulting_state": 1816, "next_state_transition": 1770}}, {"model": "template.statetransition", "pk": 1770, "fields": {"resulting_state": 1817, "next_state_transition": 1771}}, {"model": "template.statetransition", "pk": 1771, "fields": {"resulting_state": 1818, "next_state_transition": 1772}}, {"model": "template.statetransition", "pk": 1772, "fields": {"resulting_state": 1819, "next_state_transition": 1773}}, {"model": "template.statetransition", "pk": 1773, "fields": {"resulting_state": 1820, "next_state_transition": 1774}}, {"model": "template.statetransition", "pk": 1774, "fields": {"resulting_state": 1821, "next_state_transition": 1775}}, {"model": "template.statetransition", "pk": 1775, "fields": {"resulting_state": 1822, "next_state_transition": 1776}}, {"model": "template.statetransition", "pk": 1776, "fields": {"resulting_state": 1823, "next_state_transition": 1777}}, {"model": "template.statetransition", "pk": 1777, "fields": {"resulting_state": 1824, "next_state_transition": 1778}}, {"model": "template.statetransition", "pk": 1778, "fields": {"resulting_state": 1825, "next_state_transition": 1779}}, {"model": "template.statetransition", "pk": 1779, "fields": {"resulting_state": 1826, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1780, "fields": {"resulting_state": 1730, "next_state_transition": 1781}}, {"model": "template.statetransition", "pk": 1781, "fields": {"resulting_state": 1827, "next_state_transition": 1782}}, {"model": "template.statetransition", "pk": 1782, "fields": {"resulting_state": 1828, "next_state_transition": 1783}}, {"model": "template.statetransition", "pk": 1783, "fields": {"resulting_state": 1829, "next_state_transition": 1784}}, {"model": "template.statetransition", "pk": 1784, "fields": {"resulting_state": 1830, "next_state_transition": 1785}}, {"model": "template.statetransition", "pk": 1785, "fields": {"resulting_state": 1831, "next_state_transition": 1786}}, {"model": "template.statetransition", "pk": 1786, "fields": {"resulting_state": 1832, "next_state_transition": 1787}}, {"model": "template.statetransition", "pk": 1787, "fields": {"resulting_state": 1833, "next_state_transition": 1788}}, {"model": "template.statetransition", "pk": 1788, "fields": {"resulting_state": 1834, "next_state_transition": 1789}}, {"model": "template.statetransition", "pk": 1789, "fields": {"resulting_state": 1835, "next_state_transition": 1790}}, {"model": "template.statetransition", "pk": 1790, "fields": {"resulting_state": 1836, "next_state_transition": 1791}}, {"model": "template.statetransition", "pk": 1791, "fields": {"resulting_state": 1837, "next_state_transition": 1792}}, {"model": "template.statetransition", "pk": 1792, "fields": {"resulting_state": 1838, "next_state_transition": 1793}}, {"model": "template.statetransition", "pk": 1793, "fields": {"resulting_state": 1839, "next_state_transition": 1794}}, {"model": "template.statetransition", "pk": 1794, "fields": {"resulting_state": 1840, "next_state_transition": 1795}}, {"model": "template.statetransition", "pk": 1795, "fields": {"resulting_state": 1841, "next_state_transition": 1796}}, {"model": "template.statetransition", "pk": 1796, "fields": {"resulting_state": 1842, "next_state_transition": 1797}}, {"model": "template.statetransition", "pk": 1797, "fields": {"resulting_state": 1843, "next_state_transition": 1798}}, {"model": "template.statetransition", "pk": 1798, "fields": {"resulting_state": 1844, "next_state_transition": 1799}}, {"model": "template.statetransition", "pk": 1799, "fields": {"resulting_state": 1845, "next_state_transition": 1800}}, {"model": "template.statetransition", "pk": 1800, "fields": {"resulting_state": 1846, "next_state_transition": 1801}}, {"model": "template.statetransition", "pk": 1801, "fields": {"resulting_state": 1847, "next_state_transition": 1802}}, {"model": "template.statetransition", "pk": 1802, "fields": {"resulting_state": 1848, "next_state_transition": 1803}}, {"model": "template.statetransition", "pk": 1803, "fields": {"resulting_state": 1849, "next_state_transition": 1804}}, {"model": "template.statetransition", "pk": 1804, "fields": {"resulting_state": 1850, "next_state_transition": 1805}}, {"model": "template.statetransition", "pk": 1805, "fields": {"resulting_state": 1851, "next_state_transition": 1806}}, {"model": "template.statetransition", "pk": 1806, "fields": {"resulting_state": 1852, "next_state_transition": 1807}}, {"model": "template.statetransition", "pk": 1807, "fields": {"resulting_state": 1853, "next_state_transition": 1808}}, {"model": "template.statetransition", "pk": 1808, "fields": {"resulting_state": 1854, "next_state_transition": 1809}}, {"model": "template.statetransition", "pk": 1809, "fields": {"resulting_state": 1855, "next_state_transition": 1810}}, {"model": "template.statetransition", "pk": 1810, "fields": {"resulting_state": 1856, "next_state_transition": 1811}}, {"model": "template.statetransition", "pk": 1811, "fields": {"resulting_state": 1857, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1812, "fields": {"resulting_state": 1729, "next_state_transition": 1813}}, {"model": "template.statetransition", "pk": 1813, "fields": {"resulting_state": 1858, "next_state_transition": 1814}}, {"model": "template.statetransition", "pk": 1814, "fields": {"resulting_state": 1859, "next_state_transition": 1815}}, {"model": "template.statetransition", "pk": 1815, "fields": {"resulting_state": 1860, "next_state_transition": 1816}}, {"model": "template.statetransition", "pk": 1816, "fields": {"resulting_state": 1861, "next_state_transition": 1817}}, {"model": "template.statetransition", "pk": 1817, "fields": {"resulting_state": 1862, "next_state_transition": 1818}}, {"model": "template.statetransition", "pk": 1818, "fields": {"resulting_state": 1863, "next_state_transition": 1819}}, {"model": "template.statetransition", "pk": 1819, "fields": {"resulting_state": 1864, "next_state_transition": 1820}}, {"model": "template.statetransition", "pk": 1820, "fields": {"resulting_state": 1865, "next_state_transition": 1821}}, {"model": "template.statetransition", "pk": 1821, "fields": {"resulting_state": 1866, "next_state_transition": 1822}}, {"model": "template.statetransition", "pk": 1822, "fields": {"resulting_state": 1867, "next_state_transition": 1823}}, {"model": "template.statetransition", "pk": 1823, "fields": {"resulting_state": 1868, "next_state_transition": 1824}}, {"model": "template.statetransition", "pk": 1824, "fields": {"resulting_state": 1869, "next_state_transition": 1825}}, {"model": "template.statetransition", "pk": 1825, "fields": {"resulting_state": 1870, "next_state_transition": 1826}}, {"model": "template.statetransition", "pk": 1826, "fields": {"resulting_state": 1871, "next_state_transition": 1827}}, {"model": "template.statetransition", "pk": 1827, "fields": {"resulting_state": 1872, "next_state_transition": 1828}}, {"model": "template.statetransition", "pk": 1828, "fields": {"resulting_state": 1873, "next_state_transition": 1829}}, {"model": "template.statetransition", "pk": 1829, "fields": {"resulting_state": 1874, "next_state_transition": 1830}}, {"model": "template.statetransition", "pk": 1830, "fields": {"resulting_state": 1875, "next_state_transition": 1831}}, {"model": "template.statetransition", "pk": 1831, "fields": {"resulting_state": 1876, "next_state_transition": 1832}}, {"model": "template.statetransition", "pk": 1832, "fields": {"resulting_state": 1877, "next_state_transition": 1833}}, {"model": "template.statetransition", "pk": 1833, "fields": {"resulting_state": 1878, "next_state_transition": 1834}}, {"model": "template.statetransition", "pk": 1834, "fields": {"resulting_state": 1879, "next_state_transition": 1835}}, {"model": "template.statetransition", "pk": 1835, "fields": {"resulting_state": 1880, "next_state_transition": 1836}}, {"model": "template.statetransition", "pk": 1836, "fields": {"resulting_state": 1881, "next_state_transition": 1837}}, {"model": "template.statetransition", "pk": 1837, "fields": {"resulting_state": 1882, "next_state_transition": 1838}}, {"model": "template.statetransition", "pk": 1838, "fields": {"resulting_state": 1883, "next_state_transition": 1839}}, {"model": "template.statetransition", "pk": 1839, "fields": {"resulting_state": 1884, "next_state_transition": 1840}}, {"model": "template.statetransition", "pk": 1840, "fields": {"resulting_state": 1885, "next_state_transition": 1841}}, {"model": "template.statetransition", "pk": 1841, "fields": {"resulting_state": 1886, "next_state_transition": 1842}}, {"model": "template.statetransition", "pk": 1842, "fields": {"resulting_state": 1887, "next_state_transition": 1843}}, {"model": "template.statetransition", "pk": 1843, "fields": {"resulting_state": 1888, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1844, "fields": {"resulting_state": 1728, "next_state_transition": 1845}}, {"model": "template.statetransition", "pk": 1845, "fields": {"resulting_state": 1889, "next_state_transition": 1846}}, {"model": "template.statetransition", "pk": 1846, "fields": {"resulting_state": 1890, "next_state_transition": 1847}}, {"model": "template.statetransition", "pk": 1847, "fields": {"resulting_state": 1891, "next_state_transition": 1848}}, {"model": "template.statetransition", "pk": 1848, "fields": {"resulting_state": 1892, "next_state_transition": 1849}}, {"model": "template.statetransition", "pk": 1849, "fields": {"resulting_state": 1893, "next_state_transition": 1850}}, {"model": "template.statetransition", "pk": 1850, "fields": {"resulting_state": 1894, "next_state_transition": 1851}}, {"model": "template.statetransition", "pk": 1851, "fields": {"resulting_state": 1895, "next_state_transition": 1852}}, {"model": "template.statetransition", "pk": 1852, "fields": {"resulting_state": 1896, "next_state_transition": 1853}}, {"model": "template.statetransition", "pk": 1853, "fields": {"resulting_state": 1897, "next_state_transition": 1854}}, {"model": "template.statetransition", "pk": 1854, "fields": {"resulting_state": 1898, "next_state_transition": 1855}}, {"model": "template.statetransition", "pk": 1855, "fields": {"resulting_state": 1899, "next_state_transition": 1856}}, {"model": "template.statetransition", "pk": 1856, "fields": {"resulting_state": 1900, "next_state_transition": 1857}}, {"model": "template.statetransition", "pk": 1857, "fields": {"resulting_state": 1901, "next_state_transition": 1858}}, {"model": "template.statetransition", "pk": 1858, "fields": {"resulting_state": 1902, "next_state_transition": 1859}}, {"model": "template.statetransition", "pk": 1859, "fields": {"resulting_state": 1903, "next_state_transition": 1860}}, {"model": "template.statetransition", "pk": 1860, "fields": {"resulting_state": 1904, "next_state_transition": 1861}}, {"model": "template.statetransition", "pk": 1861, "fields": {"resulting_state": 1905, "next_state_transition": 1862}}, {"model": "template.statetransition", "pk": 1862, "fields": {"resulting_state": 1906, "next_state_transition": 1863}}, {"model": "template.statetransition", "pk": 1863, "fields": {"resulting_state": 1907, "next_state_transition": 1864}}, {"model": "template.statetransition", "pk": 1864, "fields": {"resulting_state": 1908, "next_state_transition": 1865}}, {"model": "template.statetransition", "pk": 1865, "fields": {"resulting_state": 1909, "next_state_transition": 1866}}, {"model": "template.statetransition", "pk": 1866, "fields": {"resulting_state": 1910, "next_state_transition": 1867}}, {"model": "template.statetransition", "pk": 1867, "fields": {"resulting_state": 1911, "next_state_transition": 1868}}, {"model": "template.statetransition", "pk": 1868, "fields": {"resulting_state": 1912, "next_state_transition": 1869}}, {"model": "template.statetransition", "pk": 1869, "fields": {"resulting_state": 1913, "next_state_transition": 1870}}, {"model": "template.statetransition", "pk": 1870, "fields": {"resulting_state": 1914, "next_state_transition": 1871}}, {"model": "template.statetransition", "pk": 1871, "fields": {"resulting_state": 1915, "next_state_transition": 1872}}, {"model": "template.statetransition", "pk": 1872, "fields": {"resulting_state": 1916, "next_state_transition": 1873}}, {"model": "template.statetransition", "pk": 1873, "fields": {"resulting_state": 1917, "next_state_transition": 1874}}, {"model": "template.statetransition", "pk": 1874, "fields": {"resulting_state": 1918, "next_state_transition": 1875}}, {"model": "template.statetransition", "pk": 1875, "fields": {"resulting_state": 1919, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1876, "fields": {"resulting_state": 1727, "next_state_transition": 1877}}, {"model": "template.statetransition", "pk": 1877, "fields": {"resulting_state": 1920, "next_state_transition": 1878}}, {"model": "template.statetransition", "pk": 1878, "fields": {"resulting_state": 1921, "next_state_transition": 1879}}, {"model": "template.statetransition", "pk": 1879, "fields": {"resulting_state": 1922, "next_state_transition": 1880}}, {"model": "template.statetransition", "pk": 1880, "fields": {"resulting_state": 1923, "next_state_transition": 1881}}, {"model": "template.statetransition", "pk": 1881, "fields": {"resulting_state": 1924, "next_state_transition": 1882}}, {"model": "template.statetransition", "pk": 1882, "fields": {"resulting_state": 1925, "next_state_transition": 1883}}, {"model": "template.statetransition", "pk": 1883, "fields": {"resulting_state": 1926, "next_state_transition": 1884}}, {"model": "template.statetransition", "pk": 1884, "fields": {"resulting_state": 1927, "next_state_transition": 1885}}, {"model": "template.statetransition", "pk": 1885, "fields": {"resulting_state": 1928, "next_state_transition": 1886}}, {"model": "template.statetransition", "pk": 1886, "fields": {"resulting_state": 1929, "next_state_transition": 1887}}, {"model": "template.statetransition", "pk": 1887, "fields": {"resulting_state": 1930, "next_state_transition": 1888}}, {"model": "template.statetransition", "pk": 1888, "fields": {"resulting_state": 1931, "next_state_transition": 1889}}, {"model": "template.statetransition", "pk": 1889, "fields": {"resulting_state": 1932, "next_state_transition": 1890}}, {"model": "template.statetransition", "pk": 1890, "fields": {"resulting_state": 1933, "next_state_transition": 1891}}, {"model": "template.statetransition", "pk": 1891, "fields": {"resulting_state": 1934, "next_state_transition": 1892}}, {"model": "template.statetransition", "pk": 1892, "fields": {"resulting_state": 1935, "next_state_transition": 1893}}, {"model": "template.statetransition", "pk": 1893, "fields": {"resulting_state": 1936, "next_state_transition": 1894}}, {"model": "template.statetransition", "pk": 1894, "fields": {"resulting_state": 1937, "next_state_transition": 1895}}, {"model": "template.statetransition", "pk": 1895, "fields": {"resulting_state": 1938, "next_state_transition": 1896}}, {"model": "template.statetransition", "pk": 1896, "fields": {"resulting_state": 1939, "next_state_transition": 1897}}, {"model": "template.statetransition", "pk": 1897, "fields": {"resulting_state": 1940, "next_state_transition": 1898}}, {"model": "template.statetransition", "pk": 1898, "fields": {"resulting_state": 1941, "next_state_transition": 1899}}, {"model": "template.statetransition", "pk": 1899, "fields": {"resulting_state": 1942, "next_state_transition": 1900}}, {"model": "template.statetransition", "pk": 1900, "fields": {"resulting_state": 1943, "next_state_transition": 1901}}, {"model": "template.statetransition", "pk": 1901, "fields": {"resulting_state": 1944, "next_state_transition": 1902}}, {"model": "template.statetransition", "pk": 1902, "fields": {"resulting_state": 1945, "next_state_transition": 1903}}, {"model": "template.statetransition", "pk": 1903, "fields": {"resulting_state": 1946, "next_state_transition": 1904}}, {"model": "template.statetransition", "pk": 1904, "fields": {"resulting_state": 1947, "next_state_transition": 1905}}, {"model": "template.statetransition", "pk": 1905, "fields": {"resulting_state": 1948, "next_state_transition": 1906}}, {"model": "template.statetransition", "pk": 1906, "fields": {"resulting_state": 1949, "next_state_transition": 1907}}, {"model": "template.statetransition", "pk": 1907, "fields": {"resulting_state": 1950, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1908, "fields": {"resulting_state": 1726, "next_state_transition": 1909}}, {"model": "template.statetransition", "pk": 1909, "fields": {"resulting_state": 1951, "next_state_transition": 1910}}, {"model": "template.statetransition", "pk": 1910, "fields": {"resulting_state": 1952, "next_state_transition": 1911}}, {"model": "template.statetransition", "pk": 1911, "fields": {"resulting_state": 1953, "next_state_transition": 1912}}, {"model": "template.statetransition", "pk": 1912, "fields": {"resulting_state": 1954, "next_state_transition": 1913}}, {"model": "template.statetransition", "pk": 1913, "fields": {"resulting_state": 1955, "next_state_transition": 1914}}, {"model": "template.statetransition", "pk": 1914, "fields": {"resulting_state": 1956, "next_state_transition": 1915}}, {"model": "template.statetransition", "pk": 1915, "fields": {"resulting_state": 1957, "next_state_transition": 1916}}, {"model": "template.statetransition", "pk": 1916, "fields": {"resulting_state": 1958, "next_state_transition": 1917}}, {"model": "template.statetransition", "pk": 1917, "fields": {"resulting_state": 1959, "next_state_transition": 1918}}, {"model": "template.statetransition", "pk": 1918, "fields": {"resulting_state": 1960, "next_state_transition": 1919}}, {"model": "template.statetransition", "pk": 1919, "fields": {"resulting_state": 1961, "next_state_transition": 1920}}, {"model": "template.statetransition", "pk": 1920, "fields": {"resulting_state": 1962, "next_state_transition": 1921}}, {"model": "template.statetransition", "pk": 1921, "fields": {"resulting_state": 1963, "next_state_transition": 1922}}, {"model": "template.statetransition", "pk": 1922, "fields": {"resulting_state": 1964, "next_state_transition": 1923}}, {"model": "template.statetransition", "pk": 1923, "fields": {"resulting_state": 1965, "next_state_transition": 1924}}, {"model": "template.statetransition", "pk": 1924, "fields": {"resulting_state": 1966, "next_state_transition": 1925}}, {"model": "template.statetransition", "pk": 1925, "fields": {"resulting_state": 1967, "next_state_transition": 1926}}, {"model": "template.statetransition", "pk": 1926, "fields": {"resulting_state": 1968, "next_state_transition": 1927}}, {"model": "template.statetransition", "pk": 1927, "fields": {"resulting_state": 1969, "next_state_transition": 1928}}, {"model": "template.statetransition", "pk": 1928, "fields": {"resulting_state": 1970, "next_state_transition": 1929}}, {"model": "template.statetransition", "pk": 1929, "fields": {"resulting_state": 1971, "next_state_transition": 1930}}, {"model": "template.statetransition", "pk": 1930, "fields": {"resulting_state": 1972, "next_state_transition": 1931}}, {"model": "template.statetransition", "pk": 1931, "fields": {"resulting_state": 1973, "next_state_transition": 1932}}, {"model": "template.statetransition", "pk": 1932, "fields": {"resulting_state": 1974, "next_state_transition": 1933}}, {"model": "template.statetransition", "pk": 1933, "fields": {"resulting_state": 1975, "next_state_transition": 1934}}, {"model": "template.statetransition", "pk": 1934, "fields": {"resulting_state": 1976, "next_state_transition": 1935}}, {"model": "template.statetransition", "pk": 1935, "fields": {"resulting_state": 1977, "next_state_transition": 1936}}, {"model": "template.statetransition", "pk": 1936, "fields": {"resulting_state": 1978, "next_state_transition": 1937}}, {"model": "template.statetransition", "pk": 1937, "fields": {"resulting_state": 1979, "next_state_transition": 1938}}, {"model": "template.statetransition", "pk": 1938, "fields": {"resulting_state": 1980, "next_state_transition": 1939}}, {"model": "template.statetransition", "pk": 1939, "fields": {"resulting_state": 1981, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1940, "fields": {"resulting_state": 1725, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1941, "fields": {"resulting_state": 1983, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1942, "fields": {"resulting_state": 1993, "next_state_transition": 1943}}, {"model": "template.statetransition", "pk": 1943, "fields": {"resulting_state": 1994, "next_state_transition": 1944}}, {"model": "template.statetransition", "pk": 1944, "fields": {"resulting_state": 1995, "next_state_transition": 1945}}, {"model": "template.statetransition", "pk": 1945, "fields": {"resulting_state": 1996, "next_state_transition": 1946}}, {"model": "template.statetransition", "pk": 1946, "fields": {"resulting_state": 1997, "next_state_transition": 1947}}, {"model": "template.statetransition", "pk": 1947, "fields": {"resulting_state": 1998, "next_state_transition": 1948}}, {"model": "template.statetransition", "pk": 1948, "fields": {"resulting_state": 1999, "next_state_transition": 1949}}, {"model": "template.statetransition", "pk": 1949, "fields": {"resulting_state": 2000, "next_state_transition": 1950}}, {"model": "template.statetransition", "pk": 1950, "fields": {"resulting_state": 2001, "next_state_transition": 1951}}, {"model": "template.statetransition", "pk": 1951, "fields": {"resulting_state": 2002, "next_state_transition": 1952}}, {"model": "template.statetransition", "pk": 1952, "fields": {"resulting_state": 2003, "next_state_transition": 1953}}, {"model": "template.statetransition", "pk": 1953, "fields": {"resulting_state": 2004, "next_state_transition": 1954}}, {"model": "template.statetransition", "pk": 1954, "fields": {"resulting_state": 2005, "next_state_transition": 1955}}, {"model": "template.statetransition", "pk": 1955, "fields": {"resulting_state": 2006, "next_state_transition": 1956}}, {"model": "template.statetransition", "pk": 1956, "fields": {"resulting_state": 2007, "next_state_transition": 1957}}, {"model": "template.statetransition", "pk": 1957, "fields": {"resulting_state": 2008, "next_state_transition": 1958}}, {"model": "template.statetransition", "pk": 1958, "fields": {"resulting_state": 2009, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1959, "fields": {"resulting_state": 1992, "next_state_transition": 1960}}, {"model": "template.statetransition", "pk": 1960, "fields": {"resulting_state": 2010, "next_state_transition": 1961}}, {"model": "template.statetransition", "pk": 1961, "fields": {"resulting_state": 2011, "next_state_transition": 1962}}, {"model": "template.statetransition", "pk": 1962, "fields": {"resulting_state": 2012, "next_state_transition": 1963}}, {"model": "template.statetransition", "pk": 1963, "fields": {"resulting_state": 2013, "next_state_transition": 1964}}, {"model": "template.statetransition", "pk": 1964, "fields": {"resulting_state": 2014, "next_state_transition": 1965}}, {"model": "template.statetransition", "pk": 1965, "fields": {"resulting_state": 2015, "next_state_transition": 1966}}, {"model": "template.statetransition", "pk": 1966, "fields": {"resulting_state": 2016, "next_state_transition": 1967}}, {"model": "template.statetransition", "pk": 1967, "fields": {"resulting_state": 2017, "next_state_transition": 1968}}, {"model": "template.statetransition", "pk": 1968, "fields": {"resulting_state": 2018, "next_state_transition": 1969}}, {"model": "template.statetransition", "pk": 1969, "fields": {"resulting_state": 2019, "next_state_transition": 1970}}, {"model": "template.statetransition", "pk": 1970, "fields": {"resulting_state": 2020, "next_state_transition": 1971}}, {"model": "template.statetransition", "pk": 1971, "fields": {"resulting_state": 2021, "next_state_transition": 1972}}, {"model": "template.statetransition", "pk": 1972, "fields": {"resulting_state": 2022, "next_state_transition": 1973}}, {"model": "template.statetransition", "pk": 1973, "fields": {"resulting_state": 2023, "next_state_transition": 1974}}, {"model": "template.statetransition", "pk": 1974, "fields": {"resulting_state": 2024, "next_state_transition": 1975}}, {"model": "template.statetransition", "pk": 1975, "fields": {"resulting_state": 2025, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1976, "fields": {"resulting_state": 1991, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1977, "fields": {"resulting_state": 1990, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1978, "fields": {"resulting_state": 1989, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1979, "fields": {"resulting_state": 1988, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1980, "fields": {"resulting_state": 1987, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1981, "fields": {"resulting_state": 1986, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1982, "fields": {"resulting_state": 1985, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1983, "fields": {"resulting_state": 2033, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1984, "fields": {"resulting_state": 2032, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1985, "fields": {"resulting_state": 2031, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1986, "fields": {"resulting_state": 2030, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1987, "fields": {"resulting_state": 2029, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1988, "fields": {"resulting_state": 2028, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1989, "fields": {"resulting_state": 2027, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1990, "fields": {"resulting_state": 2043, "next_state_transition": 1991}}, {"model": "template.statetransition", "pk": 1991, "fields": {"resulting_state": 2044, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1992, "fields": {"resulting_state": 2042, "next_state_transition": 1993}}, {"model": "template.statetransition", "pk": 1993, "fields": {"resulting_state": 2045, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1994, "fields": {"resulting_state": 2041, "next_state_transition": 1995}}, {"model": "template.statetransition", "pk": 1995, "fields": {"resulting_state": 2046, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1996, "fields": {"resulting_state": 2040, "next_state_transition": 1997}}, {"model": "template.statetransition", "pk": 1997, "fields": {"resulting_state": 2047, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1998, "fields": {"resulting_state": 2039, "next_state_transition": 1999}}, {"model": "template.statetransition", "pk": 1999, "fields": {"resulting_state": 2048, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2000, "fields": {"resulting_state": 2038, "next_state_transition": 2001}}, {"model": "template.statetransition", "pk": 2001, "fields": {"resulting_state": 2049, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2002, "fields": {"resulting_state": 2037, "next_state_transition": 2003}}, {"model": "template.statetransition", "pk": 2003, "fields": {"resulting_state": 2050, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2004, "fields": {"resulting_state": 2036, "next_state_transition": 2005}}, {"model": "template.statetransition", "pk": 2005, "fields": {"resulting_state": 2051, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2006, "fields": {"resulting_state": 2035, "next_state_transition": 2007}}, {"model": "template.statetransition", "pk": 2007, "fields": {"resulting_state": 2052, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2008, "fields": {"resulting_state": 2063, "next_state_transition": 2009}}, {"model": "template.statetransition", "pk": 2009, "fields": {"resulting_state": 2064, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2010, "fields": {"resulting_state": 2062, "next_state_transition": 2011}}, {"model": "template.statetransition", "pk": 2011, "fields": {"resulting_state": 2065, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2012, "fields": {"resulting_state": 2061, "next_state_transition": 2013}}, {"model": "template.statetransition", "pk": 2013, "fields": {"resulting_state": 2066, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2014, "fields": {"resulting_state": 2060, "next_state_transition": 2015}}, {"model": "template.statetransition", "pk": 2015, "fields": {"resulting_state": 2067, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2016, "fields": {"resulting_state": 2059, "next_state_transition": 2017}}, {"model": "template.statetransition", "pk": 2017, "fields": {"resulting_state": 2068, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2018, "fields": {"resulting_state": 2058, "next_state_transition": 2019}}, {"model": "template.statetransition", "pk": 2019, "fields": {"resulting_state": 2069, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2020, "fields": {"resulting_state": 2057, "next_state_transition": 2021}}, {"model": "template.statetransition", "pk": 2021, "fields": {"resulting_state": 2070, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2022, "fields": {"resulting_state": 2056, "next_state_transition": 2023}}, {"model": "template.statetransition", "pk": 2023, "fields": {"resulting_state": 2071, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2024, "fields": {"resulting_state": 2055, "next_state_transition": 2025}}, {"model": "template.statetransition", "pk": 2025, "fields": {"resulting_state": 2072, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2026, "fields": {"resulting_state": 2083, "next_state_transition": 2027}}, {"model": "template.statetransition", "pk": 2027, "fields": {"resulting_state": 2084, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2028, "fields": {"resulting_state": 2082, "next_state_transition": 2029}}, {"model": "template.statetransition", "pk": 2029, "fields": {"resulting_state": 2085, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2030, "fields": {"resulting_state": 2081, "next_state_transition": 2031}}, {"model": "template.statetransition", "pk": 2031, "fields": {"resulting_state": 2086, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2032, "fields": {"resulting_state": 2080, "next_state_transition": 2033}}, {"model": "template.statetransition", "pk": 2033, "fields": {"resulting_state": 2087, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2034, "fields": {"resulting_state": 2079, "next_state_transition": 2035}}, {"model": "template.statetransition", "pk": 2035, "fields": {"resulting_state": 2088, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2036, "fields": {"resulting_state": 2078, "next_state_transition": 2037}}, {"model": "template.statetransition", "pk": 2037, "fields": {"resulting_state": 2089, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2038, "fields": {"resulting_state": 2077, "next_state_transition": 2039}}, {"model": "template.statetransition", "pk": 2039, "fields": {"resulting_state": 2090, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2040, "fields": {"resulting_state": 2076, "next_state_transition": 2041}}, {"model": "template.statetransition", "pk": 2041, "fields": {"resulting_state": 2091, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2042, "fields": {"resulting_state": 2075, "next_state_transition": 2043}}, {"model": "template.statetransition", "pk": 2043, "fields": {"resulting_state": 2092, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2044, "fields": {"resulting_state": 2103, "next_state_transition": 2045}}, {"model": "template.statetransition", "pk": 2045, "fields": {"resulting_state": 2104, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2046, "fields": {"resulting_state": 2102, "next_state_transition": 2047}}, {"model": "template.statetransition", "pk": 2047, "fields": {"resulting_state": 2105, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2048, "fields": {"resulting_state": 2101, "next_state_transition": 2049}}, {"model": "template.statetransition", "pk": 2049, "fields": {"resulting_state": 2106, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2050, "fields": {"resulting_state": 2100, "next_state_transition": 2051}}, {"model": "template.statetransition", "pk": 2051, "fields": {"resulting_state": 2107, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2052, "fields": {"resulting_state": 2099, "next_state_transition": 2053}}, {"model": "template.statetransition", "pk": 2053, "fields": {"resulting_state": 2108, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2054, "fields": {"resulting_state": 2098, "next_state_transition": 2055}}, {"model": "template.statetransition", "pk": 2055, "fields": {"resulting_state": 2109, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2056, "fields": {"resulting_state": 2097, "next_state_transition": 2057}}, {"model": "template.statetransition", "pk": 2057, "fields": {"resulting_state": 2110, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2058, "fields": {"resulting_state": 2096, "next_state_transition": 2059}}, {"model": "template.statetransition", "pk": 2059, "fields": {"resulting_state": 2111, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2060, "fields": {"resulting_state": 2095, "next_state_transition": 2061}}, {"model": "template.statetransition", "pk": 2061, "fields": {"resulting_state": 2112, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2062, "fields": {"resulting_state": 2123, "next_state_transition": 2063}}, {"model": "template.statetransition", "pk": 2063, "fields": {"resulting_state": 2124, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2064, "fields": {"resulting_state": 2122, "next_state_transition": 2065}}, {"model": "template.statetransition", "pk": 2065, "fields": {"resulting_state": 2125, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2066, "fields": {"resulting_state": 2121, "next_state_transition": 2067}}, {"model": "template.statetransition", "pk": 2067, "fields": {"resulting_state": 2126, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2068, "fields": {"resulting_state": 2120, "next_state_transition": 2069}}, {"model": "template.statetransition", "pk": 2069, "fields": {"resulting_state": 2127, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2070, "fields": {"resulting_state": 2119, "next_state_transition": 2071}}, {"model": "template.statetransition", "pk": 2071, "fields": {"resulting_state": 2128, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2072, "fields": {"resulting_state": 2118, "next_state_transition": 2073}}, {"model": "template.statetransition", "pk": 2073, "fields": {"resulting_state": 2129, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2074, "fields": {"resulting_state": 2117, "next_state_transition": 2075}}, {"model": "template.statetransition", "pk": 2075, "fields": {"resulting_state": 2130, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2076, "fields": {"resulting_state": 2116, "next_state_transition": 2077}}, {"model": "template.statetransition", "pk": 2077, "fields": {"resulting_state": 2131, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2078, "fields": {"resulting_state": 2115, "next_state_transition": 2079}}, {"model": "template.statetransition", "pk": 2079, "fields": {"resulting_state": 2132, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2080, "fields": {"resulting_state": 2143, "next_state_transition": 2081}}, {"model": "template.statetransition", "pk": 2081, "fields": {"resulting_state": 2144, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2082, "fields": {"resulting_state": 2142, "next_state_transition": 2083}}, {"model": "template.statetransition", "pk": 2083, "fields": {"resulting_state": 2145, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2084, "fields": {"resulting_state": 2141, "next_state_transition": 2085}}, {"model": "template.statetransition", "pk": 2085, "fields": {"resulting_state": 2146, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2086, "fields": {"resulting_state": 2140, "next_state_transition": 2087}}, {"model": "template.statetransition", "pk": 2087, "fields": {"resulting_state": 2147, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2088, "fields": {"resulting_state": 2139, "next_state_transition": 2089}}, {"model": "template.statetransition", "pk": 2089, "fields": {"resulting_state": 2148, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2090, "fields": {"resulting_state": 2138, "next_state_transition": 2091}}, {"model": "template.statetransition", "pk": 2091, "fields": {"resulting_state": 2149, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2092, "fields": {"resulting_state": 2137, "next_state_transition": 2093}}, {"model": "template.statetransition", "pk": 2093, "fields": {"resulting_state": 2150, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2094, "fields": {"resulting_state": 2136, "next_state_transition": 2095}}, {"model": "template.statetransition", "pk": 2095, "fields": {"resulting_state": 2151, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2096, "fields": {"resulting_state": 2135, "next_state_transition": 2097}}, {"model": "template.statetransition", "pk": 2097, "fields": {"resulting_state": 2152, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2098, "fields": {"resulting_state": 2163, "next_state_transition": 2099}}, {"model": "template.statetransition", "pk": 2099, "fields": {"resulting_state": 2164, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2100, "fields": {"resulting_state": 2162, "next_state_transition": 2101}}, {"model": "template.statetransition", "pk": 2101, "fields": {"resulting_state": 2165, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2102, "fields": {"resulting_state": 2161, "next_state_transition": 2103}}, {"model": "template.statetransition", "pk": 2103, "fields": {"resulting_state": 2166, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2104, "fields": {"resulting_state": 2160, "next_state_transition": 2105}}, {"model": "template.statetransition", "pk": 2105, "fields": {"resulting_state": 2167, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2106, "fields": {"resulting_state": 2159, "next_state_transition": 2107}}, {"model": "template.statetransition", "pk": 2107, "fields": {"resulting_state": 2168, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2108, "fields": {"resulting_state": 2158, "next_state_transition": 2109}}, {"model": "template.statetransition", "pk": 2109, "fields": {"resulting_state": 2169, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2110, "fields": {"resulting_state": 2157, "next_state_transition": 2111}}, {"model": "template.statetransition", "pk": 2111, "fields": {"resulting_state": 2170, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2112, "fields": {"resulting_state": 2156, "next_state_transition": 2113}}, {"model": "template.statetransition", "pk": 2113, "fields": {"resulting_state": 2171, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2114, "fields": {"resulting_state": 2155, "next_state_transition": 2115}}, {"model": "template.statetransition", "pk": 2115, "fields": {"resulting_state": 2172, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2116, "fields": {"resulting_state": 2183, "next_state_transition": 2117}}, {"model": "template.statetransition", "pk": 2117, "fields": {"resulting_state": 2184, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2118, "fields": {"resulting_state": 2182, "next_state_transition": 2119}}, {"model": "template.statetransition", "pk": 2119, "fields": {"resulting_state": 2185, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2120, "fields": {"resulting_state": 2181, "next_state_transition": 2121}}, {"model": "template.statetransition", "pk": 2121, "fields": {"resulting_state": 2186, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2122, "fields": {"resulting_state": 2180, "next_state_transition": 2123}}, {"model": "template.statetransition", "pk": 2123, "fields": {"resulting_state": 2187, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2124, "fields": {"resulting_state": 2179, "next_state_transition": 2125}}, {"model": "template.statetransition", "pk": 2125, "fields": {"resulting_state": 2188, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2126, "fields": {"resulting_state": 2178, "next_state_transition": 2127}}, {"model": "template.statetransition", "pk": 2127, "fields": {"resulting_state": 2189, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2128, "fields": {"resulting_state": 2177, "next_state_transition": 2129}}, {"model": "template.statetransition", "pk": 2129, "fields": {"resulting_state": 2190, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2130, "fields": {"resulting_state": 2176, "next_state_transition": 2131}}, {"model": "template.statetransition", "pk": 2131, "fields": {"resulting_state": 2191, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2132, "fields": {"resulting_state": 2175, "next_state_transition": 2133}}, {"model": "template.statetransition", "pk": 2133, "fields": {"resulting_state": 2192, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2134, "fields": {"resulting_state": 2203, "next_state_transition": 2135}}, {"model": "template.statetransition", "pk": 2135, "fields": {"resulting_state": 2204, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2136, "fields": {"resulting_state": 2202, "next_state_transition": 2137}}, {"model": "template.statetransition", "pk": 2137, "fields": {"resulting_state": 2205, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2138, "fields": {"resulting_state": 2201, "next_state_transition": 2139}}, {"model": "template.statetransition", "pk": 2139, "fields": {"resulting_state": 2206, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2140, "fields": {"resulting_state": 2200, "next_state_transition": 2141}}, {"model": "template.statetransition", "pk": 2141, "fields": {"resulting_state": 2207, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2142, "fields": {"resulting_state": 2199, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2143, "fields": {"resulting_state": 2198, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2144, "fields": {"resulting_state": 2197, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2145, "fields": {"resulting_state": 2196, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2146, "fields": {"resulting_state": 2195, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2147, "fields": {"resulting_state": 2213, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2148, "fields": {"resulting_state": 2212, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2149, "fields": {"resulting_state": 2211, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2150, "fields": {"resulting_state": 2210, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2151, "fields": {"resulting_state": 2209, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2152, "fields": {"resulting_state": 2223, "next_state_transition": 2153}}, {"model": "template.statetransition", "pk": 2153, "fields": {"resulting_state": 2224, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2154, "fields": {"resulting_state": 2222, "next_state_transition": 2155}}, {"model": "template.statetransition", "pk": 2155, "fields": {"resulting_state": 2225, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2156, "fields": {"resulting_state": 2221, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2157, "fields": {"resulting_state": 2220, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2158, "fields": {"resulting_state": 2219, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2159, "fields": {"resulting_state": 2218, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2160, "fields": {"resulting_state": 2217, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2161, "fields": {"resulting_state": 2216, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2162, "fields": {"resulting_state": 2215, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2163, "fields": {"resulting_state": 2233, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2164, "fields": {"resulting_state": 2232, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2165, "fields": {"resulting_state": 2231, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2166, "fields": {"resulting_state": 2230, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2167, "fields": {"resulting_state": 2229, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2168, "fields": {"resulting_state": 2228, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2169, "fields": {"resulting_state": 2227, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2170, "fields": {"resulting_state": 2243, "next_state_transition": 2171}}, {"model": "template.statetransition", "pk": 2171, "fields": {"resulting_state": 2244, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2172, "fields": {"resulting_state": 2242, "next_state_transition": 2173}}, {"model": "template.statetransition", "pk": 2173, "fields": {"resulting_state": 2245, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2174, "fields": {"resulting_state": 2241, "next_state_transition": 2175}}, {"model": "template.statetransition", "pk": 2175, "fields": {"resulting_state": 2246, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2176, "fields": {"resulting_state": 2240, "next_state_transition": 2177}}, {"model": "template.statetransition", "pk": 2177, "fields": {"resulting_state": 2247, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2178, "fields": {"resulting_state": 2239, "next_state_transition": 2179}}, {"model": "template.statetransition", "pk": 2179, "fields": {"resulting_state": 2248, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2180, "fields": {"resulting_state": 2238, "next_state_transition": 2181}}, {"model": "template.statetransition", "pk": 2181, "fields": {"resulting_state": 2249, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2182, "fields": {"resulting_state": 2237, "next_state_transition": 2183}}, {"model": "template.statetransition", "pk": 2183, "fields": {"resulting_state": 2250, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2184, "fields": {"resulting_state": 2236, "next_state_transition": 2185}}, {"model": "template.statetransition", "pk": 2185, "fields": {"resulting_state": 2251, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2186, "fields": {"resulting_state": 2235, "next_state_transition": 2187}}, {"model": "template.statetransition", "pk": 2187, "fields": {"resulting_state": 2252, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2188, "fields": {"resulting_state": 2263, "next_state_transition": 2189}}, {"model": "template.statetransition", "pk": 2189, "fields": {"resulting_state": 2264, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2190, "fields": {"resulting_state": 2262, "next_state_transition": 2191}}, {"model": "template.statetransition", "pk": 2191, "fields": {"resulting_state": 2265, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2192, "fields": {"resulting_state": 2261, "next_state_transition": 2193}}, {"model": "template.statetransition", "pk": 2193, "fields": {"resulting_state": 2266, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2194, "fields": {"resulting_state": 2260, "next_state_transition": 2195}}, {"model": "template.statetransition", "pk": 2195, "fields": {"resulting_state": 2267, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2196, "fields": {"resulting_state": 2259, "next_state_transition": 2197}}, {"model": "template.statetransition", "pk": 2197, "fields": {"resulting_state": 2268, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2198, "fields": {"resulting_state": 2258, "next_state_transition": 2199}}, {"model": "template.statetransition", "pk": 2199, "fields": {"resulting_state": 2269, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2200, "fields": {"resulting_state": 2257, "next_state_transition": 2201}}, {"model": "template.statetransition", "pk": 2201, "fields": {"resulting_state": 2270, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2202, "fields": {"resulting_state": 2256, "next_state_transition": 2203}}, {"model": "template.statetransition", "pk": 2203, "fields": {"resulting_state": 2271, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2204, "fields": {"resulting_state": 2255, "next_state_transition": 2205}}, {"model": "template.statetransition", "pk": 2205, "fields": {"resulting_state": 2272, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2206, "fields": {"resulting_state": 2283, "next_state_transition": 2207}}, {"model": "template.statetransition", "pk": 2207, "fields": {"resulting_state": 2284, "next_state_transition": 2208}}, {"model": "template.statetransition", "pk": 2208, "fields": {"resulting_state": 2285, "next_state_transition": 2209}}, {"model": "template.statetransition", "pk": 2209, "fields": {"resulting_state": 2286, "next_state_transition": 2210}}, {"model": "template.statetransition", "pk": 2210, "fields": {"resulting_state": 2287, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2211, "fields": {"resulting_state": 2282, "next_state_transition": 2212}}, {"model": "template.statetransition", "pk": 2212, "fields": {"resulting_state": 2288, "next_state_transition": 2213}}, {"model": "template.statetransition", "pk": 2213, "fields": {"resulting_state": 2289, "next_state_transition": 2214}}, {"model": "template.statetransition", "pk": 2214, "fields": {"resulting_state": 2290, "next_state_transition": 2215}}, {"model": "template.statetransition", "pk": 2215, "fields": {"resulting_state": 2291, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2216, "fields": {"resulting_state": 2281, "next_state_transition": 2217}}, {"model": "template.statetransition", "pk": 2217, "fields": {"resulting_state": 2292, "next_state_transition": 2218}}, {"model": "template.statetransition", "pk": 2218, "fields": {"resulting_state": 2293, "next_state_transition": 2219}}, {"model": "template.statetransition", "pk": 2219, "fields": {"resulting_state": 2294, "next_state_transition": 2220}}, {"model": "template.statetransition", "pk": 2220, "fields": {"resulting_state": 2295, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2221, "fields": {"resulting_state": 2280, "next_state_transition": 2222}}, {"model": "template.statetransition", "pk": 2222, "fields": {"resulting_state": 2296, "next_state_transition": 2223}}, {"model": "template.statetransition", "pk": 2223, "fields": {"resulting_state": 2297, "next_state_transition": 2224}}, {"model": "template.statetransition", "pk": 2224, "fields": {"resulting_state": 2298, "next_state_transition": 2225}}, {"model": "template.statetransition", "pk": 2225, "fields": {"resulting_state": 2299, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2226, "fields": {"resulting_state": 2279, "next_state_transition": 2227}}, {"model": "template.statetransition", "pk": 2227, "fields": {"resulting_state": 2300, "next_state_transition": 2228}}, {"model": "template.statetransition", "pk": 2228, "fields": {"resulting_state": 2301, "next_state_transition": 2229}}, {"model": "template.statetransition", "pk": 2229, "fields": {"resulting_state": 2302, "next_state_transition": 2230}}, {"model": "template.statetransition", "pk": 2230, "fields": {"resulting_state": 2303, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2231, "fields": {"resulting_state": 2278, "next_state_transition": 2232}}, {"model": "template.statetransition", "pk": 2232, "fields": {"resulting_state": 2304, "next_state_transition": 2233}}, {"model": "template.statetransition", "pk": 2233, "fields": {"resulting_state": 2305, "next_state_transition": 2234}}, {"model": "template.statetransition", "pk": 2234, "fields": {"resulting_state": 2306, "next_state_transition": 2235}}, {"model": "template.statetransition", "pk": 2235, "fields": {"resulting_state": 2307, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2236, "fields": {"resulting_state": 2277, "next_state_transition": 2237}}, {"model": "template.statetransition", "pk": 2237, "fields": {"resulting_state": 2308, "next_state_transition": 2238}}, {"model": "template.statetransition", "pk": 2238, "fields": {"resulting_state": 2309, "next_state_transition": 2239}}, {"model": "template.statetransition", "pk": 2239, "fields": {"resulting_state": 2310, "next_state_transition": 2240}}, {"model": "template.statetransition", "pk": 2240, "fields": {"resulting_state": 2311, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2241, "fields": {"resulting_state": 2276, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2242, "fields": {"resulting_state": 2275, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2243, "fields": {"resulting_state": 2314, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2244, "fields": {"resulting_state": 2313, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2245, "fields": {"resulting_state": 2324, "next_state_transition": 2246}}, {"model": "template.statetransition", "pk": 2246, "fields": {"resulting_state": 2325, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2247, "fields": {"resulting_state": 2323, "next_state_transition": 2248}}, {"model": "template.statetransition", "pk": 2248, "fields": {"resulting_state": 2326, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2249, "fields": {"resulting_state": 2322, "next_state_transition": 2250}}, {"model": "template.statetransition", "pk": 2250, "fields": {"resulting_state": 2327, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2251, "fields": {"resulting_state": 2321, "next_state_transition": 2252}}, {"model": "template.statetransition", "pk": 2252, "fields": {"resulting_state": 2328, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2253, "fields": {"resulting_state": 2320, "next_state_transition": 2254}}, {"model": "template.statetransition", "pk": 2254, "fields": {"resulting_state": 2329, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2255, "fields": {"resulting_state": 2319, "next_state_transition": 2256}}, {"model": "template.statetransition", "pk": 2256, "fields": {"resulting_state": 2330, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2257, "fields": {"resulting_state": 2318, "next_state_transition": 2258}}, {"model": "template.statetransition", "pk": 2258, "fields": {"resulting_state": 2331, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2259, "fields": {"resulting_state": 2317, "next_state_transition": 2260}}, {"model": "template.statetransition", "pk": 2260, "fields": {"resulting_state": 2332, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2261, "fields": {"resulting_state": 2316, "next_state_transition": 2262}}, {"model": "template.statetransition", "pk": 2262, "fields": {"resulting_state": 2333, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2263, "fields": {"resulting_state": 2344, "next_state_transition": 2264}}, {"model": "template.statetransition", "pk": 2264, "fields": {"resulting_state": 2345, "next_state_transition": 2265}}, {"model": "template.statetransition", "pk": 2265, "fields": {"resulting_state": 2346, "next_state_transition": 2266}}, {"model": "template.statetransition", "pk": 2266, "fields": {"resulting_state": 2347, "next_state_transition": 2267}}, {"model": "template.statetransition", "pk": 2267, "fields": {"resulting_state": 2348, "next_state_transition": 2268}}, {"model": "template.statetransition", "pk": 2268, "fields": {"resulting_state": 2349, "next_state_transition": 2269}}, {"model": "template.statetransition", "pk": 2269, "fields": {"resulting_state": 2350, "next_state_transition": 2270}}, {"model": "template.statetransition", "pk": 2270, "fields": {"resulting_state": 2351, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2271, "fields": {"resulting_state": 2343, "next_state_transition": 2272}}, {"model": "template.statetransition", "pk": 2272, "fields": {"resulting_state": 2352, "next_state_transition": 2273}}, {"model": "template.statetransition", "pk": 2273, "fields": {"resulting_state": 2353, "next_state_transition": 2274}}, {"model": "template.statetransition", "pk": 2274, "fields": {"resulting_state": 2354, "next_state_transition": 2275}}, {"model": "template.statetransition", "pk": 2275, "fields": {"resulting_state": 2355, "next_state_transition": 2276}}, {"model": "template.statetransition", "pk": 2276, "fields": {"resulting_state": 2356, "next_state_transition": 2277}}, {"model": "template.statetransition", "pk": 2277, "fields": {"resulting_state": 2357, "next_state_transition": 2278}}, {"model": "template.statetransition", "pk": 2278, "fields": {"resulting_state": 2358, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2279, "fields": {"resulting_state": 2342, "next_state_transition": 2280}}, {"model": "template.statetransition", "pk": 2280, "fields": {"resulting_state": 2359, "next_state_transition": 2281}}, {"model": "template.statetransition", "pk": 2281, "fields": {"resulting_state": 2360, "next_state_transition": 2282}}, {"model": "template.statetransition", "pk": 2282, "fields": {"resulting_state": 2361, "next_state_transition": 2283}}, {"model": "template.statetransition", "pk": 2283, "fields": {"resulting_state": 2362, "next_state_transition": 2284}}, {"model": "template.statetransition", "pk": 2284, "fields": {"resulting_state": 2363, "next_state_transition": 2285}}, {"model": "template.statetransition", "pk": 2285, "fields": {"resulting_state": 2364, "next_state_transition": 2286}}, {"model": "template.statetransition", "pk": 2286, "fields": {"resulting_state": 2365, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2287, "fields": {"resulting_state": 2341, "next_state_transition": 2288}}, {"model": "template.statetransition", "pk": 2288, "fields": {"resulting_state": 2366, "next_state_transition": 2289}}, {"model": "template.statetransition", "pk": 2289, "fields": {"resulting_state": 2367, "next_state_transition": 2290}}, {"model": "template.statetransition", "pk": 2290, "fields": {"resulting_state": 2368, "next_state_transition": 2291}}, {"model": "template.statetransition", "pk": 2291, "fields": {"resulting_state": 2369, "next_state_transition": 2292}}, {"model": "template.statetransition", "pk": 2292, "fields": {"resulting_state": 2370, "next_state_transition": 2293}}, {"model": "template.statetransition", "pk": 2293, "fields": {"resulting_state": 2371, "next_state_transition": 2294}}, {"model": "template.statetransition", "pk": 2294, "fields": {"resulting_state": 2372, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2295, "fields": {"resulting_state": 2340, "next_state_transition": 2296}}, {"model": "template.statetransition", "pk": 2296, "fields": {"resulting_state": 2373, "next_state_transition": 2297}}, {"model": "template.statetransition", "pk": 2297, "fields": {"resulting_state": 2374, "next_state_transition": 2298}}, {"model": "template.statetransition", "pk": 2298, "fields": {"resulting_state": 2375, "next_state_transition": 2299}}, {"model": "template.statetransition", "pk": 2299, "fields": {"resulting_state": 2376, "next_state_transition": 2300}}, {"model": "template.statetransition", "pk": 2300, "fields": {"resulting_state": 2377, "next_state_transition": 2301}}, {"model": "template.statetransition", "pk": 2301, "fields": {"resulting_state": 2378, "next_state_transition": 2302}}, {"model": "template.statetransition", "pk": 2302, "fields": {"resulting_state": 2379, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2303, "fields": {"resulting_state": 2339, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2304, "fields": {"resulting_state": 2338, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2305, "fields": {"resulting_state": 2337, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2306, "fields": {"resulting_state": 2336, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2307, "fields": {"resulting_state": 2384, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2308, "fields": {"resulting_state": 2383, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2309, "fields": {"resulting_state": 2382, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2310, "fields": {"resulting_state": 2381, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2311, "fields": {"resulting_state": 2394, "next_state_transition": 2312}}, {"model": "template.statetransition", "pk": 2312, "fields": {"resulting_state": 2395, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2313, "fields": {"resulting_state": 2393, "next_state_transition": 2314}}, {"model": "template.statetransition", "pk": 2314, "fields": {"resulting_state": 2396, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2315, "fields": {"resulting_state": 2392, "next_state_transition": 2316}}, {"model": "template.statetransition", "pk": 2316, "fields": {"resulting_state": 2397, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2317, "fields": {"resulting_state": 2391, "next_state_transition": 2318}}, {"model": "template.statetransition", "pk": 2318, "fields": {"resulting_state": 2398, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2319, "fields": {"resulting_state": 2390, "next_state_transition": 2320}}, {"model": "template.statetransition", "pk": 2320, "fields": {"resulting_state": 2399, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2321, "fields": {"resulting_state": 2389, "next_state_transition": 2322}}, {"model": "template.statetransition", "pk": 2322, "fields": {"resulting_state": 2400, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2323, "fields": {"resulting_state": 2388, "next_state_transition": 2324}}, {"model": "template.statetransition", "pk": 2324, "fields": {"resulting_state": 2401, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2325, "fields": {"resulting_state": 2387, "next_state_transition": 2326}}, {"model": "template.statetransition", "pk": 2326, "fields": {"resulting_state": 2402, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2327, "fields": {"resulting_state": 2386, "next_state_transition": 2328}}, {"model": "template.statetransition", "pk": 2328, "fields": {"resulting_state": 2403, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2329, "fields": {"resulting_state": 2414, "next_state_transition": 2330}}, {"model": "template.statetransition", "pk": 2330, "fields": {"resulting_state": 2415, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2331, "fields": {"resulting_state": 2413, "next_state_transition": 2332}}, {"model": "template.statetransition", "pk": 2332, "fields": {"resulting_state": 2416, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2333, "fields": {"resulting_state": 2412, "next_state_transition": 2334}}, {"model": "template.statetransition", "pk": 2334, "fields": {"resulting_state": 2417, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2335, "fields": {"resulting_state": 2411, "next_state_transition": 2336}}, {"model": "template.statetransition", "pk": 2336, "fields": {"resulting_state": 2418, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2337, "fields": {"resulting_state": 2410, "next_state_transition": 2338}}, {"model": "template.statetransition", "pk": 2338, "fields": {"resulting_state": 2419, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2339, "fields": {"resulting_state": 2409, "next_state_transition": 2340}}, {"model": "template.statetransition", "pk": 2340, "fields": {"resulting_state": 2420, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2341, "fields": {"resulting_state": 2408, "next_state_transition": 2342}}, {"model": "template.statetransition", "pk": 2342, "fields": {"resulting_state": 2421, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2343, "fields": {"resulting_state": 2407, "next_state_transition": 2344}}, {"model": "template.statetransition", "pk": 2344, "fields": {"resulting_state": 2422, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2345, "fields": {"resulting_state": 2406, "next_state_transition": 2346}}, {"model": "template.statetransition", "pk": 2346, "fields": {"resulting_state": 2423, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2347, "fields": {"resulting_state": 2434, "next_state_transition": 2348}}, {"model": "template.statetransition", "pk": 2348, "fields": {"resulting_state": 2435, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2349, "fields": {"resulting_state": 2433, "next_state_transition": 2350}}, {"model": "template.statetransition", "pk": 2350, "fields": {"resulting_state": 2436, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2351, "fields": {"resulting_state": 2432, "next_state_transition": 2352}}, {"model": "template.statetransition", "pk": 2352, "fields": {"resulting_state": 2437, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2353, "fields": {"resulting_state": 2431, "next_state_transition": 2354}}, {"model": "template.statetransition", "pk": 2354, "fields": {"resulting_state": 2438, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2355, "fields": {"resulting_state": 2430, "next_state_transition": 2356}}, {"model": "template.statetransition", "pk": 2356, "fields": {"resulting_state": 2439, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2357, "fields": {"resulting_state": 2429, "next_state_transition": 2358}}, {"model": "template.statetransition", "pk": 2358, "fields": {"resulting_state": 2440, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2359, "fields": {"resulting_state": 2428, "next_state_transition": 2360}}, {"model": "template.statetransition", "pk": 2360, "fields": {"resulting_state": 2441, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2361, "fields": {"resulting_state": 2427, "next_state_transition": 2362}}, {"model": "template.statetransition", "pk": 2362, "fields": {"resulting_state": 2442, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2363, "fields": {"resulting_state": 2426, "next_state_transition": 2364}}, {"model": "template.statetransition", "pk": 2364, "fields": {"resulting_state": 2443, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2365, "fields": {"resulting_state": 2454, "next_state_transition": 2366}}, {"model": "template.statetransition", "pk": 2366, "fields": {"resulting_state": 2455, "next_state_transition": 2367}}, {"model": "template.statetransition", "pk": 2367, "fields": {"resulting_state": 2456, "next_state_transition": 2368}}, {"model": "template.statetransition", "pk": 2368, "fields": {"resulting_state": 2457, "next_state_transition": 2369}}, {"model": "template.statetransition", "pk": 2369, "fields": {"resulting_state": 2458, "next_state_transition": 2370}}, {"model": "template.statetransition", "pk": 2370, "fields": {"resulting_state": 2459, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2371, "fields": {"resulting_state": 2453, "next_state_transition": 2372}}, {"model": "template.statetransition", "pk": 2372, "fields": {"resulting_state": 2460, "next_state_transition": 2373}}, {"model": "template.statetransition", "pk": 2373, "fields": {"resulting_state": 2461, "next_state_transition": 2374}}, {"model": "template.statetransition", "pk": 2374, "fields": {"resulting_state": 2462, "next_state_transition": 2375}}, {"model": "template.statetransition", "pk": 2375, "fields": {"resulting_state": 2463, "next_state_transition": 2376}}, {"model": "template.statetransition", "pk": 2376, "fields": {"resulting_state": 2464, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2377, "fields": {"resulting_state": 2452, "next_state_transition": 2378}}, {"model": "template.statetransition", "pk": 2378, "fields": {"resulting_state": 2465, "next_state_transition": 2379}}, {"model": "template.statetransition", "pk": 2379, "fields": {"resulting_state": 2466, "next_state_transition": 2380}}, {"model": "template.statetransition", "pk": 2380, "fields": {"resulting_state": 2467, "next_state_transition": 2381}}, {"model": "template.statetransition", "pk": 2381, "fields": {"resulting_state": 2468, "next_state_transition": 2382}}, {"model": "template.statetransition", "pk": 2382, "fields": {"resulting_state": 2469, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2383, "fields": {"resulting_state": 2451, "next_state_transition": 2384}}, {"model": "template.statetransition", "pk": 2384, "fields": {"resulting_state": 2470, "next_state_transition": 2385}}, {"model": "template.statetransition", "pk": 2385, "fields": {"resulting_state": 2471, "next_state_transition": 2386}}, {"model": "template.statetransition", "pk": 2386, "fields": {"resulting_state": 2472, "next_state_transition": 2387}}, {"model": "template.statetransition", "pk": 2387, "fields": {"resulting_state": 2473, "next_state_transition": 2388}}, {"model": "template.statetransition", "pk": 2388, "fields": {"resulting_state": 2474, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2389, "fields": {"resulting_state": 2450, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2390, "fields": {"resulting_state": 2449, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2391, "fields": {"resulting_state": 2448, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2392, "fields": {"resulting_state": 2447, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2393, "fields": {"resulting_state": 2446, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2394, "fields": {"resulting_state": 2480, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2395, "fields": {"resulting_state": 2479, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2396, "fields": {"resulting_state": 2478, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2397, "fields": {"resulting_state": 2477, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2398, "fields": {"resulting_state": 2476, "next_state_transition": null}}, {"model": "template.subcondition", "pk": 1, "fields": {"name": "Lyse", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"baaf316b-0565-4056-8d31-8c5595d24475": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 2, "fields": {"name": "4 EK´s", "upper_limit": 100000, "lower_limit": 4, "fulfilling_measures": {"actions": {"b5f4c015-4152-459f-bdbb-defab91a3d99": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 3, "fields": {"name": "0-1l Infusion", "upper_limit": 999, "lower_limit": 0, "fulfilling_measures": {"actions": {"2f1b5a58-57a8-4ba9-bb6d-69d2155cdf4d": 1000, "9ed9b301-d4f8-4e81-8e33-f26bbdc24104": 500}, "materials": {}}}}, {"model": "template.subcondition", "pk": 4, "fields": {"name": "1-2l Infusion", "upper_limit": 1999, "lower_limit": 1000, "fulfilling_measures": {"actions": {"2f1b5a58-57a8-4ba9-bb6d-69d2155cdf4d": 1000, "9ed9b301-d4f8-4e81-8e33-f26bbdc24104": 500}, "materials": {}}}}, {"model": "template.subcondition", "pk": 5, "fields": {"name": "2-3l Infusion", "upper_limit": 2999, "lower_limit": 2000, "fulfilling_measures": {"actions": {"2f1b5a58-57a8-4ba9-bb6d-69d2155cdf4d": 1000, "9ed9b301-d4f8-4e81-8e33-f26bbdc24104": 500}, "materials": {}}}}, {"model": "template.subcondition", "pk": 6, "fields": {"name": "3l-inf Infusion", "upper_limit": 100000, "lower_limit": 3000, "fulfilling_measures": {"actions": {"2f1b5a58-57a8-4ba9-bb6d-69d2155cdf4d": 1000, "9ed9b301-d4f8-4e81-8e33-f26bbdc24104": 500}, "materials": {}}}}, {"model": "template.subcondition", "pk": 7, "fields": {"name": "2l Infusion", "upper_limit": 100000, "lower_limit": 2000, "fulfilling_measures": {"actions": {"2f1b5a58-57a8-4ba9-bb6d-69d2155cdf4d": 1000, "9ed9b301-d4f8-4e81-8e33-f26bbdc24104": 500}, "materials": {}}}}, {"model": "template.subcondition", "pk": 8, "fields": {"name": "Thoraxdrainage/ Pleurapunktion", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"22b66af8-ace9-4652-a69c-be62425311cb": 1, "23da8633-a4a6-4af2-a0cb-4b34540033d4": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 9, "fields": {"name": "Glucose", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"1d6b0f2e-7efb-4065-9d58-ff52320e3c7c": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 10, "fields": {"name": "Nitrat", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"b3d54ebc-1459-4e8b-8c4e-98a3c68b1607": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 11, "fields": {"name": "O2", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"72d6f3ad-b9a5-4b16-b289-815766b27c4f": 1, "7b4861b2-e775-4d2a-9cd5-26bab7cc76a0": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 12, "fields": {"name": "OP läuft / ist gelaufen", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {}, "materials": {}}}}, {"model": "template.subcondition", "pk": 13, "fields": {"name": "Analgesie", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"e23f9c72-32fc-4a3f-806a-3031943e145d": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 14, "fields": {"name": "O2 Inhalation", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"72d6f3ad-b9a5-4b16-b289-815766b27c4f": 1, "7b4861b2-e775-4d2a-9cd5-26bab7cc76a0": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 15, "fields": {"name": "CPAP", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"a54e27ca-e443-464d-9daf-3483bd959242": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 16, "fields": {"name": "Antiasthmatikum", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"50014ee9-750a-4fb1-b8b1-50b4f05548c9": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 17, "fields": {"name": "Sedativum", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"2aef024b-b013-490b-87d5-95d9fe10ed72": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 18, "fields": {"name": "freie Atemwege", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"234d0237-ffa0-4e27-b269-99b39f6bfd9f": 1, "25fba4ad-b2fe-4761-87e7-5d5401ac359b": 1, "59edf7ba-7f05-4669-bed7-c17c9ffaccd0": 1, "8c3870ce-8cf6-47a7-add0-734fefaed093": 1, "9883a5c0-300f-4e71-ad7d-fc64d46274f0": 1, "aaf04c59-6c34-4a60-9d67-1a007f015c30": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 19, "fields": {"name": "0-1 EK´s", "upper_limit": 1, "lower_limit": 0, "fulfilling_measures": {"actions": {"b5f4c015-4152-459f-bdbb-defab91a3d99": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 20, "fields": {"name": "2-3 EK´s", "upper_limit": 3, "lower_limit": 2, "fulfilling_measures": {"actions": {"b5f4c015-4152-459f-bdbb-defab91a3d99": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 21, "fields": {"name": "4-5 EK´s", "upper_limit": 5, "lower_limit": 4, "fulfilling_measures": {"actions": {"b5f4c015-4152-459f-bdbb-defab91a3d99": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 22, "fields": {"name": "6-inf EK´s", "upper_limit": 100000, "lower_limit": 6, "fulfilling_measures": {"actions": {"b5f4c015-4152-459f-bdbb-defab91a3d99": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 23, "fields": {"name": "Beatmet", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"72d6f3ad-b9a5-4b16-b289-815766b27c4f": 1}, "materials": {"0067d4f1-d53d-4ec5-9627-792687dc7510": 1, "2752e40f-4b86-43ab-9ebd-95c094a101ab": 1}}}}, {"model": "template.subcondition", "pk": 24, "fields": {"name": "Blutstillung", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"0f5fef5b-998c-4648-a93e-9a6e8ccad3b7": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 25, "fields": {"name": "Regional-/ Vollnarkose", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"2de49d83-11be-410c-ac7a-68c458baf620": 1, "6b826d26-aa0a-4317-96f5-6565d7ee1e5f": 1, "d4971ae5-117b-49b8-b5c9-4e4220ff971c": 1}, "materials": {}}}}, {"model": "template.logicnode", "pk": 1, "fields": {"state_transition": 1, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2, "fields": {"state_transition": 2, "node_type": "N", "subcondition": null, "parent": 8}}, {"model": "template.logicnode", "pk": 3, "fields": {"state_transition": 2, "node_type": "S", "subcondition": 23, "parent": 2}}, {"model": "template.logicnode", "pk": 4, "fields": {"state_transition": 2, "node_type": "S", "subcondition": 11, "parent": 8}}, {"model": "template.logicnode", "pk": 5, "fields": {"state_transition": 2, "node_type": "S", "subcondition": 13, "parent": 8}}, {"model": "template.logicnode", "pk": 6, "fields": {"state_transition": 2, "node_type": "S", "subcondition": 17, "parent": 8}}, {"model": "template.logicnode", "pk": 7, "fields": {"state_transition": 2, "node_type": "S", "subcondition": 25, "parent": 8}}, {"model": "template.logicnode", "pk": 8, "fields": {"state_transition": 2, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 9, "fields": {"state_transition": 3, "node_type": "N", "subcondition": null, "parent": 14}}, {"model": "template.logicnode", "pk": 10, "fields": {"state_transition": 3, "node_type": "S", "subcondition": 23, "parent": 9}}, {"model": "template.logicnode", "pk": 11, "fields": {"state_transition": 3, "node_type": "S", "subcondition": 11, "parent": 14}}, {"model": "template.logicnode", "pk": 12, "fields": {"state_transition": 3, "node_type": "S", "subcondition": 13, "parent": 14}}, {"model": "template.logicnode", "pk": 13, "fields": {"state_transition": 3, "node_type": "S", "subcondition": 17, "parent": 14}}, {"model": "template.logicnode", "pk": 14, "fields": {"state_transition": 3, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 15, "fields": {"state_transition": 4, "node_type": "N", "subcondition": null, "parent": 20}}, {"model": "template.logicnode", "pk": 16, "fields": {"state_transition": 4, "node_type": "S", "subcondition": 23, "parent": 15}}, {"model": "template.logicnode", "pk": 17, "fields": {"state_transition": 4, "node_type": "S", "subcondition": 11, "parent": 20}}, {"model": "template.logicnode", "pk": 18, "fields": {"state_transition": 4, "node_type": "S", "subcondition": 13, "parent": 20}}, {"model": "template.logicnode", "pk": 19, "fields": {"state_transition": 4, "node_type": "S", "subcondition": 25, "parent": 20}}, {"model": "template.logicnode", "pk": 20, "fields": {"state_transition": 4, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 21, "fields": {"state_transition": 5, "node_type": "N", "subcondition": null, "parent": 25}}, {"model": "template.logicnode", "pk": 22, "fields": {"state_transition": 5, "node_type": "S", "subcondition": 23, "parent": 21}}, {"model": "template.logicnode", "pk": 23, "fields": {"state_transition": 5, "node_type": "S", "subcondition": 11, "parent": 25}}, {"model": "template.logicnode", "pk": 24, "fields": {"state_transition": 5, "node_type": "S", "subcondition": 13, "parent": 25}}, {"model": "template.logicnode", "pk": 25, "fields": {"state_transition": 5, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 26, "fields": {"state_transition": 6, "node_type": "N", "subcondition": null, "parent": 31}}, {"model": "template.logicnode", "pk": 27, "fields": {"state_transition": 6, "node_type": "S", "subcondition": 23, "parent": 26}}, {"model": "template.logicnode", "pk": 28, "fields": {"state_transition": 6, "node_type": "S", "subcondition": 11, "parent": 31}}, {"model": "template.logicnode", "pk": 29, "fields": {"state_transition": 6, "node_type": "S", "subcondition": 17, "parent": 31}}, {"model": "template.logicnode", "pk": 30, "fields": {"state_transition": 6, "node_type": "S", "subcondition": 25, "parent": 31}}, {"model": "template.logicnode", "pk": 31, "fields": {"state_transition": 6, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 32, "fields": {"state_transition": 7, "node_type": "N", "subcondition": null, "parent": 36}}, {"model": "template.logicnode", "pk": 33, "fields": {"state_transition": 7, "node_type": "S", "subcondition": 23, "parent": 32}}, {"model": "template.logicnode", "pk": 34, "fields": {"state_transition": 7, "node_type": "S", "subcondition": 11, "parent": 36}}, {"model": "template.logicnode", "pk": 35, "fields": {"state_transition": 7, "node_type": "S", "subcondition": 17, "parent": 36}}, {"model": "template.logicnode", "pk": 36, "fields": {"state_transition": 7, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 37, "fields": {"state_transition": 8, "node_type": "N", "subcondition": null, "parent": 41}}, {"model": "template.logicnode", "pk": 38, "fields": {"state_transition": 8, "node_type": "S", "subcondition": 23, "parent": 37}}, {"model": "template.logicnode", "pk": 39, "fields": {"state_transition": 8, "node_type": "S", "subcondition": 11, "parent": 41}}, {"model": "template.logicnode", "pk": 40, "fields": {"state_transition": 8, "node_type": "S", "subcondition": 25, "parent": 41}}, {"model": "template.logicnode", "pk": 41, "fields": {"state_transition": 8, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 42, "fields": {"state_transition": 9, "node_type": "N", "subcondition": null, "parent": 45}}, {"model": "template.logicnode", "pk": 43, "fields": {"state_transition": 9, "node_type": "S", "subcondition": 23, "parent": 42}}, {"model": "template.logicnode", "pk": 44, "fields": {"state_transition": 9, "node_type": "S", "subcondition": 11, "parent": 45}}, {"model": "template.logicnode", "pk": 45, "fields": {"state_transition": 9, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 46, "fields": {"state_transition": 10, "node_type": "N", "subcondition": null, "parent": 51}}, {"model": "template.logicnode", "pk": 47, "fields": {"state_transition": 10, "node_type": "S", "subcondition": 23, "parent": 46}}, {"model": "template.logicnode", "pk": 48, "fields": {"state_transition": 10, "node_type": "S", "subcondition": 13, "parent": 51}}, {"model": "template.logicnode", "pk": 49, "fields": {"state_transition": 10, "node_type": "S", "subcondition": 17, "parent": 51}}, {"model": "template.logicnode", "pk": 50, "fields": {"state_transition": 10, "node_type": "S", "subcondition": 25, "parent": 51}}, {"model": "template.logicnode", "pk": 51, "fields": {"state_transition": 10, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 52, "fields": {"state_transition": 11, "node_type": "N", "subcondition": null, "parent": 56}}, {"model": "template.logicnode", "pk": 53, "fields": {"state_transition": 11, "node_type": "S", "subcondition": 23, "parent": 52}}, {"model": "template.logicnode", "pk": 54, "fields": {"state_transition": 11, "node_type": "S", "subcondition": 13, "parent": 56}}, {"model": "template.logicnode", "pk": 55, "fields": {"state_transition": 11, "node_type": "S", "subcondition": 17, "parent": 56}}, {"model": "template.logicnode", "pk": 56, "fields": {"state_transition": 11, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 57, "fields": {"state_transition": 12, "node_type": "N", "subcondition": null, "parent": 61}}, {"model": "template.logicnode", "pk": 58, "fields": {"state_transition": 12, "node_type": "S", "subcondition": 23, "parent": 57}}, {"model": "template.logicnode", "pk": 59, "fields": {"state_transition": 12, "node_type": "S", "subcondition": 13, "parent": 61}}, {"model": "template.logicnode", "pk": 60, "fields": {"state_transition": 12, "node_type": "S", "subcondition": 25, "parent": 61}}, {"model": "template.logicnode", "pk": 61, "fields": {"state_transition": 12, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 62, "fields": {"state_transition": 13, "node_type": "N", "subcondition": null, "parent": 65}}, {"model": "template.logicnode", "pk": 63, "fields": {"state_transition": 13, "node_type": "S", "subcondition": 23, "parent": 62}}, {"model": "template.logicnode", "pk": 64, "fields": {"state_transition": 13, "node_type": "S", "subcondition": 13, "parent": 65}}, {"model": "template.logicnode", "pk": 65, "fields": {"state_transition": 13, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 66, "fields": {"state_transition": 14, "node_type": "N", "subcondition": null, "parent": 70}}, {"model": "template.logicnode", "pk": 67, "fields": {"state_transition": 14, "node_type": "S", "subcondition": 23, "parent": 66}}, {"model": "template.logicnode", "pk": 68, "fields": {"state_transition": 14, "node_type": "S", "subcondition": 17, "parent": 70}}, {"model": "template.logicnode", "pk": 69, "fields": {"state_transition": 14, "node_type": "S", "subcondition": 25, "parent": 70}}, {"model": "template.logicnode", "pk": 70, "fields": {"state_transition": 14, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 71, "fields": {"state_transition": 15, "node_type": "N", "subcondition": null, "parent": 74}}, {"model": "template.logicnode", "pk": 72, "fields": {"state_transition": 15, "node_type": "S", "subcondition": 23, "parent": 71}}, {"model": "template.logicnode", "pk": 73, "fields": {"state_transition": 15, "node_type": "S", "subcondition": 17, "parent": 74}}, {"model": "template.logicnode", "pk": 74, "fields": {"state_transition": 15, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 75, "fields": {"state_transition": 16, "node_type": "N", "subcondition": null, "parent": 78}}, {"model": "template.logicnode", "pk": 76, "fields": {"state_transition": 16, "node_type": "S", "subcondition": 23, "parent": 75}}, {"model": "template.logicnode", "pk": 77, "fields": {"state_transition": 16, "node_type": "S", "subcondition": 25, "parent": 78}}, {"model": "template.logicnode", "pk": 78, "fields": {"state_transition": 16, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 79, "fields": {"state_transition": 17, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 80, "fields": {"state_transition": 17, "node_type": "S", "subcondition": 23, "parent": 79}}, {"model": "template.logicnode", "pk": 81, "fields": {"state_transition": 18, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 82, "fields": {"state_transition": 19, "node_type": "N", "subcondition": null, "parent": 88}}, {"model": "template.logicnode", "pk": 83, "fields": {"state_transition": 19, "node_type": "S", "subcondition": 23, "parent": 82}}, {"model": "template.logicnode", "pk": 84, "fields": {"state_transition": 19, "node_type": "S", "subcondition": 11, "parent": 88}}, {"model": "template.logicnode", "pk": 85, "fields": {"state_transition": 19, "node_type": "S", "subcondition": 13, "parent": 88}}, {"model": "template.logicnode", "pk": 86, "fields": {"state_transition": 19, "node_type": "S", "subcondition": 17, "parent": 88}}, {"model": "template.logicnode", "pk": 87, "fields": {"state_transition": 19, "node_type": "S", "subcondition": 25, "parent": 88}}, {"model": "template.logicnode", "pk": 88, "fields": {"state_transition": 19, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 89, "fields": {"state_transition": 20, "node_type": "N", "subcondition": null, "parent": 94}}, {"model": "template.logicnode", "pk": 90, "fields": {"state_transition": 20, "node_type": "S", "subcondition": 23, "parent": 89}}, {"model": "template.logicnode", "pk": 91, "fields": {"state_transition": 20, "node_type": "S", "subcondition": 11, "parent": 94}}, {"model": "template.logicnode", "pk": 92, "fields": {"state_transition": 20, "node_type": "S", "subcondition": 13, "parent": 94}}, {"model": "template.logicnode", "pk": 93, "fields": {"state_transition": 20, "node_type": "S", "subcondition": 17, "parent": 94}}, {"model": "template.logicnode", "pk": 94, "fields": {"state_transition": 20, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 95, "fields": {"state_transition": 21, "node_type": "N", "subcondition": null, "parent": 100}}, {"model": "template.logicnode", "pk": 96, "fields": {"state_transition": 21, "node_type": "S", "subcondition": 23, "parent": 95}}, {"model": "template.logicnode", "pk": 97, "fields": {"state_transition": 21, "node_type": "S", "subcondition": 11, "parent": 100}}, {"model": "template.logicnode", "pk": 98, "fields": {"state_transition": 21, "node_type": "S", "subcondition": 13, "parent": 100}}, {"model": "template.logicnode", "pk": 99, "fields": {"state_transition": 21, "node_type": "S", "subcondition": 25, "parent": 100}}, {"model": "template.logicnode", "pk": 100, "fields": {"state_transition": 21, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 101, "fields": {"state_transition": 22, "node_type": "N", "subcondition": null, "parent": 105}}, {"model": "template.logicnode", "pk": 102, "fields": {"state_transition": 22, "node_type": "S", "subcondition": 23, "parent": 101}}, {"model": "template.logicnode", "pk": 103, "fields": {"state_transition": 22, "node_type": "S", "subcondition": 11, "parent": 105}}, {"model": "template.logicnode", "pk": 104, "fields": {"state_transition": 22, "node_type": "S", "subcondition": 13, "parent": 105}}, {"model": "template.logicnode", "pk": 105, "fields": {"state_transition": 22, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 106, "fields": {"state_transition": 23, "node_type": "N", "subcondition": null, "parent": 111}}, {"model": "template.logicnode", "pk": 107, "fields": {"state_transition": 23, "node_type": "S", "subcondition": 23, "parent": 106}}, {"model": "template.logicnode", "pk": 108, "fields": {"state_transition": 23, "node_type": "S", "subcondition": 11, "parent": 111}}, {"model": "template.logicnode", "pk": 109, "fields": {"state_transition": 23, "node_type": "S", "subcondition": 17, "parent": 111}}, {"model": "template.logicnode", "pk": 110, "fields": {"state_transition": 23, "node_type": "S", "subcondition": 25, "parent": 111}}, {"model": "template.logicnode", "pk": 111, "fields": {"state_transition": 23, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 112, "fields": {"state_transition": 24, "node_type": "N", "subcondition": null, "parent": 116}}, {"model": "template.logicnode", "pk": 113, "fields": {"state_transition": 24, "node_type": "S", "subcondition": 23, "parent": 112}}, {"model": "template.logicnode", "pk": 114, "fields": {"state_transition": 24, "node_type": "S", "subcondition": 11, "parent": 116}}, {"model": "template.logicnode", "pk": 115, "fields": {"state_transition": 24, "node_type": "S", "subcondition": 17, "parent": 116}}, {"model": "template.logicnode", "pk": 116, "fields": {"state_transition": 24, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 117, "fields": {"state_transition": 25, "node_type": "N", "subcondition": null, "parent": 121}}, {"model": "template.logicnode", "pk": 118, "fields": {"state_transition": 25, "node_type": "S", "subcondition": 23, "parent": 117}}, {"model": "template.logicnode", "pk": 119, "fields": {"state_transition": 25, "node_type": "S", "subcondition": 11, "parent": 121}}, {"model": "template.logicnode", "pk": 120, "fields": {"state_transition": 25, "node_type": "S", "subcondition": 25, "parent": 121}}, {"model": "template.logicnode", "pk": 121, "fields": {"state_transition": 25, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 122, "fields": {"state_transition": 26, "node_type": "N", "subcondition": null, "parent": 125}}, {"model": "template.logicnode", "pk": 123, "fields": {"state_transition": 26, "node_type": "S", "subcondition": 23, "parent": 122}}, {"model": "template.logicnode", "pk": 124, "fields": {"state_transition": 26, "node_type": "S", "subcondition": 11, "parent": 125}}, {"model": "template.logicnode", "pk": 125, "fields": {"state_transition": 26, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 126, "fields": {"state_transition": 27, "node_type": "N", "subcondition": null, "parent": 131}}, {"model": "template.logicnode", "pk": 127, "fields": {"state_transition": 27, "node_type": "S", "subcondition": 23, "parent": 126}}, {"model": "template.logicnode", "pk": 128, "fields": {"state_transition": 27, "node_type": "S", "subcondition": 13, "parent": 131}}, {"model": "template.logicnode", "pk": 129, "fields": {"state_transition": 27, "node_type": "S", "subcondition": 17, "parent": 131}}, {"model": "template.logicnode", "pk": 130, "fields": {"state_transition": 27, "node_type": "S", "subcondition": 25, "parent": 131}}, {"model": "template.logicnode", "pk": 131, "fields": {"state_transition": 27, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 132, "fields": {"state_transition": 28, "node_type": "N", "subcondition": null, "parent": 136}}, {"model": "template.logicnode", "pk": 133, "fields": {"state_transition": 28, "node_type": "S", "subcondition": 23, "parent": 132}}, {"model": "template.logicnode", "pk": 134, "fields": {"state_transition": 28, "node_type": "S", "subcondition": 13, "parent": 136}}, {"model": "template.logicnode", "pk": 135, "fields": {"state_transition": 28, "node_type": "S", "subcondition": 17, "parent": 136}}, {"model": "template.logicnode", "pk": 136, "fields": {"state_transition": 28, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 137, "fields": {"state_transition": 29, "node_type": "N", "subcondition": null, "parent": 141}}, {"model": "template.logicnode", "pk": 138, "fields": {"state_transition": 29, "node_type": "S", "subcondition": 23, "parent": 137}}, {"model": "template.logicnode", "pk": 139, "fields": {"state_transition": 29, "node_type": "S", "subcondition": 13, "parent": 141}}, {"model": "template.logicnode", "pk": 140, "fields": {"state_transition": 29, "node_type": "S", "subcondition": 25, "parent": 141}}, {"model": "template.logicnode", "pk": 141, "fields": {"state_transition": 29, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 142, "fields": {"state_transition": 30, "node_type": "N", "subcondition": null, "parent": 145}}, {"model": "template.logicnode", "pk": 143, "fields": {"state_transition": 30, "node_type": "S", "subcondition": 23, "parent": 142}}, {"model": "template.logicnode", "pk": 144, "fields": {"state_transition": 30, "node_type": "S", "subcondition": 13, "parent": 145}}, {"model": "template.logicnode", "pk": 145, "fields": {"state_transition": 30, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 146, "fields": {"state_transition": 31, "node_type": "N", "subcondition": null, "parent": 150}}, {"model": "template.logicnode", "pk": 147, "fields": {"state_transition": 31, "node_type": "S", "subcondition": 23, "parent": 146}}, {"model": "template.logicnode", "pk": 148, "fields": {"state_transition": 31, "node_type": "S", "subcondition": 17, "parent": 150}}, {"model": "template.logicnode", "pk": 149, "fields": {"state_transition": 31, "node_type": "S", "subcondition": 25, "parent": 150}}, {"model": "template.logicnode", "pk": 150, "fields": {"state_transition": 31, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 151, "fields": {"state_transition": 32, "node_type": "N", "subcondition": null, "parent": 154}}, {"model": "template.logicnode", "pk": 152, "fields": {"state_transition": 32, "node_type": "S", "subcondition": 23, "parent": 151}}, {"model": "template.logicnode", "pk": 153, "fields": {"state_transition": 32, "node_type": "S", "subcondition": 17, "parent": 154}}, {"model": "template.logicnode", "pk": 154, "fields": {"state_transition": 32, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 155, "fields": {"state_transition": 33, "node_type": "N", "subcondition": null, "parent": 158}}, {"model": "template.logicnode", "pk": 156, "fields": {"state_transition": 33, "node_type": "S", "subcondition": 23, "parent": 155}}, {"model": "template.logicnode", "pk": 157, "fields": {"state_transition": 33, "node_type": "S", "subcondition": 25, "parent": 158}}, {"model": "template.logicnode", "pk": 158, "fields": {"state_transition": 33, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 159, "fields": {"state_transition": 34, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 160, "fields": {"state_transition": 34, "node_type": "S", "subcondition": 23, "parent": 159}}, {"model": "template.logicnode", "pk": 161, "fields": {"state_transition": 35, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 162, "fields": {"state_transition": 36, "node_type": "N", "subcondition": null, "parent": 168}}, {"model": "template.logicnode", "pk": 163, "fields": {"state_transition": 36, "node_type": "S", "subcondition": 23, "parent": 162}}, {"model": "template.logicnode", "pk": 164, "fields": {"state_transition": 36, "node_type": "S", "subcondition": 11, "parent": 168}}, {"model": "template.logicnode", "pk": 165, "fields": {"state_transition": 36, "node_type": "S", "subcondition": 13, "parent": 168}}, {"model": "template.logicnode", "pk": 166, "fields": {"state_transition": 36, "node_type": "S", "subcondition": 17, "parent": 168}}, {"model": "template.logicnode", "pk": 167, "fields": {"state_transition": 36, "node_type": "S", "subcondition": 25, "parent": 168}}, {"model": "template.logicnode", "pk": 168, "fields": {"state_transition": 36, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 169, "fields": {"state_transition": 37, "node_type": "N", "subcondition": null, "parent": 174}}, {"model": "template.logicnode", "pk": 170, "fields": {"state_transition": 37, "node_type": "S", "subcondition": 23, "parent": 169}}, {"model": "template.logicnode", "pk": 171, "fields": {"state_transition": 37, "node_type": "S", "subcondition": 11, "parent": 174}}, {"model": "template.logicnode", "pk": 172, "fields": {"state_transition": 37, "node_type": "S", "subcondition": 13, "parent": 174}}, {"model": "template.logicnode", "pk": 173, "fields": {"state_transition": 37, "node_type": "S", "subcondition": 17, "parent": 174}}, {"model": "template.logicnode", "pk": 174, "fields": {"state_transition": 37, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 175, "fields": {"state_transition": 38, "node_type": "N", "subcondition": null, "parent": 180}}, {"model": "template.logicnode", "pk": 176, "fields": {"state_transition": 38, "node_type": "S", "subcondition": 23, "parent": 175}}, {"model": "template.logicnode", "pk": 177, "fields": {"state_transition": 38, "node_type": "S", "subcondition": 11, "parent": 180}}, {"model": "template.logicnode", "pk": 178, "fields": {"state_transition": 38, "node_type": "S", "subcondition": 13, "parent": 180}}, {"model": "template.logicnode", "pk": 179, "fields": {"state_transition": 38, "node_type": "S", "subcondition": 25, "parent": 180}}, {"model": "template.logicnode", "pk": 180, "fields": {"state_transition": 38, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 181, "fields": {"state_transition": 39, "node_type": "N", "subcondition": null, "parent": 185}}, {"model": "template.logicnode", "pk": 182, "fields": {"state_transition": 39, "node_type": "S", "subcondition": 23, "parent": 181}}, {"model": "template.logicnode", "pk": 183, "fields": {"state_transition": 39, "node_type": "S", "subcondition": 11, "parent": 185}}, {"model": "template.logicnode", "pk": 184, "fields": {"state_transition": 39, "node_type": "S", "subcondition": 13, "parent": 185}}, {"model": "template.logicnode", "pk": 185, "fields": {"state_transition": 39, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 186, "fields": {"state_transition": 40, "node_type": "N", "subcondition": null, "parent": 191}}, {"model": "template.logicnode", "pk": 187, "fields": {"state_transition": 40, "node_type": "S", "subcondition": 23, "parent": 186}}, {"model": "template.logicnode", "pk": 188, "fields": {"state_transition": 40, "node_type": "S", "subcondition": 11, "parent": 191}}, {"model": "template.logicnode", "pk": 189, "fields": {"state_transition": 40, "node_type": "S", "subcondition": 17, "parent": 191}}, {"model": "template.logicnode", "pk": 190, "fields": {"state_transition": 40, "node_type": "S", "subcondition": 25, "parent": 191}}, {"model": "template.logicnode", "pk": 191, "fields": {"state_transition": 40, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 192, "fields": {"state_transition": 41, "node_type": "N", "subcondition": null, "parent": 196}}, {"model": "template.logicnode", "pk": 193, "fields": {"state_transition": 41, "node_type": "S", "subcondition": 23, "parent": 192}}, {"model": "template.logicnode", "pk": 194, "fields": {"state_transition": 41, "node_type": "S", "subcondition": 11, "parent": 196}}, {"model": "template.logicnode", "pk": 195, "fields": {"state_transition": 41, "node_type": "S", "subcondition": 17, "parent": 196}}, {"model": "template.logicnode", "pk": 196, "fields": {"state_transition": 41, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 197, "fields": {"state_transition": 42, "node_type": "N", "subcondition": null, "parent": 201}}, {"model": "template.logicnode", "pk": 198, "fields": {"state_transition": 42, "node_type": "S", "subcondition": 23, "parent": 197}}, {"model": "template.logicnode", "pk": 199, "fields": {"state_transition": 42, "node_type": "S", "subcondition": 11, "parent": 201}}, {"model": "template.logicnode", "pk": 200, "fields": {"state_transition": 42, "node_type": "S", "subcondition": 25, "parent": 201}}, {"model": "template.logicnode", "pk": 201, "fields": {"state_transition": 42, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 202, "fields": {"state_transition": 43, "node_type": "N", "subcondition": null, "parent": 205}}, {"model": "template.logicnode", "pk": 203, "fields": {"state_transition": 43, "node_type": "S", "subcondition": 23, "parent": 202}}, {"model": "template.logicnode", "pk": 204, "fields": {"state_transition": 43, "node_type": "S", "subcondition": 11, "parent": 205}}, {"model": "template.logicnode", "pk": 205, "fields": {"state_transition": 43, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 206, "fields": {"state_transition": 44, "node_type": "N", "subcondition": null, "parent": 211}}, {"model": "template.logicnode", "pk": 207, "fields": {"state_transition": 44, "node_type": "S", "subcondition": 23, "parent": 206}}, {"model": "template.logicnode", "pk": 208, "fields": {"state_transition": 44, "node_type": "S", "subcondition": 13, "parent": 211}}, {"model": "template.logicnode", "pk": 209, "fields": {"state_transition": 44, "node_type": "S", "subcondition": 17, "parent": 211}}, {"model": "template.logicnode", "pk": 210, "fields": {"state_transition": 44, "node_type": "S", "subcondition": 25, "parent": 211}}, {"model": "template.logicnode", "pk": 211, "fields": {"state_transition": 44, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 212, "fields": {"state_transition": 45, "node_type": "N", "subcondition": null, "parent": 216}}, {"model": "template.logicnode", "pk": 213, "fields": {"state_transition": 45, "node_type": "S", "subcondition": 23, "parent": 212}}, {"model": "template.logicnode", "pk": 214, "fields": {"state_transition": 45, "node_type": "S", "subcondition": 13, "parent": 216}}, {"model": "template.logicnode", "pk": 215, "fields": {"state_transition": 45, "node_type": "S", "subcondition": 17, "parent": 216}}, {"model": "template.logicnode", "pk": 216, "fields": {"state_transition": 45, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 217, "fields": {"state_transition": 46, "node_type": "N", "subcondition": null, "parent": 221}}, {"model": "template.logicnode", "pk": 218, "fields": {"state_transition": 46, "node_type": "S", "subcondition": 23, "parent": 217}}, {"model": "template.logicnode", "pk": 219, "fields": {"state_transition": 46, "node_type": "S", "subcondition": 13, "parent": 221}}, {"model": "template.logicnode", "pk": 220, "fields": {"state_transition": 46, "node_type": "S", "subcondition": 25, "parent": 221}}, {"model": "template.logicnode", "pk": 221, "fields": {"state_transition": 46, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 222, "fields": {"state_transition": 47, "node_type": "N", "subcondition": null, "parent": 225}}, {"model": "template.logicnode", "pk": 223, "fields": {"state_transition": 47, "node_type": "S", "subcondition": 23, "parent": 222}}, {"model": "template.logicnode", "pk": 224, "fields": {"state_transition": 47, "node_type": "S", "subcondition": 13, "parent": 225}}, {"model": "template.logicnode", "pk": 225, "fields": {"state_transition": 47, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 226, "fields": {"state_transition": 48, "node_type": "N", "subcondition": null, "parent": 230}}, {"model": "template.logicnode", "pk": 227, "fields": {"state_transition": 48, "node_type": "S", "subcondition": 23, "parent": 226}}, {"model": "template.logicnode", "pk": 228, "fields": {"state_transition": 48, "node_type": "S", "subcondition": 17, "parent": 230}}, {"model": "template.logicnode", "pk": 229, "fields": {"state_transition": 48, "node_type": "S", "subcondition": 25, "parent": 230}}, {"model": "template.logicnode", "pk": 230, "fields": {"state_transition": 48, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 231, "fields": {"state_transition": 49, "node_type": "N", "subcondition": null, "parent": 234}}, {"model": "template.logicnode", "pk": 232, "fields": {"state_transition": 49, "node_type": "S", "subcondition": 23, "parent": 231}}, {"model": "template.logicnode", "pk": 233, "fields": {"state_transition": 49, "node_type": "S", "subcondition": 17, "parent": 234}}, {"model": "template.logicnode", "pk": 234, "fields": {"state_transition": 49, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 235, "fields": {"state_transition": 50, "node_type": "N", "subcondition": null, "parent": 238}}, {"model": "template.logicnode", "pk": 236, "fields": {"state_transition": 50, "node_type": "S", "subcondition": 23, "parent": 235}}, {"model": "template.logicnode", "pk": 237, "fields": {"state_transition": 50, "node_type": "S", "subcondition": 25, "parent": 238}}, {"model": "template.logicnode", "pk": 238, "fields": {"state_transition": 50, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 239, "fields": {"state_transition": 51, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 240, "fields": {"state_transition": 51, "node_type": "S", "subcondition": 23, "parent": 239}}, {"model": "template.logicnode", "pk": 241, "fields": {"state_transition": 52, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 242, "fields": {"state_transition": 53, "node_type": "N", "subcondition": null, "parent": 248}}, {"model": "template.logicnode", "pk": 243, "fields": {"state_transition": 53, "node_type": "S", "subcondition": 23, "parent": 242}}, {"model": "template.logicnode", "pk": 244, "fields": {"state_transition": 53, "node_type": "S", "subcondition": 11, "parent": 248}}, {"model": "template.logicnode", "pk": 245, "fields": {"state_transition": 53, "node_type": "S", "subcondition": 13, "parent": 248}}, {"model": "template.logicnode", "pk": 246, "fields": {"state_transition": 53, "node_type": "S", "subcondition": 17, "parent": 248}}, {"model": "template.logicnode", "pk": 247, "fields": {"state_transition": 53, "node_type": "S", "subcondition": 25, "parent": 248}}, {"model": "template.logicnode", "pk": 248, "fields": {"state_transition": 53, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 249, "fields": {"state_transition": 54, "node_type": "N", "subcondition": null, "parent": 254}}, {"model": "template.logicnode", "pk": 250, "fields": {"state_transition": 54, "node_type": "S", "subcondition": 23, "parent": 249}}, {"model": "template.logicnode", "pk": 251, "fields": {"state_transition": 54, "node_type": "S", "subcondition": 11, "parent": 254}}, {"model": "template.logicnode", "pk": 252, "fields": {"state_transition": 54, "node_type": "S", "subcondition": 13, "parent": 254}}, {"model": "template.logicnode", "pk": 253, "fields": {"state_transition": 54, "node_type": "S", "subcondition": 17, "parent": 254}}, {"model": "template.logicnode", "pk": 254, "fields": {"state_transition": 54, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 255, "fields": {"state_transition": 55, "node_type": "N", "subcondition": null, "parent": 260}}, {"model": "template.logicnode", "pk": 256, "fields": {"state_transition": 55, "node_type": "S", "subcondition": 23, "parent": 255}}, {"model": "template.logicnode", "pk": 257, "fields": {"state_transition": 55, "node_type": "S", "subcondition": 11, "parent": 260}}, {"model": "template.logicnode", "pk": 258, "fields": {"state_transition": 55, "node_type": "S", "subcondition": 13, "parent": 260}}, {"model": "template.logicnode", "pk": 259, "fields": {"state_transition": 55, "node_type": "S", "subcondition": 25, "parent": 260}}, {"model": "template.logicnode", "pk": 260, "fields": {"state_transition": 55, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 261, "fields": {"state_transition": 56, "node_type": "N", "subcondition": null, "parent": 265}}, {"model": "template.logicnode", "pk": 262, "fields": {"state_transition": 56, "node_type": "S", "subcondition": 23, "parent": 261}}, {"model": "template.logicnode", "pk": 263, "fields": {"state_transition": 56, "node_type": "S", "subcondition": 11, "parent": 265}}, {"model": "template.logicnode", "pk": 264, "fields": {"state_transition": 56, "node_type": "S", "subcondition": 13, "parent": 265}}, {"model": "template.logicnode", "pk": 265, "fields": {"state_transition": 56, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 266, "fields": {"state_transition": 57, "node_type": "N", "subcondition": null, "parent": 271}}, {"model": "template.logicnode", "pk": 267, "fields": {"state_transition": 57, "node_type": "S", "subcondition": 23, "parent": 266}}, {"model": "template.logicnode", "pk": 268, "fields": {"state_transition": 57, "node_type": "S", "subcondition": 11, "parent": 271}}, {"model": "template.logicnode", "pk": 269, "fields": {"state_transition": 57, "node_type": "S", "subcondition": 17, "parent": 271}}, {"model": "template.logicnode", "pk": 270, "fields": {"state_transition": 57, "node_type": "S", "subcondition": 25, "parent": 271}}, {"model": "template.logicnode", "pk": 271, "fields": {"state_transition": 57, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 272, "fields": {"state_transition": 58, "node_type": "N", "subcondition": null, "parent": 276}}, {"model": "template.logicnode", "pk": 273, "fields": {"state_transition": 58, "node_type": "S", "subcondition": 23, "parent": 272}}, {"model": "template.logicnode", "pk": 274, "fields": {"state_transition": 58, "node_type": "S", "subcondition": 11, "parent": 276}}, {"model": "template.logicnode", "pk": 275, "fields": {"state_transition": 58, "node_type": "S", "subcondition": 17, "parent": 276}}, {"model": "template.logicnode", "pk": 276, "fields": {"state_transition": 58, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 277, "fields": {"state_transition": 59, "node_type": "N", "subcondition": null, "parent": 281}}, {"model": "template.logicnode", "pk": 278, "fields": {"state_transition": 59, "node_type": "S", "subcondition": 23, "parent": 277}}, {"model": "template.logicnode", "pk": 279, "fields": {"state_transition": 59, "node_type": "S", "subcondition": 11, "parent": 281}}, {"model": "template.logicnode", "pk": 280, "fields": {"state_transition": 59, "node_type": "S", "subcondition": 25, "parent": 281}}, {"model": "template.logicnode", "pk": 281, "fields": {"state_transition": 59, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 282, "fields": {"state_transition": 60, "node_type": "N", "subcondition": null, "parent": 285}}, {"model": "template.logicnode", "pk": 283, "fields": {"state_transition": 60, "node_type": "S", "subcondition": 23, "parent": 282}}, {"model": "template.logicnode", "pk": 284, "fields": {"state_transition": 60, "node_type": "S", "subcondition": 11, "parent": 285}}, {"model": "template.logicnode", "pk": 285, "fields": {"state_transition": 60, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 286, "fields": {"state_transition": 61, "node_type": "N", "subcondition": null, "parent": 291}}, {"model": "template.logicnode", "pk": 287, "fields": {"state_transition": 61, "node_type": "S", "subcondition": 23, "parent": 286}}, {"model": "template.logicnode", "pk": 288, "fields": {"state_transition": 61, "node_type": "S", "subcondition": 13, "parent": 291}}, {"model": "template.logicnode", "pk": 289, "fields": {"state_transition": 61, "node_type": "S", "subcondition": 17, "parent": 291}}, {"model": "template.logicnode", "pk": 290, "fields": {"state_transition": 61, "node_type": "S", "subcondition": 25, "parent": 291}}, {"model": "template.logicnode", "pk": 291, "fields": {"state_transition": 61, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 292, "fields": {"state_transition": 62, "node_type": "N", "subcondition": null, "parent": 296}}, {"model": "template.logicnode", "pk": 293, "fields": {"state_transition": 62, "node_type": "S", "subcondition": 23, "parent": 292}}, {"model": "template.logicnode", "pk": 294, "fields": {"state_transition": 62, "node_type": "S", "subcondition": 13, "parent": 296}}, {"model": "template.logicnode", "pk": 295, "fields": {"state_transition": 62, "node_type": "S", "subcondition": 17, "parent": 296}}, {"model": "template.logicnode", "pk": 296, "fields": {"state_transition": 62, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 297, "fields": {"state_transition": 63, "node_type": "N", "subcondition": null, "parent": 301}}, {"model": "template.logicnode", "pk": 298, "fields": {"state_transition": 63, "node_type": "S", "subcondition": 23, "parent": 297}}, {"model": "template.logicnode", "pk": 299, "fields": {"state_transition": 63, "node_type": "S", "subcondition": 13, "parent": 301}}, {"model": "template.logicnode", "pk": 300, "fields": {"state_transition": 63, "node_type": "S", "subcondition": 25, "parent": 301}}, {"model": "template.logicnode", "pk": 301, "fields": {"state_transition": 63, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 302, "fields": {"state_transition": 64, "node_type": "N", "subcondition": null, "parent": 305}}, {"model": "template.logicnode", "pk": 303, "fields": {"state_transition": 64, "node_type": "S", "subcondition": 23, "parent": 302}}, {"model": "template.logicnode", "pk": 304, "fields": {"state_transition": 64, "node_type": "S", "subcondition": 13, "parent": 305}}, {"model": "template.logicnode", "pk": 305, "fields": {"state_transition": 64, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 306, "fields": {"state_transition": 65, "node_type": "N", "subcondition": null, "parent": 310}}, {"model": "template.logicnode", "pk": 307, "fields": {"state_transition": 65, "node_type": "S", "subcondition": 23, "parent": 306}}, {"model": "template.logicnode", "pk": 308, "fields": {"state_transition": 65, "node_type": "S", "subcondition": 17, "parent": 310}}, {"model": "template.logicnode", "pk": 309, "fields": {"state_transition": 65, "node_type": "S", "subcondition": 25, "parent": 310}}, {"model": "template.logicnode", "pk": 310, "fields": {"state_transition": 65, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 311, "fields": {"state_transition": 66, "node_type": "N", "subcondition": null, "parent": 314}}, {"model": "template.logicnode", "pk": 312, "fields": {"state_transition": 66, "node_type": "S", "subcondition": 23, "parent": 311}}, {"model": "template.logicnode", "pk": 313, "fields": {"state_transition": 66, "node_type": "S", "subcondition": 17, "parent": 314}}, {"model": "template.logicnode", "pk": 314, "fields": {"state_transition": 66, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 315, "fields": {"state_transition": 67, "node_type": "N", "subcondition": null, "parent": 318}}, {"model": "template.logicnode", "pk": 316, "fields": {"state_transition": 67, "node_type": "S", "subcondition": 23, "parent": 315}}, {"model": "template.logicnode", "pk": 317, "fields": {"state_transition": 67, "node_type": "S", "subcondition": 25, "parent": 318}}, {"model": "template.logicnode", "pk": 318, "fields": {"state_transition": 67, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 319, "fields": {"state_transition": 68, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 320, "fields": {"state_transition": 68, "node_type": "S", "subcondition": 23, "parent": 319}}, {"model": "template.logicnode", "pk": 321, "fields": {"state_transition": 69, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 322, "fields": {"state_transition": 70, "node_type": "N", "subcondition": null, "parent": 328}}, {"model": "template.logicnode", "pk": 323, "fields": {"state_transition": 70, "node_type": "S", "subcondition": 23, "parent": 322}}, {"model": "template.logicnode", "pk": 324, "fields": {"state_transition": 70, "node_type": "S", "subcondition": 11, "parent": 328}}, {"model": "template.logicnode", "pk": 325, "fields": {"state_transition": 70, "node_type": "S", "subcondition": 13, "parent": 328}}, {"model": "template.logicnode", "pk": 326, "fields": {"state_transition": 70, "node_type": "S", "subcondition": 17, "parent": 328}}, {"model": "template.logicnode", "pk": 327, "fields": {"state_transition": 70, "node_type": "S", "subcondition": 25, "parent": 328}}, {"model": "template.logicnode", "pk": 328, "fields": {"state_transition": 70, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 329, "fields": {"state_transition": 71, "node_type": "N", "subcondition": null, "parent": 334}}, {"model": "template.logicnode", "pk": 330, "fields": {"state_transition": 71, "node_type": "S", "subcondition": 23, "parent": 329}}, {"model": "template.logicnode", "pk": 331, "fields": {"state_transition": 71, "node_type": "S", "subcondition": 11, "parent": 334}}, {"model": "template.logicnode", "pk": 332, "fields": {"state_transition": 71, "node_type": "S", "subcondition": 13, "parent": 334}}, {"model": "template.logicnode", "pk": 333, "fields": {"state_transition": 71, "node_type": "S", "subcondition": 17, "parent": 334}}, {"model": "template.logicnode", "pk": 334, "fields": {"state_transition": 71, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 335, "fields": {"state_transition": 72, "node_type": "N", "subcondition": null, "parent": 340}}, {"model": "template.logicnode", "pk": 336, "fields": {"state_transition": 72, "node_type": "S", "subcondition": 23, "parent": 335}}, {"model": "template.logicnode", "pk": 337, "fields": {"state_transition": 72, "node_type": "S", "subcondition": 11, "parent": 340}}, {"model": "template.logicnode", "pk": 338, "fields": {"state_transition": 72, "node_type": "S", "subcondition": 13, "parent": 340}}, {"model": "template.logicnode", "pk": 339, "fields": {"state_transition": 72, "node_type": "S", "subcondition": 25, "parent": 340}}, {"model": "template.logicnode", "pk": 340, "fields": {"state_transition": 72, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 341, "fields": {"state_transition": 73, "node_type": "N", "subcondition": null, "parent": 345}}, {"model": "template.logicnode", "pk": 342, "fields": {"state_transition": 73, "node_type": "S", "subcondition": 23, "parent": 341}}, {"model": "template.logicnode", "pk": 343, "fields": {"state_transition": 73, "node_type": "S", "subcondition": 11, "parent": 345}}, {"model": "template.logicnode", "pk": 344, "fields": {"state_transition": 73, "node_type": "S", "subcondition": 13, "parent": 345}}, {"model": "template.logicnode", "pk": 345, "fields": {"state_transition": 73, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 346, "fields": {"state_transition": 74, "node_type": "N", "subcondition": null, "parent": 351}}, {"model": "template.logicnode", "pk": 347, "fields": {"state_transition": 74, "node_type": "S", "subcondition": 23, "parent": 346}}, {"model": "template.logicnode", "pk": 348, "fields": {"state_transition": 74, "node_type": "S", "subcondition": 11, "parent": 351}}, {"model": "template.logicnode", "pk": 349, "fields": {"state_transition": 74, "node_type": "S", "subcondition": 17, "parent": 351}}, {"model": "template.logicnode", "pk": 350, "fields": {"state_transition": 74, "node_type": "S", "subcondition": 25, "parent": 351}}, {"model": "template.logicnode", "pk": 351, "fields": {"state_transition": 74, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 352, "fields": {"state_transition": 75, "node_type": "N", "subcondition": null, "parent": 356}}, {"model": "template.logicnode", "pk": 353, "fields": {"state_transition": 75, "node_type": "S", "subcondition": 23, "parent": 352}}, {"model": "template.logicnode", "pk": 354, "fields": {"state_transition": 75, "node_type": "S", "subcondition": 11, "parent": 356}}, {"model": "template.logicnode", "pk": 355, "fields": {"state_transition": 75, "node_type": "S", "subcondition": 17, "parent": 356}}, {"model": "template.logicnode", "pk": 356, "fields": {"state_transition": 75, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 357, "fields": {"state_transition": 76, "node_type": "N", "subcondition": null, "parent": 361}}, {"model": "template.logicnode", "pk": 358, "fields": {"state_transition": 76, "node_type": "S", "subcondition": 23, "parent": 357}}, {"model": "template.logicnode", "pk": 359, "fields": {"state_transition": 76, "node_type": "S", "subcondition": 11, "parent": 361}}, {"model": "template.logicnode", "pk": 360, "fields": {"state_transition": 76, "node_type": "S", "subcondition": 25, "parent": 361}}, {"model": "template.logicnode", "pk": 361, "fields": {"state_transition": 76, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 362, "fields": {"state_transition": 77, "node_type": "N", "subcondition": null, "parent": 365}}, {"model": "template.logicnode", "pk": 363, "fields": {"state_transition": 77, "node_type": "S", "subcondition": 23, "parent": 362}}, {"model": "template.logicnode", "pk": 364, "fields": {"state_transition": 77, "node_type": "S", "subcondition": 11, "parent": 365}}, {"model": "template.logicnode", "pk": 365, "fields": {"state_transition": 77, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 366, "fields": {"state_transition": 78, "node_type": "N", "subcondition": null, "parent": 371}}, {"model": "template.logicnode", "pk": 367, "fields": {"state_transition": 78, "node_type": "S", "subcondition": 23, "parent": 366}}, {"model": "template.logicnode", "pk": 368, "fields": {"state_transition": 78, "node_type": "S", "subcondition": 13, "parent": 371}}, {"model": "template.logicnode", "pk": 369, "fields": {"state_transition": 78, "node_type": "S", "subcondition": 17, "parent": 371}}, {"model": "template.logicnode", "pk": 370, "fields": {"state_transition": 78, "node_type": "S", "subcondition": 25, "parent": 371}}, {"model": "template.logicnode", "pk": 371, "fields": {"state_transition": 78, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 372, "fields": {"state_transition": 79, "node_type": "N", "subcondition": null, "parent": 376}}, {"model": "template.logicnode", "pk": 373, "fields": {"state_transition": 79, "node_type": "S", "subcondition": 23, "parent": 372}}, {"model": "template.logicnode", "pk": 374, "fields": {"state_transition": 79, "node_type": "S", "subcondition": 13, "parent": 376}}, {"model": "template.logicnode", "pk": 375, "fields": {"state_transition": 79, "node_type": "S", "subcondition": 17, "parent": 376}}, {"model": "template.logicnode", "pk": 376, "fields": {"state_transition": 79, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 377, "fields": {"state_transition": 80, "node_type": "N", "subcondition": null, "parent": 381}}, {"model": "template.logicnode", "pk": 378, "fields": {"state_transition": 80, "node_type": "S", "subcondition": 23, "parent": 377}}, {"model": "template.logicnode", "pk": 379, "fields": {"state_transition": 80, "node_type": "S", "subcondition": 13, "parent": 381}}, {"model": "template.logicnode", "pk": 380, "fields": {"state_transition": 80, "node_type": "S", "subcondition": 25, "parent": 381}}, {"model": "template.logicnode", "pk": 381, "fields": {"state_transition": 80, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 382, "fields": {"state_transition": 81, "node_type": "N", "subcondition": null, "parent": 385}}, {"model": "template.logicnode", "pk": 383, "fields": {"state_transition": 81, "node_type": "S", "subcondition": 23, "parent": 382}}, {"model": "template.logicnode", "pk": 384, "fields": {"state_transition": 81, "node_type": "S", "subcondition": 13, "parent": 385}}, {"model": "template.logicnode", "pk": 385, "fields": {"state_transition": 81, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 386, "fields": {"state_transition": 82, "node_type": "N", "subcondition": null, "parent": 390}}, {"model": "template.logicnode", "pk": 387, "fields": {"state_transition": 82, "node_type": "S", "subcondition": 23, "parent": 386}}, {"model": "template.logicnode", "pk": 388, "fields": {"state_transition": 82, "node_type": "S", "subcondition": 17, "parent": 390}}, {"model": "template.logicnode", "pk": 389, "fields": {"state_transition": 82, "node_type": "S", "subcondition": 25, "parent": 390}}, {"model": "template.logicnode", "pk": 390, "fields": {"state_transition": 82, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 391, "fields": {"state_transition": 83, "node_type": "N", "subcondition": null, "parent": 394}}, {"model": "template.logicnode", "pk": 392, "fields": {"state_transition": 83, "node_type": "S", "subcondition": 23, "parent": 391}}, {"model": "template.logicnode", "pk": 393, "fields": {"state_transition": 83, "node_type": "S", "subcondition": 17, "parent": 394}}, {"model": "template.logicnode", "pk": 394, "fields": {"state_transition": 83, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 395, "fields": {"state_transition": 84, "node_type": "N", "subcondition": null, "parent": 398}}, {"model": "template.logicnode", "pk": 396, "fields": {"state_transition": 84, "node_type": "S", "subcondition": 23, "parent": 395}}, {"model": "template.logicnode", "pk": 397, "fields": {"state_transition": 84, "node_type": "S", "subcondition": 25, "parent": 398}}, {"model": "template.logicnode", "pk": 398, "fields": {"state_transition": 84, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 399, "fields": {"state_transition": 85, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 400, "fields": {"state_transition": 85, "node_type": "S", "subcondition": 23, "parent": 399}}, {"model": "template.logicnode", "pk": 401, "fields": {"state_transition": 86, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 402, "fields": {"state_transition": 87, "node_type": "N", "subcondition": null, "parent": 408}}, {"model": "template.logicnode", "pk": 403, "fields": {"state_transition": 87, "node_type": "S", "subcondition": 23, "parent": 402}}, {"model": "template.logicnode", "pk": 404, "fields": {"state_transition": 87, "node_type": "S", "subcondition": 11, "parent": 408}}, {"model": "template.logicnode", "pk": 405, "fields": {"state_transition": 87, "node_type": "S", "subcondition": 13, "parent": 408}}, {"model": "template.logicnode", "pk": 406, "fields": {"state_transition": 87, "node_type": "S", "subcondition": 17, "parent": 408}}, {"model": "template.logicnode", "pk": 407, "fields": {"state_transition": 87, "node_type": "S", "subcondition": 25, "parent": 408}}, {"model": "template.logicnode", "pk": 408, "fields": {"state_transition": 87, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 409, "fields": {"state_transition": 88, "node_type": "N", "subcondition": null, "parent": 414}}, {"model": "template.logicnode", "pk": 410, "fields": {"state_transition": 88, "node_type": "S", "subcondition": 23, "parent": 409}}, {"model": "template.logicnode", "pk": 411, "fields": {"state_transition": 88, "node_type": "S", "subcondition": 11, "parent": 414}}, {"model": "template.logicnode", "pk": 412, "fields": {"state_transition": 88, "node_type": "S", "subcondition": 13, "parent": 414}}, {"model": "template.logicnode", "pk": 413, "fields": {"state_transition": 88, "node_type": "S", "subcondition": 17, "parent": 414}}, {"model": "template.logicnode", "pk": 414, "fields": {"state_transition": 88, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 415, "fields": {"state_transition": 89, "node_type": "N", "subcondition": null, "parent": 420}}, {"model": "template.logicnode", "pk": 416, "fields": {"state_transition": 89, "node_type": "S", "subcondition": 23, "parent": 415}}, {"model": "template.logicnode", "pk": 417, "fields": {"state_transition": 89, "node_type": "S", "subcondition": 11, "parent": 420}}, {"model": "template.logicnode", "pk": 418, "fields": {"state_transition": 89, "node_type": "S", "subcondition": 13, "parent": 420}}, {"model": "template.logicnode", "pk": 419, "fields": {"state_transition": 89, "node_type": "S", "subcondition": 25, "parent": 420}}, {"model": "template.logicnode", "pk": 420, "fields": {"state_transition": 89, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 421, "fields": {"state_transition": 90, "node_type": "N", "subcondition": null, "parent": 425}}, {"model": "template.logicnode", "pk": 422, "fields": {"state_transition": 90, "node_type": "S", "subcondition": 23, "parent": 421}}, {"model": "template.logicnode", "pk": 423, "fields": {"state_transition": 90, "node_type": "S", "subcondition": 11, "parent": 425}}, {"model": "template.logicnode", "pk": 424, "fields": {"state_transition": 90, "node_type": "S", "subcondition": 13, "parent": 425}}, {"model": "template.logicnode", "pk": 425, "fields": {"state_transition": 90, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 426, "fields": {"state_transition": 91, "node_type": "N", "subcondition": null, "parent": 431}}, {"model": "template.logicnode", "pk": 427, "fields": {"state_transition": 91, "node_type": "S", "subcondition": 23, "parent": 426}}, {"model": "template.logicnode", "pk": 428, "fields": {"state_transition": 91, "node_type": "S", "subcondition": 11, "parent": 431}}, {"model": "template.logicnode", "pk": 429, "fields": {"state_transition": 91, "node_type": "S", "subcondition": 17, "parent": 431}}, {"model": "template.logicnode", "pk": 430, "fields": {"state_transition": 91, "node_type": "S", "subcondition": 25, "parent": 431}}, {"model": "template.logicnode", "pk": 431, "fields": {"state_transition": 91, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 432, "fields": {"state_transition": 92, "node_type": "N", "subcondition": null, "parent": 436}}, {"model": "template.logicnode", "pk": 433, "fields": {"state_transition": 92, "node_type": "S", "subcondition": 23, "parent": 432}}, {"model": "template.logicnode", "pk": 434, "fields": {"state_transition": 92, "node_type": "S", "subcondition": 11, "parent": 436}}, {"model": "template.logicnode", "pk": 435, "fields": {"state_transition": 92, "node_type": "S", "subcondition": 17, "parent": 436}}, {"model": "template.logicnode", "pk": 436, "fields": {"state_transition": 92, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 437, "fields": {"state_transition": 93, "node_type": "N", "subcondition": null, "parent": 441}}, {"model": "template.logicnode", "pk": 438, "fields": {"state_transition": 93, "node_type": "S", "subcondition": 23, "parent": 437}}, {"model": "template.logicnode", "pk": 439, "fields": {"state_transition": 93, "node_type": "S", "subcondition": 11, "parent": 441}}, {"model": "template.logicnode", "pk": 440, "fields": {"state_transition": 93, "node_type": "S", "subcondition": 25, "parent": 441}}, {"model": "template.logicnode", "pk": 441, "fields": {"state_transition": 93, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 442, "fields": {"state_transition": 94, "node_type": "N", "subcondition": null, "parent": 445}}, {"model": "template.logicnode", "pk": 443, "fields": {"state_transition": 94, "node_type": "S", "subcondition": 23, "parent": 442}}, {"model": "template.logicnode", "pk": 444, "fields": {"state_transition": 94, "node_type": "S", "subcondition": 11, "parent": 445}}, {"model": "template.logicnode", "pk": 445, "fields": {"state_transition": 94, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 446, "fields": {"state_transition": 95, "node_type": "N", "subcondition": null, "parent": 451}}, {"model": "template.logicnode", "pk": 447, "fields": {"state_transition": 95, "node_type": "S", "subcondition": 23, "parent": 446}}, {"model": "template.logicnode", "pk": 448, "fields": {"state_transition": 95, "node_type": "S", "subcondition": 13, "parent": 451}}, {"model": "template.logicnode", "pk": 449, "fields": {"state_transition": 95, "node_type": "S", "subcondition": 17, "parent": 451}}, {"model": "template.logicnode", "pk": 450, "fields": {"state_transition": 95, "node_type": "S", "subcondition": 25, "parent": 451}}, {"model": "template.logicnode", "pk": 451, "fields": {"state_transition": 95, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 452, "fields": {"state_transition": 96, "node_type": "N", "subcondition": null, "parent": 456}}, {"model": "template.logicnode", "pk": 453, "fields": {"state_transition": 96, "node_type": "S", "subcondition": 23, "parent": 452}}, {"model": "template.logicnode", "pk": 454, "fields": {"state_transition": 96, "node_type": "S", "subcondition": 13, "parent": 456}}, {"model": "template.logicnode", "pk": 455, "fields": {"state_transition": 96, "node_type": "S", "subcondition": 17, "parent": 456}}, {"model": "template.logicnode", "pk": 456, "fields": {"state_transition": 96, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 457, "fields": {"state_transition": 97, "node_type": "N", "subcondition": null, "parent": 461}}, {"model": "template.logicnode", "pk": 458, "fields": {"state_transition": 97, "node_type": "S", "subcondition": 23, "parent": 457}}, {"model": "template.logicnode", "pk": 459, "fields": {"state_transition": 97, "node_type": "S", "subcondition": 13, "parent": 461}}, {"model": "template.logicnode", "pk": 460, "fields": {"state_transition": 97, "node_type": "S", "subcondition": 25, "parent": 461}}, {"model": "template.logicnode", "pk": 461, "fields": {"state_transition": 97, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 462, "fields": {"state_transition": 98, "node_type": "N", "subcondition": null, "parent": 465}}, {"model": "template.logicnode", "pk": 463, "fields": {"state_transition": 98, "node_type": "S", "subcondition": 23, "parent": 462}}, {"model": "template.logicnode", "pk": 464, "fields": {"state_transition": 98, "node_type": "S", "subcondition": 13, "parent": 465}}, {"model": "template.logicnode", "pk": 465, "fields": {"state_transition": 98, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 466, "fields": {"state_transition": 99, "node_type": "N", "subcondition": null, "parent": 470}}, {"model": "template.logicnode", "pk": 467, "fields": {"state_transition": 99, "node_type": "S", "subcondition": 23, "parent": 466}}, {"model": "template.logicnode", "pk": 468, "fields": {"state_transition": 99, "node_type": "S", "subcondition": 17, "parent": 470}}, {"model": "template.logicnode", "pk": 469, "fields": {"state_transition": 99, "node_type": "S", "subcondition": 25, "parent": 470}}, {"model": "template.logicnode", "pk": 470, "fields": {"state_transition": 99, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 471, "fields": {"state_transition": 100, "node_type": "N", "subcondition": null, "parent": 474}}, {"model": "template.logicnode", "pk": 472, "fields": {"state_transition": 100, "node_type": "S", "subcondition": 23, "parent": 471}}, {"model": "template.logicnode", "pk": 473, "fields": {"state_transition": 100, "node_type": "S", "subcondition": 17, "parent": 474}}, {"model": "template.logicnode", "pk": 474, "fields": {"state_transition": 100, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 475, "fields": {"state_transition": 101, "node_type": "N", "subcondition": null, "parent": 478}}, {"model": "template.logicnode", "pk": 476, "fields": {"state_transition": 101, "node_type": "S", "subcondition": 23, "parent": 475}}, {"model": "template.logicnode", "pk": 477, "fields": {"state_transition": 101, "node_type": "S", "subcondition": 25, "parent": 478}}, {"model": "template.logicnode", "pk": 478, "fields": {"state_transition": 101, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 479, "fields": {"state_transition": 102, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 480, "fields": {"state_transition": 102, "node_type": "S", "subcondition": 23, "parent": 479}}, {"model": "template.logicnode", "pk": 481, "fields": {"state_transition": 103, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 482, "fields": {"state_transition": 104, "node_type": "N", "subcondition": null, "parent": 488}}, {"model": "template.logicnode", "pk": 483, "fields": {"state_transition": 104, "node_type": "S", "subcondition": 23, "parent": 482}}, {"model": "template.logicnode", "pk": 484, "fields": {"state_transition": 104, "node_type": "S", "subcondition": 11, "parent": 488}}, {"model": "template.logicnode", "pk": 485, "fields": {"state_transition": 104, "node_type": "S", "subcondition": 13, "parent": 488}}, {"model": "template.logicnode", "pk": 486, "fields": {"state_transition": 104, "node_type": "S", "subcondition": 17, "parent": 488}}, {"model": "template.logicnode", "pk": 487, "fields": {"state_transition": 104, "node_type": "S", "subcondition": 25, "parent": 488}}, {"model": "template.logicnode", "pk": 488, "fields": {"state_transition": 104, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 489, "fields": {"state_transition": 105, "node_type": "N", "subcondition": null, "parent": 494}}, {"model": "template.logicnode", "pk": 490, "fields": {"state_transition": 105, "node_type": "S", "subcondition": 23, "parent": 489}}, {"model": "template.logicnode", "pk": 491, "fields": {"state_transition": 105, "node_type": "S", "subcondition": 11, "parent": 494}}, {"model": "template.logicnode", "pk": 492, "fields": {"state_transition": 105, "node_type": "S", "subcondition": 13, "parent": 494}}, {"model": "template.logicnode", "pk": 493, "fields": {"state_transition": 105, "node_type": "S", "subcondition": 17, "parent": 494}}, {"model": "template.logicnode", "pk": 494, "fields": {"state_transition": 105, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 495, "fields": {"state_transition": 106, "node_type": "N", "subcondition": null, "parent": 500}}, {"model": "template.logicnode", "pk": 496, "fields": {"state_transition": 106, "node_type": "S", "subcondition": 23, "parent": 495}}, {"model": "template.logicnode", "pk": 497, "fields": {"state_transition": 106, "node_type": "S", "subcondition": 11, "parent": 500}}, {"model": "template.logicnode", "pk": 498, "fields": {"state_transition": 106, "node_type": "S", "subcondition": 13, "parent": 500}}, {"model": "template.logicnode", "pk": 499, "fields": {"state_transition": 106, "node_type": "S", "subcondition": 25, "parent": 500}}, {"model": "template.logicnode", "pk": 500, "fields": {"state_transition": 106, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 501, "fields": {"state_transition": 107, "node_type": "N", "subcondition": null, "parent": 505}}, {"model": "template.logicnode", "pk": 502, "fields": {"state_transition": 107, "node_type": "S", "subcondition": 23, "parent": 501}}, {"model": "template.logicnode", "pk": 503, "fields": {"state_transition": 107, "node_type": "S", "subcondition": 11, "parent": 505}}, {"model": "template.logicnode", "pk": 504, "fields": {"state_transition": 107, "node_type": "S", "subcondition": 13, "parent": 505}}, {"model": "template.logicnode", "pk": 505, "fields": {"state_transition": 107, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 506, "fields": {"state_transition": 108, "node_type": "N", "subcondition": null, "parent": 511}}, {"model": "template.logicnode", "pk": 507, "fields": {"state_transition": 108, "node_type": "S", "subcondition": 23, "parent": 506}}, {"model": "template.logicnode", "pk": 508, "fields": {"state_transition": 108, "node_type": "S", "subcondition": 11, "parent": 511}}, {"model": "template.logicnode", "pk": 509, "fields": {"state_transition": 108, "node_type": "S", "subcondition": 17, "parent": 511}}, {"model": "template.logicnode", "pk": 510, "fields": {"state_transition": 108, "node_type": "S", "subcondition": 25, "parent": 511}}, {"model": "template.logicnode", "pk": 511, "fields": {"state_transition": 108, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 512, "fields": {"state_transition": 109, "node_type": "N", "subcondition": null, "parent": 516}}, {"model": "template.logicnode", "pk": 513, "fields": {"state_transition": 109, "node_type": "S", "subcondition": 23, "parent": 512}}, {"model": "template.logicnode", "pk": 514, "fields": {"state_transition": 109, "node_type": "S", "subcondition": 11, "parent": 516}}, {"model": "template.logicnode", "pk": 515, "fields": {"state_transition": 109, "node_type": "S", "subcondition": 17, "parent": 516}}, {"model": "template.logicnode", "pk": 516, "fields": {"state_transition": 109, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 517, "fields": {"state_transition": 110, "node_type": "N", "subcondition": null, "parent": 521}}, {"model": "template.logicnode", "pk": 518, "fields": {"state_transition": 110, "node_type": "S", "subcondition": 23, "parent": 517}}, {"model": "template.logicnode", "pk": 519, "fields": {"state_transition": 110, "node_type": "S", "subcondition": 11, "parent": 521}}, {"model": "template.logicnode", "pk": 520, "fields": {"state_transition": 110, "node_type": "S", "subcondition": 25, "parent": 521}}, {"model": "template.logicnode", "pk": 521, "fields": {"state_transition": 110, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 522, "fields": {"state_transition": 111, "node_type": "N", "subcondition": null, "parent": 525}}, {"model": "template.logicnode", "pk": 523, "fields": {"state_transition": 111, "node_type": "S", "subcondition": 23, "parent": 522}}, {"model": "template.logicnode", "pk": 524, "fields": {"state_transition": 111, "node_type": "S", "subcondition": 11, "parent": 525}}, {"model": "template.logicnode", "pk": 525, "fields": {"state_transition": 111, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 526, "fields": {"state_transition": 112, "node_type": "N", "subcondition": null, "parent": 531}}, {"model": "template.logicnode", "pk": 527, "fields": {"state_transition": 112, "node_type": "S", "subcondition": 23, "parent": 526}}, {"model": "template.logicnode", "pk": 528, "fields": {"state_transition": 112, "node_type": "S", "subcondition": 13, "parent": 531}}, {"model": "template.logicnode", "pk": 529, "fields": {"state_transition": 112, "node_type": "S", "subcondition": 17, "parent": 531}}, {"model": "template.logicnode", "pk": 530, "fields": {"state_transition": 112, "node_type": "S", "subcondition": 25, "parent": 531}}, {"model": "template.logicnode", "pk": 531, "fields": {"state_transition": 112, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 532, "fields": {"state_transition": 113, "node_type": "N", "subcondition": null, "parent": 536}}, {"model": "template.logicnode", "pk": 533, "fields": {"state_transition": 113, "node_type": "S", "subcondition": 23, "parent": 532}}, {"model": "template.logicnode", "pk": 534, "fields": {"state_transition": 113, "node_type": "S", "subcondition": 13, "parent": 536}}, {"model": "template.logicnode", "pk": 535, "fields": {"state_transition": 113, "node_type": "S", "subcondition": 17, "parent": 536}}, {"model": "template.logicnode", "pk": 536, "fields": {"state_transition": 113, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 537, "fields": {"state_transition": 114, "node_type": "N", "subcondition": null, "parent": 541}}, {"model": "template.logicnode", "pk": 538, "fields": {"state_transition": 114, "node_type": "S", "subcondition": 23, "parent": 537}}, {"model": "template.logicnode", "pk": 539, "fields": {"state_transition": 114, "node_type": "S", "subcondition": 13, "parent": 541}}, {"model": "template.logicnode", "pk": 540, "fields": {"state_transition": 114, "node_type": "S", "subcondition": 25, "parent": 541}}, {"model": "template.logicnode", "pk": 541, "fields": {"state_transition": 114, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 542, "fields": {"state_transition": 115, "node_type": "N", "subcondition": null, "parent": 545}}, {"model": "template.logicnode", "pk": 543, "fields": {"state_transition": 115, "node_type": "S", "subcondition": 23, "parent": 542}}, {"model": "template.logicnode", "pk": 544, "fields": {"state_transition": 115, "node_type": "S", "subcondition": 13, "parent": 545}}, {"model": "template.logicnode", "pk": 545, "fields": {"state_transition": 115, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 546, "fields": {"state_transition": 116, "node_type": "N", "subcondition": null, "parent": 550}}, {"model": "template.logicnode", "pk": 547, "fields": {"state_transition": 116, "node_type": "S", "subcondition": 23, "parent": 546}}, {"model": "template.logicnode", "pk": 548, "fields": {"state_transition": 116, "node_type": "S", "subcondition": 17, "parent": 550}}, {"model": "template.logicnode", "pk": 549, "fields": {"state_transition": 116, "node_type": "S", "subcondition": 25, "parent": 550}}, {"model": "template.logicnode", "pk": 550, "fields": {"state_transition": 116, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 551, "fields": {"state_transition": 117, "node_type": "N", "subcondition": null, "parent": 554}}, {"model": "template.logicnode", "pk": 552, "fields": {"state_transition": 117, "node_type": "S", "subcondition": 23, "parent": 551}}, {"model": "template.logicnode", "pk": 553, "fields": {"state_transition": 117, "node_type": "S", "subcondition": 17, "parent": 554}}, {"model": "template.logicnode", "pk": 554, "fields": {"state_transition": 117, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 555, "fields": {"state_transition": 118, "node_type": "N", "subcondition": null, "parent": 558}}, {"model": "template.logicnode", "pk": 556, "fields": {"state_transition": 118, "node_type": "S", "subcondition": 23, "parent": 555}}, {"model": "template.logicnode", "pk": 557, "fields": {"state_transition": 118, "node_type": "S", "subcondition": 25, "parent": 558}}, {"model": "template.logicnode", "pk": 558, "fields": {"state_transition": 118, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 559, "fields": {"state_transition": 119, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 560, "fields": {"state_transition": 119, "node_type": "S", "subcondition": 23, "parent": 559}}, {"model": "template.logicnode", "pk": 561, "fields": {"state_transition": 120, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 562, "fields": {"state_transition": 121, "node_type": "N", "subcondition": null, "parent": 568}}, {"model": "template.logicnode", "pk": 563, "fields": {"state_transition": 121, "node_type": "S", "subcondition": 23, "parent": 562}}, {"model": "template.logicnode", "pk": 564, "fields": {"state_transition": 121, "node_type": "S", "subcondition": 11, "parent": 568}}, {"model": "template.logicnode", "pk": 565, "fields": {"state_transition": 121, "node_type": "S", "subcondition": 13, "parent": 568}}, {"model": "template.logicnode", "pk": 566, "fields": {"state_transition": 121, "node_type": "S", "subcondition": 17, "parent": 568}}, {"model": "template.logicnode", "pk": 567, "fields": {"state_transition": 121, "node_type": "S", "subcondition": 25, "parent": 568}}, {"model": "template.logicnode", "pk": 568, "fields": {"state_transition": 121, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 569, "fields": {"state_transition": 122, "node_type": "N", "subcondition": null, "parent": 574}}, {"model": "template.logicnode", "pk": 570, "fields": {"state_transition": 122, "node_type": "S", "subcondition": 23, "parent": 569}}, {"model": "template.logicnode", "pk": 571, "fields": {"state_transition": 122, "node_type": "S", "subcondition": 11, "parent": 574}}, {"model": "template.logicnode", "pk": 572, "fields": {"state_transition": 122, "node_type": "S", "subcondition": 13, "parent": 574}}, {"model": "template.logicnode", "pk": 573, "fields": {"state_transition": 122, "node_type": "S", "subcondition": 17, "parent": 574}}, {"model": "template.logicnode", "pk": 574, "fields": {"state_transition": 122, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 575, "fields": {"state_transition": 123, "node_type": "N", "subcondition": null, "parent": 580}}, {"model": "template.logicnode", "pk": 576, "fields": {"state_transition": 123, "node_type": "S", "subcondition": 23, "parent": 575}}, {"model": "template.logicnode", "pk": 577, "fields": {"state_transition": 123, "node_type": "S", "subcondition": 11, "parent": 580}}, {"model": "template.logicnode", "pk": 578, "fields": {"state_transition": 123, "node_type": "S", "subcondition": 13, "parent": 580}}, {"model": "template.logicnode", "pk": 579, "fields": {"state_transition": 123, "node_type": "S", "subcondition": 25, "parent": 580}}, {"model": "template.logicnode", "pk": 580, "fields": {"state_transition": 123, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 581, "fields": {"state_transition": 124, "node_type": "N", "subcondition": null, "parent": 585}}, {"model": "template.logicnode", "pk": 582, "fields": {"state_transition": 124, "node_type": "S", "subcondition": 23, "parent": 581}}, {"model": "template.logicnode", "pk": 583, "fields": {"state_transition": 124, "node_type": "S", "subcondition": 11, "parent": 585}}, {"model": "template.logicnode", "pk": 584, "fields": {"state_transition": 124, "node_type": "S", "subcondition": 13, "parent": 585}}, {"model": "template.logicnode", "pk": 585, "fields": {"state_transition": 124, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 586, "fields": {"state_transition": 125, "node_type": "N", "subcondition": null, "parent": 591}}, {"model": "template.logicnode", "pk": 587, "fields": {"state_transition": 125, "node_type": "S", "subcondition": 23, "parent": 586}}, {"model": "template.logicnode", "pk": 588, "fields": {"state_transition": 125, "node_type": "S", "subcondition": 11, "parent": 591}}, {"model": "template.logicnode", "pk": 589, "fields": {"state_transition": 125, "node_type": "S", "subcondition": 17, "parent": 591}}, {"model": "template.logicnode", "pk": 590, "fields": {"state_transition": 125, "node_type": "S", "subcondition": 25, "parent": 591}}, {"model": "template.logicnode", "pk": 591, "fields": {"state_transition": 125, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 592, "fields": {"state_transition": 126, "node_type": "N", "subcondition": null, "parent": 596}}, {"model": "template.logicnode", "pk": 593, "fields": {"state_transition": 126, "node_type": "S", "subcondition": 23, "parent": 592}}, {"model": "template.logicnode", "pk": 594, "fields": {"state_transition": 126, "node_type": "S", "subcondition": 11, "parent": 596}}, {"model": "template.logicnode", "pk": 595, "fields": {"state_transition": 126, "node_type": "S", "subcondition": 17, "parent": 596}}, {"model": "template.logicnode", "pk": 596, "fields": {"state_transition": 126, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 597, "fields": {"state_transition": 127, "node_type": "N", "subcondition": null, "parent": 601}}, {"model": "template.logicnode", "pk": 598, "fields": {"state_transition": 127, "node_type": "S", "subcondition": 23, "parent": 597}}, {"model": "template.logicnode", "pk": 599, "fields": {"state_transition": 127, "node_type": "S", "subcondition": 11, "parent": 601}}, {"model": "template.logicnode", "pk": 600, "fields": {"state_transition": 127, "node_type": "S", "subcondition": 25, "parent": 601}}, {"model": "template.logicnode", "pk": 601, "fields": {"state_transition": 127, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 602, "fields": {"state_transition": 128, "node_type": "N", "subcondition": null, "parent": 605}}, {"model": "template.logicnode", "pk": 603, "fields": {"state_transition": 128, "node_type": "S", "subcondition": 23, "parent": 602}}, {"model": "template.logicnode", "pk": 604, "fields": {"state_transition": 128, "node_type": "S", "subcondition": 11, "parent": 605}}, {"model": "template.logicnode", "pk": 605, "fields": {"state_transition": 128, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 606, "fields": {"state_transition": 129, "node_type": "N", "subcondition": null, "parent": 611}}, {"model": "template.logicnode", "pk": 607, "fields": {"state_transition": 129, "node_type": "S", "subcondition": 23, "parent": 606}}, {"model": "template.logicnode", "pk": 608, "fields": {"state_transition": 129, "node_type": "S", "subcondition": 13, "parent": 611}}, {"model": "template.logicnode", "pk": 609, "fields": {"state_transition": 129, "node_type": "S", "subcondition": 17, "parent": 611}}, {"model": "template.logicnode", "pk": 610, "fields": {"state_transition": 129, "node_type": "S", "subcondition": 25, "parent": 611}}, {"model": "template.logicnode", "pk": 611, "fields": {"state_transition": 129, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 612, "fields": {"state_transition": 130, "node_type": "N", "subcondition": null, "parent": 616}}, {"model": "template.logicnode", "pk": 613, "fields": {"state_transition": 130, "node_type": "S", "subcondition": 23, "parent": 612}}, {"model": "template.logicnode", "pk": 614, "fields": {"state_transition": 130, "node_type": "S", "subcondition": 13, "parent": 616}}, {"model": "template.logicnode", "pk": 615, "fields": {"state_transition": 130, "node_type": "S", "subcondition": 17, "parent": 616}}, {"model": "template.logicnode", "pk": 616, "fields": {"state_transition": 130, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 617, "fields": {"state_transition": 131, "node_type": "N", "subcondition": null, "parent": 621}}, {"model": "template.logicnode", "pk": 618, "fields": {"state_transition": 131, "node_type": "S", "subcondition": 23, "parent": 617}}, {"model": "template.logicnode", "pk": 619, "fields": {"state_transition": 131, "node_type": "S", "subcondition": 13, "parent": 621}}, {"model": "template.logicnode", "pk": 620, "fields": {"state_transition": 131, "node_type": "S", "subcondition": 25, "parent": 621}}, {"model": "template.logicnode", "pk": 621, "fields": {"state_transition": 131, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 622, "fields": {"state_transition": 132, "node_type": "N", "subcondition": null, "parent": 625}}, {"model": "template.logicnode", "pk": 623, "fields": {"state_transition": 132, "node_type": "S", "subcondition": 23, "parent": 622}}, {"model": "template.logicnode", "pk": 624, "fields": {"state_transition": 132, "node_type": "S", "subcondition": 13, "parent": 625}}, {"model": "template.logicnode", "pk": 625, "fields": {"state_transition": 132, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 626, "fields": {"state_transition": 133, "node_type": "N", "subcondition": null, "parent": 630}}, {"model": "template.logicnode", "pk": 627, "fields": {"state_transition": 133, "node_type": "S", "subcondition": 23, "parent": 626}}, {"model": "template.logicnode", "pk": 628, "fields": {"state_transition": 133, "node_type": "S", "subcondition": 17, "parent": 630}}, {"model": "template.logicnode", "pk": 629, "fields": {"state_transition": 133, "node_type": "S", "subcondition": 25, "parent": 630}}, {"model": "template.logicnode", "pk": 630, "fields": {"state_transition": 133, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 631, "fields": {"state_transition": 134, "node_type": "N", "subcondition": null, "parent": 634}}, {"model": "template.logicnode", "pk": 632, "fields": {"state_transition": 134, "node_type": "S", "subcondition": 23, "parent": 631}}, {"model": "template.logicnode", "pk": 633, "fields": {"state_transition": 134, "node_type": "S", "subcondition": 17, "parent": 634}}, {"model": "template.logicnode", "pk": 634, "fields": {"state_transition": 134, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 635, "fields": {"state_transition": 135, "node_type": "N", "subcondition": null, "parent": 638}}, {"model": "template.logicnode", "pk": 636, "fields": {"state_transition": 135, "node_type": "S", "subcondition": 23, "parent": 635}}, {"model": "template.logicnode", "pk": 637, "fields": {"state_transition": 135, "node_type": "S", "subcondition": 25, "parent": 638}}, {"model": "template.logicnode", "pk": 638, "fields": {"state_transition": 135, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 639, "fields": {"state_transition": 136, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 640, "fields": {"state_transition": 136, "node_type": "S", "subcondition": 23, "parent": 639}}, {"model": "template.logicnode", "pk": 641, "fields": {"state_transition": 137, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 642, "fields": {"state_transition": 138, "node_type": "N", "subcondition": null, "parent": 648}}, {"model": "template.logicnode", "pk": 643, "fields": {"state_transition": 138, "node_type": "S", "subcondition": 23, "parent": 642}}, {"model": "template.logicnode", "pk": 644, "fields": {"state_transition": 138, "node_type": "S", "subcondition": 11, "parent": 648}}, {"model": "template.logicnode", "pk": 645, "fields": {"state_transition": 138, "node_type": "S", "subcondition": 13, "parent": 648}}, {"model": "template.logicnode", "pk": 646, "fields": {"state_transition": 138, "node_type": "S", "subcondition": 17, "parent": 648}}, {"model": "template.logicnode", "pk": 647, "fields": {"state_transition": 138, "node_type": "S", "subcondition": 25, "parent": 648}}, {"model": "template.logicnode", "pk": 648, "fields": {"state_transition": 138, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 649, "fields": {"state_transition": 139, "node_type": "N", "subcondition": null, "parent": 654}}, {"model": "template.logicnode", "pk": 650, "fields": {"state_transition": 139, "node_type": "S", "subcondition": 23, "parent": 649}}, {"model": "template.logicnode", "pk": 651, "fields": {"state_transition": 139, "node_type": "S", "subcondition": 11, "parent": 654}}, {"model": "template.logicnode", "pk": 652, "fields": {"state_transition": 139, "node_type": "S", "subcondition": 13, "parent": 654}}, {"model": "template.logicnode", "pk": 653, "fields": {"state_transition": 139, "node_type": "S", "subcondition": 17, "parent": 654}}, {"model": "template.logicnode", "pk": 654, "fields": {"state_transition": 139, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 655, "fields": {"state_transition": 140, "node_type": "N", "subcondition": null, "parent": 660}}, {"model": "template.logicnode", "pk": 656, "fields": {"state_transition": 140, "node_type": "S", "subcondition": 23, "parent": 655}}, {"model": "template.logicnode", "pk": 657, "fields": {"state_transition": 140, "node_type": "S", "subcondition": 11, "parent": 660}}, {"model": "template.logicnode", "pk": 658, "fields": {"state_transition": 140, "node_type": "S", "subcondition": 13, "parent": 660}}, {"model": "template.logicnode", "pk": 659, "fields": {"state_transition": 140, "node_type": "S", "subcondition": 25, "parent": 660}}, {"model": "template.logicnode", "pk": 660, "fields": {"state_transition": 140, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 661, "fields": {"state_transition": 141, "node_type": "N", "subcondition": null, "parent": 665}}, {"model": "template.logicnode", "pk": 662, "fields": {"state_transition": 141, "node_type": "S", "subcondition": 23, "parent": 661}}, {"model": "template.logicnode", "pk": 663, "fields": {"state_transition": 141, "node_type": "S", "subcondition": 11, "parent": 665}}, {"model": "template.logicnode", "pk": 664, "fields": {"state_transition": 141, "node_type": "S", "subcondition": 13, "parent": 665}}, {"model": "template.logicnode", "pk": 665, "fields": {"state_transition": 141, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 666, "fields": {"state_transition": 142, "node_type": "N", "subcondition": null, "parent": 671}}, {"model": "template.logicnode", "pk": 667, "fields": {"state_transition": 142, "node_type": "S", "subcondition": 23, "parent": 666}}, {"model": "template.logicnode", "pk": 668, "fields": {"state_transition": 142, "node_type": "S", "subcondition": 11, "parent": 671}}, {"model": "template.logicnode", "pk": 669, "fields": {"state_transition": 142, "node_type": "S", "subcondition": 17, "parent": 671}}, {"model": "template.logicnode", "pk": 670, "fields": {"state_transition": 142, "node_type": "S", "subcondition": 25, "parent": 671}}, {"model": "template.logicnode", "pk": 671, "fields": {"state_transition": 142, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 672, "fields": {"state_transition": 143, "node_type": "N", "subcondition": null, "parent": 676}}, {"model": "template.logicnode", "pk": 673, "fields": {"state_transition": 143, "node_type": "S", "subcondition": 23, "parent": 672}}, {"model": "template.logicnode", "pk": 674, "fields": {"state_transition": 143, "node_type": "S", "subcondition": 11, "parent": 676}}, {"model": "template.logicnode", "pk": 675, "fields": {"state_transition": 143, "node_type": "S", "subcondition": 17, "parent": 676}}, {"model": "template.logicnode", "pk": 676, "fields": {"state_transition": 143, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 677, "fields": {"state_transition": 144, "node_type": "N", "subcondition": null, "parent": 681}}, {"model": "template.logicnode", "pk": 678, "fields": {"state_transition": 144, "node_type": "S", "subcondition": 23, "parent": 677}}, {"model": "template.logicnode", "pk": 679, "fields": {"state_transition": 144, "node_type": "S", "subcondition": 11, "parent": 681}}, {"model": "template.logicnode", "pk": 680, "fields": {"state_transition": 144, "node_type": "S", "subcondition": 25, "parent": 681}}, {"model": "template.logicnode", "pk": 681, "fields": {"state_transition": 144, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 682, "fields": {"state_transition": 145, "node_type": "N", "subcondition": null, "parent": 685}}, {"model": "template.logicnode", "pk": 683, "fields": {"state_transition": 145, "node_type": "S", "subcondition": 23, "parent": 682}}, {"model": "template.logicnode", "pk": 684, "fields": {"state_transition": 145, "node_type": "S", "subcondition": 11, "parent": 685}}, {"model": "template.logicnode", "pk": 685, "fields": {"state_transition": 145, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 686, "fields": {"state_transition": 146, "node_type": "N", "subcondition": null, "parent": 691}}, {"model": "template.logicnode", "pk": 687, "fields": {"state_transition": 146, "node_type": "S", "subcondition": 23, "parent": 686}}, {"model": "template.logicnode", "pk": 688, "fields": {"state_transition": 146, "node_type": "S", "subcondition": 13, "parent": 691}}, {"model": "template.logicnode", "pk": 689, "fields": {"state_transition": 146, "node_type": "S", "subcondition": 17, "parent": 691}}, {"model": "template.logicnode", "pk": 690, "fields": {"state_transition": 146, "node_type": "S", "subcondition": 25, "parent": 691}}, {"model": "template.logicnode", "pk": 691, "fields": {"state_transition": 146, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 692, "fields": {"state_transition": 147, "node_type": "N", "subcondition": null, "parent": 696}}, {"model": "template.logicnode", "pk": 693, "fields": {"state_transition": 147, "node_type": "S", "subcondition": 23, "parent": 692}}, {"model": "template.logicnode", "pk": 694, "fields": {"state_transition": 147, "node_type": "S", "subcondition": 13, "parent": 696}}, {"model": "template.logicnode", "pk": 695, "fields": {"state_transition": 147, "node_type": "S", "subcondition": 17, "parent": 696}}, {"model": "template.logicnode", "pk": 696, "fields": {"state_transition": 147, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 697, "fields": {"state_transition": 148, "node_type": "N", "subcondition": null, "parent": 701}}, {"model": "template.logicnode", "pk": 698, "fields": {"state_transition": 148, "node_type": "S", "subcondition": 23, "parent": 697}}, {"model": "template.logicnode", "pk": 699, "fields": {"state_transition": 148, "node_type": "S", "subcondition": 13, "parent": 701}}, {"model": "template.logicnode", "pk": 700, "fields": {"state_transition": 148, "node_type": "S", "subcondition": 25, "parent": 701}}, {"model": "template.logicnode", "pk": 701, "fields": {"state_transition": 148, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 702, "fields": {"state_transition": 149, "node_type": "N", "subcondition": null, "parent": 705}}, {"model": "template.logicnode", "pk": 703, "fields": {"state_transition": 149, "node_type": "S", "subcondition": 23, "parent": 702}}, {"model": "template.logicnode", "pk": 704, "fields": {"state_transition": 149, "node_type": "S", "subcondition": 13, "parent": 705}}, {"model": "template.logicnode", "pk": 705, "fields": {"state_transition": 149, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 706, "fields": {"state_transition": 150, "node_type": "N", "subcondition": null, "parent": 710}}, {"model": "template.logicnode", "pk": 707, "fields": {"state_transition": 150, "node_type": "S", "subcondition": 23, "parent": 706}}, {"model": "template.logicnode", "pk": 708, "fields": {"state_transition": 150, "node_type": "S", "subcondition": 17, "parent": 710}}, {"model": "template.logicnode", "pk": 709, "fields": {"state_transition": 150, "node_type": "S", "subcondition": 25, "parent": 710}}, {"model": "template.logicnode", "pk": 710, "fields": {"state_transition": 150, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 711, "fields": {"state_transition": 151, "node_type": "N", "subcondition": null, "parent": 714}}, {"model": "template.logicnode", "pk": 712, "fields": {"state_transition": 151, "node_type": "S", "subcondition": 23, "parent": 711}}, {"model": "template.logicnode", "pk": 713, "fields": {"state_transition": 151, "node_type": "S", "subcondition": 17, "parent": 714}}, {"model": "template.logicnode", "pk": 714, "fields": {"state_transition": 151, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 715, "fields": {"state_transition": 152, "node_type": "N", "subcondition": null, "parent": 718}}, {"model": "template.logicnode", "pk": 716, "fields": {"state_transition": 152, "node_type": "S", "subcondition": 23, "parent": 715}}, {"model": "template.logicnode", "pk": 717, "fields": {"state_transition": 152, "node_type": "S", "subcondition": 25, "parent": 718}}, {"model": "template.logicnode", "pk": 718, "fields": {"state_transition": 152, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 719, "fields": {"state_transition": 153, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 720, "fields": {"state_transition": 153, "node_type": "S", "subcondition": 23, "parent": 719}}, {"model": "template.logicnode", "pk": 721, "fields": {"state_transition": 154, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 722, "fields": {"state_transition": 155, "node_type": "N", "subcondition": null, "parent": 728}}, {"model": "template.logicnode", "pk": 723, "fields": {"state_transition": 155, "node_type": "S", "subcondition": 23, "parent": 722}}, {"model": "template.logicnode", "pk": 724, "fields": {"state_transition": 155, "node_type": "S", "subcondition": 11, "parent": 728}}, {"model": "template.logicnode", "pk": 725, "fields": {"state_transition": 155, "node_type": "S", "subcondition": 10, "parent": 728}}, {"model": "template.logicnode", "pk": 726, "fields": {"state_transition": 155, "node_type": "S", "subcondition": 13, "parent": 728}}, {"model": "template.logicnode", "pk": 727, "fields": {"state_transition": 155, "node_type": "S", "subcondition": 1, "parent": 728}}, {"model": "template.logicnode", "pk": 728, "fields": {"state_transition": 155, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 729, "fields": {"state_transition": 156, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 730, "fields": {"state_transition": 156, "node_type": "S", "subcondition": 1, "parent": 729}}, {"model": "template.logicnode", "pk": 731, "fields": {"state_transition": 157, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 732, "fields": {"state_transition": 157, "node_type": "S", "subcondition": 1, "parent": 731}}, {"model": "template.logicnode", "pk": 733, "fields": {"state_transition": 158, "node_type": "N", "subcondition": null, "parent": 738}}, {"model": "template.logicnode", "pk": 734, "fields": {"state_transition": 158, "node_type": "S", "subcondition": 23, "parent": 733}}, {"model": "template.logicnode", "pk": 735, "fields": {"state_transition": 158, "node_type": "S", "subcondition": 11, "parent": 738}}, {"model": "template.logicnode", "pk": 736, "fields": {"state_transition": 158, "node_type": "S", "subcondition": 10, "parent": 738}}, {"model": "template.logicnode", "pk": 737, "fields": {"state_transition": 158, "node_type": "S", "subcondition": 13, "parent": 738}}, {"model": "template.logicnode", "pk": 738, "fields": {"state_transition": 158, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 739, "fields": {"state_transition": 159, "node_type": "N", "subcondition": null, "parent": 744}}, {"model": "template.logicnode", "pk": 740, "fields": {"state_transition": 159, "node_type": "S", "subcondition": 23, "parent": 739}}, {"model": "template.logicnode", "pk": 741, "fields": {"state_transition": 159, "node_type": "S", "subcondition": 11, "parent": 744}}, {"model": "template.logicnode", "pk": 742, "fields": {"state_transition": 159, "node_type": "S", "subcondition": 10, "parent": 744}}, {"model": "template.logicnode", "pk": 743, "fields": {"state_transition": 159, "node_type": "S", "subcondition": 1, "parent": 744}}, {"model": "template.logicnode", "pk": 744, "fields": {"state_transition": 159, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 745, "fields": {"state_transition": 160, "node_type": "N", "subcondition": null, "parent": 749}}, {"model": "template.logicnode", "pk": 746, "fields": {"state_transition": 160, "node_type": "S", "subcondition": 23, "parent": 745}}, {"model": "template.logicnode", "pk": 747, "fields": {"state_transition": 160, "node_type": "S", "subcondition": 11, "parent": 749}}, {"model": "template.logicnode", "pk": 748, "fields": {"state_transition": 160, "node_type": "S", "subcondition": 10, "parent": 749}}, {"model": "template.logicnode", "pk": 749, "fields": {"state_transition": 160, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 750, "fields": {"state_transition": 161, "node_type": "N", "subcondition": null, "parent": 755}}, {"model": "template.logicnode", "pk": 751, "fields": {"state_transition": 161, "node_type": "S", "subcondition": 23, "parent": 750}}, {"model": "template.logicnode", "pk": 752, "fields": {"state_transition": 161, "node_type": "S", "subcondition": 11, "parent": 755}}, {"model": "template.logicnode", "pk": 753, "fields": {"state_transition": 161, "node_type": "S", "subcondition": 13, "parent": 755}}, {"model": "template.logicnode", "pk": 754, "fields": {"state_transition": 161, "node_type": "S", "subcondition": 1, "parent": 755}}, {"model": "template.logicnode", "pk": 755, "fields": {"state_transition": 161, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 756, "fields": {"state_transition": 162, "node_type": "N", "subcondition": null, "parent": 760}}, {"model": "template.logicnode", "pk": 757, "fields": {"state_transition": 162, "node_type": "S", "subcondition": 23, "parent": 756}}, {"model": "template.logicnode", "pk": 758, "fields": {"state_transition": 162, "node_type": "S", "subcondition": 11, "parent": 760}}, {"model": "template.logicnode", "pk": 759, "fields": {"state_transition": 162, "node_type": "S", "subcondition": 13, "parent": 760}}, {"model": "template.logicnode", "pk": 760, "fields": {"state_transition": 162, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 761, "fields": {"state_transition": 163, "node_type": "N", "subcondition": null, "parent": 765}}, {"model": "template.logicnode", "pk": 762, "fields": {"state_transition": 163, "node_type": "S", "subcondition": 23, "parent": 761}}, {"model": "template.logicnode", "pk": 763, "fields": {"state_transition": 163, "node_type": "S", "subcondition": 11, "parent": 765}}, {"model": "template.logicnode", "pk": 764, "fields": {"state_transition": 163, "node_type": "S", "subcondition": 1, "parent": 765}}, {"model": "template.logicnode", "pk": 765, "fields": {"state_transition": 163, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 766, "fields": {"state_transition": 164, "node_type": "N", "subcondition": null, "parent": 769}}, {"model": "template.logicnode", "pk": 767, "fields": {"state_transition": 164, "node_type": "S", "subcondition": 23, "parent": 766}}, {"model": "template.logicnode", "pk": 768, "fields": {"state_transition": 164, "node_type": "S", "subcondition": 11, "parent": 769}}, {"model": "template.logicnode", "pk": 769, "fields": {"state_transition": 164, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 770, "fields": {"state_transition": 165, "node_type": "N", "subcondition": null, "parent": 775}}, {"model": "template.logicnode", "pk": 771, "fields": {"state_transition": 165, "node_type": "S", "subcondition": 23, "parent": 770}}, {"model": "template.logicnode", "pk": 772, "fields": {"state_transition": 165, "node_type": "S", "subcondition": 10, "parent": 775}}, {"model": "template.logicnode", "pk": 773, "fields": {"state_transition": 165, "node_type": "S", "subcondition": 13, "parent": 775}}, {"model": "template.logicnode", "pk": 774, "fields": {"state_transition": 165, "node_type": "S", "subcondition": 1, "parent": 775}}, {"model": "template.logicnode", "pk": 775, "fields": {"state_transition": 165, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 776, "fields": {"state_transition": 166, "node_type": "N", "subcondition": null, "parent": 780}}, {"model": "template.logicnode", "pk": 777, "fields": {"state_transition": 166, "node_type": "S", "subcondition": 23, "parent": 776}}, {"model": "template.logicnode", "pk": 778, "fields": {"state_transition": 166, "node_type": "S", "subcondition": 10, "parent": 780}}, {"model": "template.logicnode", "pk": 779, "fields": {"state_transition": 166, "node_type": "S", "subcondition": 13, "parent": 780}}, {"model": "template.logicnode", "pk": 780, "fields": {"state_transition": 166, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 781, "fields": {"state_transition": 167, "node_type": "N", "subcondition": null, "parent": 785}}, {"model": "template.logicnode", "pk": 782, "fields": {"state_transition": 167, "node_type": "S", "subcondition": 23, "parent": 781}}, {"model": "template.logicnode", "pk": 783, "fields": {"state_transition": 167, "node_type": "S", "subcondition": 10, "parent": 785}}, {"model": "template.logicnode", "pk": 784, "fields": {"state_transition": 167, "node_type": "S", "subcondition": 1, "parent": 785}}, {"model": "template.logicnode", "pk": 785, "fields": {"state_transition": 167, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 786, "fields": {"state_transition": 168, "node_type": "N", "subcondition": null, "parent": 789}}, {"model": "template.logicnode", "pk": 787, "fields": {"state_transition": 168, "node_type": "S", "subcondition": 23, "parent": 786}}, {"model": "template.logicnode", "pk": 788, "fields": {"state_transition": 168, "node_type": "S", "subcondition": 10, "parent": 789}}, {"model": "template.logicnode", "pk": 789, "fields": {"state_transition": 168, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 790, "fields": {"state_transition": 169, "node_type": "N", "subcondition": null, "parent": 794}}, {"model": "template.logicnode", "pk": 791, "fields": {"state_transition": 169, "node_type": "S", "subcondition": 23, "parent": 790}}, {"model": "template.logicnode", "pk": 792, "fields": {"state_transition": 169, "node_type": "S", "subcondition": 13, "parent": 794}}, {"model": "template.logicnode", "pk": 793, "fields": {"state_transition": 169, "node_type": "S", "subcondition": 1, "parent": 794}}, {"model": "template.logicnode", "pk": 794, "fields": {"state_transition": 169, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 795, "fields": {"state_transition": 170, "node_type": "N", "subcondition": null, "parent": 798}}, {"model": "template.logicnode", "pk": 796, "fields": {"state_transition": 170, "node_type": "S", "subcondition": 23, "parent": 795}}, {"model": "template.logicnode", "pk": 797, "fields": {"state_transition": 170, "node_type": "S", "subcondition": 13, "parent": 798}}, {"model": "template.logicnode", "pk": 798, "fields": {"state_transition": 170, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 799, "fields": {"state_transition": 171, "node_type": "N", "subcondition": null, "parent": 802}}, {"model": "template.logicnode", "pk": 800, "fields": {"state_transition": 171, "node_type": "S", "subcondition": 23, "parent": 799}}, {"model": "template.logicnode", "pk": 801, "fields": {"state_transition": 171, "node_type": "S", "subcondition": 1, "parent": 802}}, {"model": "template.logicnode", "pk": 802, "fields": {"state_transition": 171, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 803, "fields": {"state_transition": 172, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 804, "fields": {"state_transition": 172, "node_type": "S", "subcondition": 23, "parent": 803}}, {"model": "template.logicnode", "pk": 805, "fields": {"state_transition": 173, "node_type": "S", "subcondition": 23, "parent": 808}}, {"model": "template.logicnode", "pk": 806, "fields": {"state_transition": 173, "node_type": "S", "subcondition": 10, "parent": 808}}, {"model": "template.logicnode", "pk": 807, "fields": {"state_transition": 173, "node_type": "S", "subcondition": 1, "parent": 808}}, {"model": "template.logicnode", "pk": 808, "fields": {"state_transition": 173, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 809, "fields": {"state_transition": 174, "node_type": "S", "subcondition": 23, "parent": 811}}, {"model": "template.logicnode", "pk": 810, "fields": {"state_transition": 174, "node_type": "S", "subcondition": 10, "parent": 811}}, {"model": "template.logicnode", "pk": 811, "fields": {"state_transition": 174, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 812, "fields": {"state_transition": 175, "node_type": "S", "subcondition": 23, "parent": 814}}, {"model": "template.logicnode", "pk": 813, "fields": {"state_transition": 175, "node_type": "S", "subcondition": 1, "parent": 814}}, {"model": "template.logicnode", "pk": 814, "fields": {"state_transition": 175, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 815, "fields": {"state_transition": 176, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 816, "fields": {"state_transition": 177, "node_type": "N", "subcondition": null, "parent": 822}}, {"model": "template.logicnode", "pk": 817, "fields": {"state_transition": 177, "node_type": "S", "subcondition": 23, "parent": 816}}, {"model": "template.logicnode", "pk": 818, "fields": {"state_transition": 177, "node_type": "S", "subcondition": 11, "parent": 822}}, {"model": "template.logicnode", "pk": 819, "fields": {"state_transition": 177, "node_type": "S", "subcondition": 10, "parent": 822}}, {"model": "template.logicnode", "pk": 820, "fields": {"state_transition": 177, "node_type": "S", "subcondition": 13, "parent": 822}}, {"model": "template.logicnode", "pk": 821, "fields": {"state_transition": 177, "node_type": "S", "subcondition": 1, "parent": 822}}, {"model": "template.logicnode", "pk": 822, "fields": {"state_transition": 177, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 823, "fields": {"state_transition": 178, "node_type": "N", "subcondition": null, "parent": 828}}, {"model": "template.logicnode", "pk": 824, "fields": {"state_transition": 178, "node_type": "S", "subcondition": 23, "parent": 823}}, {"model": "template.logicnode", "pk": 825, "fields": {"state_transition": 178, "node_type": "S", "subcondition": 11, "parent": 828}}, {"model": "template.logicnode", "pk": 826, "fields": {"state_transition": 178, "node_type": "S", "subcondition": 10, "parent": 828}}, {"model": "template.logicnode", "pk": 827, "fields": {"state_transition": 178, "node_type": "S", "subcondition": 13, "parent": 828}}, {"model": "template.logicnode", "pk": 828, "fields": {"state_transition": 178, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 829, "fields": {"state_transition": 179, "node_type": "N", "subcondition": null, "parent": 834}}, {"model": "template.logicnode", "pk": 830, "fields": {"state_transition": 179, "node_type": "S", "subcondition": 23, "parent": 829}}, {"model": "template.logicnode", "pk": 831, "fields": {"state_transition": 179, "node_type": "S", "subcondition": 11, "parent": 834}}, {"model": "template.logicnode", "pk": 832, "fields": {"state_transition": 179, "node_type": "S", "subcondition": 10, "parent": 834}}, {"model": "template.logicnode", "pk": 833, "fields": {"state_transition": 179, "node_type": "S", "subcondition": 1, "parent": 834}}, {"model": "template.logicnode", "pk": 834, "fields": {"state_transition": 179, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 835, "fields": {"state_transition": 180, "node_type": "N", "subcondition": null, "parent": 839}}, {"model": "template.logicnode", "pk": 836, "fields": {"state_transition": 180, "node_type": "S", "subcondition": 23, "parent": 835}}, {"model": "template.logicnode", "pk": 837, "fields": {"state_transition": 180, "node_type": "S", "subcondition": 11, "parent": 839}}, {"model": "template.logicnode", "pk": 838, "fields": {"state_transition": 180, "node_type": "S", "subcondition": 10, "parent": 839}}, {"model": "template.logicnode", "pk": 839, "fields": {"state_transition": 180, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 840, "fields": {"state_transition": 181, "node_type": "N", "subcondition": null, "parent": 845}}, {"model": "template.logicnode", "pk": 841, "fields": {"state_transition": 181, "node_type": "S", "subcondition": 23, "parent": 840}}, {"model": "template.logicnode", "pk": 842, "fields": {"state_transition": 181, "node_type": "S", "subcondition": 11, "parent": 845}}, {"model": "template.logicnode", "pk": 843, "fields": {"state_transition": 181, "node_type": "S", "subcondition": 13, "parent": 845}}, {"model": "template.logicnode", "pk": 844, "fields": {"state_transition": 181, "node_type": "S", "subcondition": 1, "parent": 845}}, {"model": "template.logicnode", "pk": 845, "fields": {"state_transition": 181, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 846, "fields": {"state_transition": 182, "node_type": "N", "subcondition": null, "parent": 850}}, {"model": "template.logicnode", "pk": 847, "fields": {"state_transition": 182, "node_type": "S", "subcondition": 23, "parent": 846}}, {"model": "template.logicnode", "pk": 848, "fields": {"state_transition": 182, "node_type": "S", "subcondition": 11, "parent": 850}}, {"model": "template.logicnode", "pk": 849, "fields": {"state_transition": 182, "node_type": "S", "subcondition": 13, "parent": 850}}, {"model": "template.logicnode", "pk": 850, "fields": {"state_transition": 182, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 851, "fields": {"state_transition": 183, "node_type": "N", "subcondition": null, "parent": 855}}, {"model": "template.logicnode", "pk": 852, "fields": {"state_transition": 183, "node_type": "S", "subcondition": 23, "parent": 851}}, {"model": "template.logicnode", "pk": 853, "fields": {"state_transition": 183, "node_type": "S", "subcondition": 11, "parent": 855}}, {"model": "template.logicnode", "pk": 854, "fields": {"state_transition": 183, "node_type": "S", "subcondition": 1, "parent": 855}}, {"model": "template.logicnode", "pk": 855, "fields": {"state_transition": 183, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 856, "fields": {"state_transition": 184, "node_type": "N", "subcondition": null, "parent": 859}}, {"model": "template.logicnode", "pk": 857, "fields": {"state_transition": 184, "node_type": "S", "subcondition": 23, "parent": 856}}, {"model": "template.logicnode", "pk": 858, "fields": {"state_transition": 184, "node_type": "S", "subcondition": 11, "parent": 859}}, {"model": "template.logicnode", "pk": 859, "fields": {"state_transition": 184, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 860, "fields": {"state_transition": 185, "node_type": "N", "subcondition": null, "parent": 865}}, {"model": "template.logicnode", "pk": 861, "fields": {"state_transition": 185, "node_type": "S", "subcondition": 23, "parent": 860}}, {"model": "template.logicnode", "pk": 862, "fields": {"state_transition": 185, "node_type": "S", "subcondition": 10, "parent": 865}}, {"model": "template.logicnode", "pk": 863, "fields": {"state_transition": 185, "node_type": "S", "subcondition": 13, "parent": 865}}, {"model": "template.logicnode", "pk": 864, "fields": {"state_transition": 185, "node_type": "S", "subcondition": 1, "parent": 865}}, {"model": "template.logicnode", "pk": 865, "fields": {"state_transition": 185, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 866, "fields": {"state_transition": 186, "node_type": "N", "subcondition": null, "parent": 870}}, {"model": "template.logicnode", "pk": 867, "fields": {"state_transition": 186, "node_type": "S", "subcondition": 23, "parent": 866}}, {"model": "template.logicnode", "pk": 868, "fields": {"state_transition": 186, "node_type": "S", "subcondition": 10, "parent": 870}}, {"model": "template.logicnode", "pk": 869, "fields": {"state_transition": 186, "node_type": "S", "subcondition": 13, "parent": 870}}, {"model": "template.logicnode", "pk": 870, "fields": {"state_transition": 186, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 871, "fields": {"state_transition": 187, "node_type": "N", "subcondition": null, "parent": 875}}, {"model": "template.logicnode", "pk": 872, "fields": {"state_transition": 187, "node_type": "S", "subcondition": 23, "parent": 871}}, {"model": "template.logicnode", "pk": 873, "fields": {"state_transition": 187, "node_type": "S", "subcondition": 10, "parent": 875}}, {"model": "template.logicnode", "pk": 874, "fields": {"state_transition": 187, "node_type": "S", "subcondition": 1, "parent": 875}}, {"model": "template.logicnode", "pk": 875, "fields": {"state_transition": 187, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 876, "fields": {"state_transition": 188, "node_type": "N", "subcondition": null, "parent": 879}}, {"model": "template.logicnode", "pk": 877, "fields": {"state_transition": 188, "node_type": "S", "subcondition": 23, "parent": 876}}, {"model": "template.logicnode", "pk": 878, "fields": {"state_transition": 188, "node_type": "S", "subcondition": 10, "parent": 879}}, {"model": "template.logicnode", "pk": 879, "fields": {"state_transition": 188, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 880, "fields": {"state_transition": 189, "node_type": "N", "subcondition": null, "parent": 884}}, {"model": "template.logicnode", "pk": 881, "fields": {"state_transition": 189, "node_type": "S", "subcondition": 23, "parent": 880}}, {"model": "template.logicnode", "pk": 882, "fields": {"state_transition": 189, "node_type": "S", "subcondition": 13, "parent": 884}}, {"model": "template.logicnode", "pk": 883, "fields": {"state_transition": 189, "node_type": "S", "subcondition": 1, "parent": 884}}, {"model": "template.logicnode", "pk": 884, "fields": {"state_transition": 189, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 885, "fields": {"state_transition": 190, "node_type": "N", "subcondition": null, "parent": 888}}, {"model": "template.logicnode", "pk": 886, "fields": {"state_transition": 190, "node_type": "S", "subcondition": 23, "parent": 885}}, {"model": "template.logicnode", "pk": 887, "fields": {"state_transition": 190, "node_type": "S", "subcondition": 13, "parent": 888}}, {"model": "template.logicnode", "pk": 888, "fields": {"state_transition": 190, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 889, "fields": {"state_transition": 191, "node_type": "N", "subcondition": null, "parent": 892}}, {"model": "template.logicnode", "pk": 890, "fields": {"state_transition": 191, "node_type": "S", "subcondition": 23, "parent": 889}}, {"model": "template.logicnode", "pk": 891, "fields": {"state_transition": 191, "node_type": "S", "subcondition": 1, "parent": 892}}, {"model": "template.logicnode", "pk": 892, "fields": {"state_transition": 191, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 893, "fields": {"state_transition": 192, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 894, "fields": {"state_transition": 192, "node_type": "S", "subcondition": 23, "parent": 893}}, {"model": "template.logicnode", "pk": 895, "fields": {"state_transition": 193, "node_type": "S", "subcondition": 23, "parent": 898}}, {"model": "template.logicnode", "pk": 896, "fields": {"state_transition": 193, "node_type": "S", "subcondition": 10, "parent": 898}}, {"model": "template.logicnode", "pk": 897, "fields": {"state_transition": 193, "node_type": "S", "subcondition": 1, "parent": 898}}, {"model": "template.logicnode", "pk": 898, "fields": {"state_transition": 193, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 899, "fields": {"state_transition": 194, "node_type": "S", "subcondition": 23, "parent": 901}}, {"model": "template.logicnode", "pk": 900, "fields": {"state_transition": 194, "node_type": "S", "subcondition": 10, "parent": 901}}, {"model": "template.logicnode", "pk": 901, "fields": {"state_transition": 194, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 902, "fields": {"state_transition": 195, "node_type": "S", "subcondition": 23, "parent": 904}}, {"model": "template.logicnode", "pk": 903, "fields": {"state_transition": 195, "node_type": "S", "subcondition": 1, "parent": 904}}, {"model": "template.logicnode", "pk": 904, "fields": {"state_transition": 195, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 905, "fields": {"state_transition": 196, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 906, "fields": {"state_transition": 197, "node_type": "N", "subcondition": null, "parent": 912}}, {"model": "template.logicnode", "pk": 907, "fields": {"state_transition": 197, "node_type": "S", "subcondition": 23, "parent": 906}}, {"model": "template.logicnode", "pk": 908, "fields": {"state_transition": 197, "node_type": "S", "subcondition": 11, "parent": 912}}, {"model": "template.logicnode", "pk": 909, "fields": {"state_transition": 197, "node_type": "S", "subcondition": 10, "parent": 912}}, {"model": "template.logicnode", "pk": 910, "fields": {"state_transition": 197, "node_type": "S", "subcondition": 13, "parent": 912}}, {"model": "template.logicnode", "pk": 911, "fields": {"state_transition": 197, "node_type": "S", "subcondition": 1, "parent": 912}}, {"model": "template.logicnode", "pk": 912, "fields": {"state_transition": 197, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 913, "fields": {"state_transition": 198, "node_type": "N", "subcondition": null, "parent": 918}}, {"model": "template.logicnode", "pk": 914, "fields": {"state_transition": 198, "node_type": "S", "subcondition": 23, "parent": 913}}, {"model": "template.logicnode", "pk": 915, "fields": {"state_transition": 198, "node_type": "S", "subcondition": 11, "parent": 918}}, {"model": "template.logicnode", "pk": 916, "fields": {"state_transition": 198, "node_type": "S", "subcondition": 10, "parent": 918}}, {"model": "template.logicnode", "pk": 917, "fields": {"state_transition": 198, "node_type": "S", "subcondition": 13, "parent": 918}}, {"model": "template.logicnode", "pk": 918, "fields": {"state_transition": 198, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 919, "fields": {"state_transition": 199, "node_type": "N", "subcondition": null, "parent": 924}}, {"model": "template.logicnode", "pk": 920, "fields": {"state_transition": 199, "node_type": "S", "subcondition": 23, "parent": 919}}, {"model": "template.logicnode", "pk": 921, "fields": {"state_transition": 199, "node_type": "S", "subcondition": 11, "parent": 924}}, {"model": "template.logicnode", "pk": 922, "fields": {"state_transition": 199, "node_type": "S", "subcondition": 10, "parent": 924}}, {"model": "template.logicnode", "pk": 923, "fields": {"state_transition": 199, "node_type": "S", "subcondition": 1, "parent": 924}}, {"model": "template.logicnode", "pk": 924, "fields": {"state_transition": 199, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 925, "fields": {"state_transition": 200, "node_type": "N", "subcondition": null, "parent": 929}}, {"model": "template.logicnode", "pk": 926, "fields": {"state_transition": 200, "node_type": "S", "subcondition": 23, "parent": 925}}, {"model": "template.logicnode", "pk": 927, "fields": {"state_transition": 200, "node_type": "S", "subcondition": 11, "parent": 929}}, {"model": "template.logicnode", "pk": 928, "fields": {"state_transition": 200, "node_type": "S", "subcondition": 10, "parent": 929}}, {"model": "template.logicnode", "pk": 929, "fields": {"state_transition": 200, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 930, "fields": {"state_transition": 201, "node_type": "N", "subcondition": null, "parent": 935}}, {"model": "template.logicnode", "pk": 931, "fields": {"state_transition": 201, "node_type": "S", "subcondition": 23, "parent": 930}}, {"model": "template.logicnode", "pk": 932, "fields": {"state_transition": 201, "node_type": "S", "subcondition": 11, "parent": 935}}, {"model": "template.logicnode", "pk": 933, "fields": {"state_transition": 201, "node_type": "S", "subcondition": 13, "parent": 935}}, {"model": "template.logicnode", "pk": 934, "fields": {"state_transition": 201, "node_type": "S", "subcondition": 1, "parent": 935}}, {"model": "template.logicnode", "pk": 935, "fields": {"state_transition": 201, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 936, "fields": {"state_transition": 202, "node_type": "N", "subcondition": null, "parent": 940}}, {"model": "template.logicnode", "pk": 937, "fields": {"state_transition": 202, "node_type": "S", "subcondition": 23, "parent": 936}}, {"model": "template.logicnode", "pk": 938, "fields": {"state_transition": 202, "node_type": "S", "subcondition": 11, "parent": 940}}, {"model": "template.logicnode", "pk": 939, "fields": {"state_transition": 202, "node_type": "S", "subcondition": 13, "parent": 940}}, {"model": "template.logicnode", "pk": 940, "fields": {"state_transition": 202, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 941, "fields": {"state_transition": 203, "node_type": "N", "subcondition": null, "parent": 945}}, {"model": "template.logicnode", "pk": 942, "fields": {"state_transition": 203, "node_type": "S", "subcondition": 23, "parent": 941}}, {"model": "template.logicnode", "pk": 943, "fields": {"state_transition": 203, "node_type": "S", "subcondition": 11, "parent": 945}}, {"model": "template.logicnode", "pk": 944, "fields": {"state_transition": 203, "node_type": "S", "subcondition": 1, "parent": 945}}, {"model": "template.logicnode", "pk": 945, "fields": {"state_transition": 203, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 946, "fields": {"state_transition": 204, "node_type": "N", "subcondition": null, "parent": 949}}, {"model": "template.logicnode", "pk": 947, "fields": {"state_transition": 204, "node_type": "S", "subcondition": 23, "parent": 946}}, {"model": "template.logicnode", "pk": 948, "fields": {"state_transition": 204, "node_type": "S", "subcondition": 11, "parent": 949}}, {"model": "template.logicnode", "pk": 949, "fields": {"state_transition": 204, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 950, "fields": {"state_transition": 205, "node_type": "N", "subcondition": null, "parent": 955}}, {"model": "template.logicnode", "pk": 951, "fields": {"state_transition": 205, "node_type": "S", "subcondition": 23, "parent": 950}}, {"model": "template.logicnode", "pk": 952, "fields": {"state_transition": 205, "node_type": "S", "subcondition": 10, "parent": 955}}, {"model": "template.logicnode", "pk": 953, "fields": {"state_transition": 205, "node_type": "S", "subcondition": 13, "parent": 955}}, {"model": "template.logicnode", "pk": 954, "fields": {"state_transition": 205, "node_type": "S", "subcondition": 1, "parent": 955}}, {"model": "template.logicnode", "pk": 955, "fields": {"state_transition": 205, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 956, "fields": {"state_transition": 206, "node_type": "N", "subcondition": null, "parent": 960}}, {"model": "template.logicnode", "pk": 957, "fields": {"state_transition": 206, "node_type": "S", "subcondition": 23, "parent": 956}}, {"model": "template.logicnode", "pk": 958, "fields": {"state_transition": 206, "node_type": "S", "subcondition": 10, "parent": 960}}, {"model": "template.logicnode", "pk": 959, "fields": {"state_transition": 206, "node_type": "S", "subcondition": 13, "parent": 960}}, {"model": "template.logicnode", "pk": 960, "fields": {"state_transition": 206, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 961, "fields": {"state_transition": 207, "node_type": "N", "subcondition": null, "parent": 965}}, {"model": "template.logicnode", "pk": 962, "fields": {"state_transition": 207, "node_type": "S", "subcondition": 23, "parent": 961}}, {"model": "template.logicnode", "pk": 963, "fields": {"state_transition": 207, "node_type": "S", "subcondition": 10, "parent": 965}}, {"model": "template.logicnode", "pk": 964, "fields": {"state_transition": 207, "node_type": "S", "subcondition": 1, "parent": 965}}, {"model": "template.logicnode", "pk": 965, "fields": {"state_transition": 207, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 966, "fields": {"state_transition": 208, "node_type": "N", "subcondition": null, "parent": 969}}, {"model": "template.logicnode", "pk": 967, "fields": {"state_transition": 208, "node_type": "S", "subcondition": 23, "parent": 966}}, {"model": "template.logicnode", "pk": 968, "fields": {"state_transition": 208, "node_type": "S", "subcondition": 10, "parent": 969}}, {"model": "template.logicnode", "pk": 969, "fields": {"state_transition": 208, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 970, "fields": {"state_transition": 209, "node_type": "N", "subcondition": null, "parent": 974}}, {"model": "template.logicnode", "pk": 971, "fields": {"state_transition": 209, "node_type": "S", "subcondition": 23, "parent": 970}}, {"model": "template.logicnode", "pk": 972, "fields": {"state_transition": 209, "node_type": "S", "subcondition": 13, "parent": 974}}, {"model": "template.logicnode", "pk": 973, "fields": {"state_transition": 209, "node_type": "S", "subcondition": 1, "parent": 974}}, {"model": "template.logicnode", "pk": 974, "fields": {"state_transition": 209, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 975, "fields": {"state_transition": 210, "node_type": "N", "subcondition": null, "parent": 978}}, {"model": "template.logicnode", "pk": 976, "fields": {"state_transition": 210, "node_type": "S", "subcondition": 23, "parent": 975}}, {"model": "template.logicnode", "pk": 977, "fields": {"state_transition": 210, "node_type": "S", "subcondition": 13, "parent": 978}}, {"model": "template.logicnode", "pk": 978, "fields": {"state_transition": 210, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 979, "fields": {"state_transition": 211, "node_type": "N", "subcondition": null, "parent": 982}}, {"model": "template.logicnode", "pk": 980, "fields": {"state_transition": 211, "node_type": "S", "subcondition": 23, "parent": 979}}, {"model": "template.logicnode", "pk": 981, "fields": {"state_transition": 211, "node_type": "S", "subcondition": 1, "parent": 982}}, {"model": "template.logicnode", "pk": 982, "fields": {"state_transition": 211, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 983, "fields": {"state_transition": 212, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 984, "fields": {"state_transition": 212, "node_type": "S", "subcondition": 23, "parent": 983}}, {"model": "template.logicnode", "pk": 985, "fields": {"state_transition": 213, "node_type": "S", "subcondition": 23, "parent": 988}}, {"model": "template.logicnode", "pk": 986, "fields": {"state_transition": 213, "node_type": "S", "subcondition": 10, "parent": 988}}, {"model": "template.logicnode", "pk": 987, "fields": {"state_transition": 213, "node_type": "S", "subcondition": 1, "parent": 988}}, {"model": "template.logicnode", "pk": 988, "fields": {"state_transition": 213, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 989, "fields": {"state_transition": 214, "node_type": "S", "subcondition": 23, "parent": 991}}, {"model": "template.logicnode", "pk": 990, "fields": {"state_transition": 214, "node_type": "S", "subcondition": 10, "parent": 991}}, {"model": "template.logicnode", "pk": 991, "fields": {"state_transition": 214, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 992, "fields": {"state_transition": 215, "node_type": "S", "subcondition": 23, "parent": 994}}, {"model": "template.logicnode", "pk": 993, "fields": {"state_transition": 215, "node_type": "S", "subcondition": 1, "parent": 994}}, {"model": "template.logicnode", "pk": 994, "fields": {"state_transition": 215, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 995, "fields": {"state_transition": 216, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 996, "fields": {"state_transition": 217, "node_type": "N", "subcondition": null, "parent": 1002}}, {"model": "template.logicnode", "pk": 997, "fields": {"state_transition": 217, "node_type": "S", "subcondition": 23, "parent": 996}}, {"model": "template.logicnode", "pk": 998, "fields": {"state_transition": 217, "node_type": "S", "subcondition": 11, "parent": 1002}}, {"model": "template.logicnode", "pk": 999, "fields": {"state_transition": 217, "node_type": "S", "subcondition": 10, "parent": 1002}}, {"model": "template.logicnode", "pk": 1000, "fields": {"state_transition": 217, "node_type": "S", "subcondition": 13, "parent": 1002}}, {"model": "template.logicnode", "pk": 1001, "fields": {"state_transition": 217, "node_type": "S", "subcondition": 1, "parent": 1002}}, {"model": "template.logicnode", "pk": 1002, "fields": {"state_transition": 217, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1003, "fields": {"state_transition": 218, "node_type": "N", "subcondition": null, "parent": 1008}}, {"model": "template.logicnode", "pk": 1004, "fields": {"state_transition": 218, "node_type": "S", "subcondition": 23, "parent": 1003}}, {"model": "template.logicnode", "pk": 1005, "fields": {"state_transition": 218, "node_type": "S", "subcondition": 11, "parent": 1008}}, {"model": "template.logicnode", "pk": 1006, "fields": {"state_transition": 218, "node_type": "S", "subcondition": 10, "parent": 1008}}, {"model": "template.logicnode", "pk": 1007, "fields": {"state_transition": 218, "node_type": "S", "subcondition": 13, "parent": 1008}}, {"model": "template.logicnode", "pk": 1008, "fields": {"state_transition": 218, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1009, "fields": {"state_transition": 219, "node_type": "N", "subcondition": null, "parent": 1014}}, {"model": "template.logicnode", "pk": 1010, "fields": {"state_transition": 219, "node_type": "S", "subcondition": 23, "parent": 1009}}, {"model": "template.logicnode", "pk": 1011, "fields": {"state_transition": 219, "node_type": "S", "subcondition": 11, "parent": 1014}}, {"model": "template.logicnode", "pk": 1012, "fields": {"state_transition": 219, "node_type": "S", "subcondition": 10, "parent": 1014}}, {"model": "template.logicnode", "pk": 1013, "fields": {"state_transition": 219, "node_type": "S", "subcondition": 1, "parent": 1014}}, {"model": "template.logicnode", "pk": 1014, "fields": {"state_transition": 219, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1015, "fields": {"state_transition": 220, "node_type": "N", "subcondition": null, "parent": 1019}}, {"model": "template.logicnode", "pk": 1016, "fields": {"state_transition": 220, "node_type": "S", "subcondition": 23, "parent": 1015}}, {"model": "template.logicnode", "pk": 1017, "fields": {"state_transition": 220, "node_type": "S", "subcondition": 11, "parent": 1019}}, {"model": "template.logicnode", "pk": 1018, "fields": {"state_transition": 220, "node_type": "S", "subcondition": 10, "parent": 1019}}, {"model": "template.logicnode", "pk": 1019, "fields": {"state_transition": 220, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1020, "fields": {"state_transition": 221, "node_type": "N", "subcondition": null, "parent": 1025}}, {"model": "template.logicnode", "pk": 1021, "fields": {"state_transition": 221, "node_type": "S", "subcondition": 23, "parent": 1020}}, {"model": "template.logicnode", "pk": 1022, "fields": {"state_transition": 221, "node_type": "S", "subcondition": 11, "parent": 1025}}, {"model": "template.logicnode", "pk": 1023, "fields": {"state_transition": 221, "node_type": "S", "subcondition": 13, "parent": 1025}}, {"model": "template.logicnode", "pk": 1024, "fields": {"state_transition": 221, "node_type": "S", "subcondition": 1, "parent": 1025}}, {"model": "template.logicnode", "pk": 1025, "fields": {"state_transition": 221, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1026, "fields": {"state_transition": 222, "node_type": "N", "subcondition": null, "parent": 1030}}, {"model": "template.logicnode", "pk": 1027, "fields": {"state_transition": 222, "node_type": "S", "subcondition": 23, "parent": 1026}}, {"model": "template.logicnode", "pk": 1028, "fields": {"state_transition": 222, "node_type": "S", "subcondition": 11, "parent": 1030}}, {"model": "template.logicnode", "pk": 1029, "fields": {"state_transition": 222, "node_type": "S", "subcondition": 13, "parent": 1030}}, {"model": "template.logicnode", "pk": 1030, "fields": {"state_transition": 222, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1031, "fields": {"state_transition": 223, "node_type": "N", "subcondition": null, "parent": 1035}}, {"model": "template.logicnode", "pk": 1032, "fields": {"state_transition": 223, "node_type": "S", "subcondition": 23, "parent": 1031}}, {"model": "template.logicnode", "pk": 1033, "fields": {"state_transition": 223, "node_type": "S", "subcondition": 11, "parent": 1035}}, {"model": "template.logicnode", "pk": 1034, "fields": {"state_transition": 223, "node_type": "S", "subcondition": 1, "parent": 1035}}, {"model": "template.logicnode", "pk": 1035, "fields": {"state_transition": 223, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1036, "fields": {"state_transition": 224, "node_type": "N", "subcondition": null, "parent": 1039}}, {"model": "template.logicnode", "pk": 1037, "fields": {"state_transition": 224, "node_type": "S", "subcondition": 23, "parent": 1036}}, {"model": "template.logicnode", "pk": 1038, "fields": {"state_transition": 224, "node_type": "S", "subcondition": 11, "parent": 1039}}, {"model": "template.logicnode", "pk": 1039, "fields": {"state_transition": 224, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1040, "fields": {"state_transition": 225, "node_type": "N", "subcondition": null, "parent": 1045}}, {"model": "template.logicnode", "pk": 1041, "fields": {"state_transition": 225, "node_type": "S", "subcondition": 23, "parent": 1040}}, {"model": "template.logicnode", "pk": 1042, "fields": {"state_transition": 225, "node_type": "S", "subcondition": 10, "parent": 1045}}, {"model": "template.logicnode", "pk": 1043, "fields": {"state_transition": 225, "node_type": "S", "subcondition": 13, "parent": 1045}}, {"model": "template.logicnode", "pk": 1044, "fields": {"state_transition": 225, "node_type": "S", "subcondition": 1, "parent": 1045}}, {"model": "template.logicnode", "pk": 1045, "fields": {"state_transition": 225, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1046, "fields": {"state_transition": 226, "node_type": "N", "subcondition": null, "parent": 1050}}, {"model": "template.logicnode", "pk": 1047, "fields": {"state_transition": 226, "node_type": "S", "subcondition": 23, "parent": 1046}}, {"model": "template.logicnode", "pk": 1048, "fields": {"state_transition": 226, "node_type": "S", "subcondition": 10, "parent": 1050}}, {"model": "template.logicnode", "pk": 1049, "fields": {"state_transition": 226, "node_type": "S", "subcondition": 13, "parent": 1050}}, {"model": "template.logicnode", "pk": 1050, "fields": {"state_transition": 226, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1051, "fields": {"state_transition": 227, "node_type": "N", "subcondition": null, "parent": 1055}}, {"model": "template.logicnode", "pk": 1052, "fields": {"state_transition": 227, "node_type": "S", "subcondition": 23, "parent": 1051}}, {"model": "template.logicnode", "pk": 1053, "fields": {"state_transition": 227, "node_type": "S", "subcondition": 10, "parent": 1055}}, {"model": "template.logicnode", "pk": 1054, "fields": {"state_transition": 227, "node_type": "S", "subcondition": 1, "parent": 1055}}, {"model": "template.logicnode", "pk": 1055, "fields": {"state_transition": 227, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1056, "fields": {"state_transition": 228, "node_type": "N", "subcondition": null, "parent": 1059}}, {"model": "template.logicnode", "pk": 1057, "fields": {"state_transition": 228, "node_type": "S", "subcondition": 23, "parent": 1056}}, {"model": "template.logicnode", "pk": 1058, "fields": {"state_transition": 228, "node_type": "S", "subcondition": 10, "parent": 1059}}, {"model": "template.logicnode", "pk": 1059, "fields": {"state_transition": 228, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1060, "fields": {"state_transition": 229, "node_type": "N", "subcondition": null, "parent": 1064}}, {"model": "template.logicnode", "pk": 1061, "fields": {"state_transition": 229, "node_type": "S", "subcondition": 23, "parent": 1060}}, {"model": "template.logicnode", "pk": 1062, "fields": {"state_transition": 229, "node_type": "S", "subcondition": 13, "parent": 1064}}, {"model": "template.logicnode", "pk": 1063, "fields": {"state_transition": 229, "node_type": "S", "subcondition": 1, "parent": 1064}}, {"model": "template.logicnode", "pk": 1064, "fields": {"state_transition": 229, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1065, "fields": {"state_transition": 230, "node_type": "N", "subcondition": null, "parent": 1068}}, {"model": "template.logicnode", "pk": 1066, "fields": {"state_transition": 230, "node_type": "S", "subcondition": 23, "parent": 1065}}, {"model": "template.logicnode", "pk": 1067, "fields": {"state_transition": 230, "node_type": "S", "subcondition": 13, "parent": 1068}}, {"model": "template.logicnode", "pk": 1068, "fields": {"state_transition": 230, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1069, "fields": {"state_transition": 231, "node_type": "N", "subcondition": null, "parent": 1072}}, {"model": "template.logicnode", "pk": 1070, "fields": {"state_transition": 231, "node_type": "S", "subcondition": 23, "parent": 1069}}, {"model": "template.logicnode", "pk": 1071, "fields": {"state_transition": 231, "node_type": "S", "subcondition": 1, "parent": 1072}}, {"model": "template.logicnode", "pk": 1072, "fields": {"state_transition": 231, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1073, "fields": {"state_transition": 232, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1074, "fields": {"state_transition": 232, "node_type": "S", "subcondition": 23, "parent": 1073}}, {"model": "template.logicnode", "pk": 1075, "fields": {"state_transition": 233, "node_type": "S", "subcondition": 23, "parent": 1078}}, {"model": "template.logicnode", "pk": 1076, "fields": {"state_transition": 233, "node_type": "S", "subcondition": 10, "parent": 1078}}, {"model": "template.logicnode", "pk": 1077, "fields": {"state_transition": 233, "node_type": "S", "subcondition": 1, "parent": 1078}}, {"model": "template.logicnode", "pk": 1078, "fields": {"state_transition": 233, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1079, "fields": {"state_transition": 234, "node_type": "S", "subcondition": 23, "parent": 1081}}, {"model": "template.logicnode", "pk": 1080, "fields": {"state_transition": 234, "node_type": "S", "subcondition": 10, "parent": 1081}}, {"model": "template.logicnode", "pk": 1081, "fields": {"state_transition": 234, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1082, "fields": {"state_transition": 235, "node_type": "S", "subcondition": 23, "parent": 1084}}, {"model": "template.logicnode", "pk": 1083, "fields": {"state_transition": 235, "node_type": "S", "subcondition": 1, "parent": 1084}}, {"model": "template.logicnode", "pk": 1084, "fields": {"state_transition": 235, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1085, "fields": {"state_transition": 236, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1086, "fields": {"state_transition": 237, "node_type": "N", "subcondition": null, "parent": 1092}}, {"model": "template.logicnode", "pk": 1087, "fields": {"state_transition": 237, "node_type": "S", "subcondition": 23, "parent": 1086}}, {"model": "template.logicnode", "pk": 1088, "fields": {"state_transition": 237, "node_type": "S", "subcondition": 11, "parent": 1092}}, {"model": "template.logicnode", "pk": 1089, "fields": {"state_transition": 237, "node_type": "S", "subcondition": 10, "parent": 1092}}, {"model": "template.logicnode", "pk": 1090, "fields": {"state_transition": 237, "node_type": "S", "subcondition": 13, "parent": 1092}}, {"model": "template.logicnode", "pk": 1091, "fields": {"state_transition": 237, "node_type": "S", "subcondition": 1, "parent": 1092}}, {"model": "template.logicnode", "pk": 1092, "fields": {"state_transition": 237, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1093, "fields": {"state_transition": 238, "node_type": "N", "subcondition": null, "parent": 1098}}, {"model": "template.logicnode", "pk": 1094, "fields": {"state_transition": 238, "node_type": "S", "subcondition": 23, "parent": 1093}}, {"model": "template.logicnode", "pk": 1095, "fields": {"state_transition": 238, "node_type": "S", "subcondition": 11, "parent": 1098}}, {"model": "template.logicnode", "pk": 1096, "fields": {"state_transition": 238, "node_type": "S", "subcondition": 10, "parent": 1098}}, {"model": "template.logicnode", "pk": 1097, "fields": {"state_transition": 238, "node_type": "S", "subcondition": 13, "parent": 1098}}, {"model": "template.logicnode", "pk": 1098, "fields": {"state_transition": 238, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1099, "fields": {"state_transition": 239, "node_type": "N", "subcondition": null, "parent": 1104}}, {"model": "template.logicnode", "pk": 1100, "fields": {"state_transition": 239, "node_type": "S", "subcondition": 23, "parent": 1099}}, {"model": "template.logicnode", "pk": 1101, "fields": {"state_transition": 239, "node_type": "S", "subcondition": 11, "parent": 1104}}, {"model": "template.logicnode", "pk": 1102, "fields": {"state_transition": 239, "node_type": "S", "subcondition": 10, "parent": 1104}}, {"model": "template.logicnode", "pk": 1103, "fields": {"state_transition": 239, "node_type": "S", "subcondition": 1, "parent": 1104}}, {"model": "template.logicnode", "pk": 1104, "fields": {"state_transition": 239, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1105, "fields": {"state_transition": 240, "node_type": "N", "subcondition": null, "parent": 1109}}, {"model": "template.logicnode", "pk": 1106, "fields": {"state_transition": 240, "node_type": "S", "subcondition": 23, "parent": 1105}}, {"model": "template.logicnode", "pk": 1107, "fields": {"state_transition": 240, "node_type": "S", "subcondition": 11, "parent": 1109}}, {"model": "template.logicnode", "pk": 1108, "fields": {"state_transition": 240, "node_type": "S", "subcondition": 10, "parent": 1109}}, {"model": "template.logicnode", "pk": 1109, "fields": {"state_transition": 240, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1110, "fields": {"state_transition": 241, "node_type": "N", "subcondition": null, "parent": 1115}}, {"model": "template.logicnode", "pk": 1111, "fields": {"state_transition": 241, "node_type": "S", "subcondition": 23, "parent": 1110}}, {"model": "template.logicnode", "pk": 1112, "fields": {"state_transition": 241, "node_type": "S", "subcondition": 11, "parent": 1115}}, {"model": "template.logicnode", "pk": 1113, "fields": {"state_transition": 241, "node_type": "S", "subcondition": 13, "parent": 1115}}, {"model": "template.logicnode", "pk": 1114, "fields": {"state_transition": 241, "node_type": "S", "subcondition": 1, "parent": 1115}}, {"model": "template.logicnode", "pk": 1115, "fields": {"state_transition": 241, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1116, "fields": {"state_transition": 242, "node_type": "N", "subcondition": null, "parent": 1120}}, {"model": "template.logicnode", "pk": 1117, "fields": {"state_transition": 242, "node_type": "S", "subcondition": 23, "parent": 1116}}, {"model": "template.logicnode", "pk": 1118, "fields": {"state_transition": 242, "node_type": "S", "subcondition": 11, "parent": 1120}}, {"model": "template.logicnode", "pk": 1119, "fields": {"state_transition": 242, "node_type": "S", "subcondition": 13, "parent": 1120}}, {"model": "template.logicnode", "pk": 1120, "fields": {"state_transition": 242, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1121, "fields": {"state_transition": 243, "node_type": "N", "subcondition": null, "parent": 1125}}, {"model": "template.logicnode", "pk": 1122, "fields": {"state_transition": 243, "node_type": "S", "subcondition": 23, "parent": 1121}}, {"model": "template.logicnode", "pk": 1123, "fields": {"state_transition": 243, "node_type": "S", "subcondition": 11, "parent": 1125}}, {"model": "template.logicnode", "pk": 1124, "fields": {"state_transition": 243, "node_type": "S", "subcondition": 1, "parent": 1125}}, {"model": "template.logicnode", "pk": 1125, "fields": {"state_transition": 243, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1126, "fields": {"state_transition": 244, "node_type": "N", "subcondition": null, "parent": 1129}}, {"model": "template.logicnode", "pk": 1127, "fields": {"state_transition": 244, "node_type": "S", "subcondition": 23, "parent": 1126}}, {"model": "template.logicnode", "pk": 1128, "fields": {"state_transition": 244, "node_type": "S", "subcondition": 11, "parent": 1129}}, {"model": "template.logicnode", "pk": 1129, "fields": {"state_transition": 244, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1130, "fields": {"state_transition": 245, "node_type": "N", "subcondition": null, "parent": 1135}}, {"model": "template.logicnode", "pk": 1131, "fields": {"state_transition": 245, "node_type": "S", "subcondition": 23, "parent": 1130}}, {"model": "template.logicnode", "pk": 1132, "fields": {"state_transition": 245, "node_type": "S", "subcondition": 10, "parent": 1135}}, {"model": "template.logicnode", "pk": 1133, "fields": {"state_transition": 245, "node_type": "S", "subcondition": 13, "parent": 1135}}, {"model": "template.logicnode", "pk": 1134, "fields": {"state_transition": 245, "node_type": "S", "subcondition": 1, "parent": 1135}}, {"model": "template.logicnode", "pk": 1135, "fields": {"state_transition": 245, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1136, "fields": {"state_transition": 246, "node_type": "N", "subcondition": null, "parent": 1140}}, {"model": "template.logicnode", "pk": 1137, "fields": {"state_transition": 246, "node_type": "S", "subcondition": 23, "parent": 1136}}, {"model": "template.logicnode", "pk": 1138, "fields": {"state_transition": 246, "node_type": "S", "subcondition": 10, "parent": 1140}}, {"model": "template.logicnode", "pk": 1139, "fields": {"state_transition": 246, "node_type": "S", "subcondition": 13, "parent": 1140}}, {"model": "template.logicnode", "pk": 1140, "fields": {"state_transition": 246, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1141, "fields": {"state_transition": 247, "node_type": "N", "subcondition": null, "parent": 1145}}, {"model": "template.logicnode", "pk": 1142, "fields": {"state_transition": 247, "node_type": "S", "subcondition": 23, "parent": 1141}}, {"model": "template.logicnode", "pk": 1143, "fields": {"state_transition": 247, "node_type": "S", "subcondition": 10, "parent": 1145}}, {"model": "template.logicnode", "pk": 1144, "fields": {"state_transition": 247, "node_type": "S", "subcondition": 1, "parent": 1145}}, {"model": "template.logicnode", "pk": 1145, "fields": {"state_transition": 247, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1146, "fields": {"state_transition": 248, "node_type": "N", "subcondition": null, "parent": 1149}}, {"model": "template.logicnode", "pk": 1147, "fields": {"state_transition": 248, "node_type": "S", "subcondition": 23, "parent": 1146}}, {"model": "template.logicnode", "pk": 1148, "fields": {"state_transition": 248, "node_type": "S", "subcondition": 10, "parent": 1149}}, {"model": "template.logicnode", "pk": 1149, "fields": {"state_transition": 248, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1150, "fields": {"state_transition": 249, "node_type": "N", "subcondition": null, "parent": 1154}}, {"model": "template.logicnode", "pk": 1151, "fields": {"state_transition": 249, "node_type": "S", "subcondition": 23, "parent": 1150}}, {"model": "template.logicnode", "pk": 1152, "fields": {"state_transition": 249, "node_type": "S", "subcondition": 13, "parent": 1154}}, {"model": "template.logicnode", "pk": 1153, "fields": {"state_transition": 249, "node_type": "S", "subcondition": 1, "parent": 1154}}, {"model": "template.logicnode", "pk": 1154, "fields": {"state_transition": 249, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1155, "fields": {"state_transition": 250, "node_type": "N", "subcondition": null, "parent": 1158}}, {"model": "template.logicnode", "pk": 1156, "fields": {"state_transition": 250, "node_type": "S", "subcondition": 23, "parent": 1155}}, {"model": "template.logicnode", "pk": 1157, "fields": {"state_transition": 250, "node_type": "S", "subcondition": 13, "parent": 1158}}, {"model": "template.logicnode", "pk": 1158, "fields": {"state_transition": 250, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1159, "fields": {"state_transition": 251, "node_type": "N", "subcondition": null, "parent": 1162}}, {"model": "template.logicnode", "pk": 1160, "fields": {"state_transition": 251, "node_type": "S", "subcondition": 23, "parent": 1159}}, {"model": "template.logicnode", "pk": 1161, "fields": {"state_transition": 251, "node_type": "S", "subcondition": 1, "parent": 1162}}, {"model": "template.logicnode", "pk": 1162, "fields": {"state_transition": 251, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1163, "fields": {"state_transition": 252, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1164, "fields": {"state_transition": 252, "node_type": "S", "subcondition": 23, "parent": 1163}}, {"model": "template.logicnode", "pk": 1165, "fields": {"state_transition": 253, "node_type": "S", "subcondition": 23, "parent": 1168}}, {"model": "template.logicnode", "pk": 1166, "fields": {"state_transition": 253, "node_type": "S", "subcondition": 10, "parent": 1168}}, {"model": "template.logicnode", "pk": 1167, "fields": {"state_transition": 253, "node_type": "S", "subcondition": 1, "parent": 1168}}, {"model": "template.logicnode", "pk": 1168, "fields": {"state_transition": 253, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1169, "fields": {"state_transition": 254, "node_type": "S", "subcondition": 23, "parent": 1171}}, {"model": "template.logicnode", "pk": 1170, "fields": {"state_transition": 254, "node_type": "S", "subcondition": 10, "parent": 1171}}, {"model": "template.logicnode", "pk": 1171, "fields": {"state_transition": 254, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1172, "fields": {"state_transition": 255, "node_type": "S", "subcondition": 23, "parent": 1174}}, {"model": "template.logicnode", "pk": 1173, "fields": {"state_transition": 255, "node_type": "S", "subcondition": 1, "parent": 1174}}, {"model": "template.logicnode", "pk": 1174, "fields": {"state_transition": 255, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1175, "fields": {"state_transition": 256, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1176, "fields": {"state_transition": 257, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1177, "fields": {"state_transition": 258, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1178, "fields": {"state_transition": 259, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1179, "fields": {"state_transition": 260, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1180, "fields": {"state_transition": 261, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1181, "fields": {"state_transition": 262, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1182, "fields": {"state_transition": 263, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1183, "fields": {"state_transition": 264, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1184, "fields": {"state_transition": 265, "node_type": "N", "subcondition": null, "parent": 1188}}, {"model": "template.logicnode", "pk": 1185, "fields": {"state_transition": 265, "node_type": "S", "subcondition": 23, "parent": 1184}}, {"model": "template.logicnode", "pk": 1186, "fields": {"state_transition": 265, "node_type": "S", "subcondition": 11, "parent": 1188}}, {"model": "template.logicnode", "pk": 1187, "fields": {"state_transition": 265, "node_type": "S", "subcondition": 17, "parent": 1188}}, {"model": "template.logicnode", "pk": 1188, "fields": {"state_transition": 265, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1189, "fields": {"state_transition": 266, "node_type": "N", "subcondition": null, "parent": 1192}}, {"model": "template.logicnode", "pk": 1190, "fields": {"state_transition": 266, "node_type": "S", "subcondition": 23, "parent": 1189}}, {"model": "template.logicnode", "pk": 1191, "fields": {"state_transition": 266, "node_type": "S", "subcondition": 11, "parent": 1192}}, {"model": "template.logicnode", "pk": 1192, "fields": {"state_transition": 266, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1193, "fields": {"state_transition": 267, "node_type": "N", "subcondition": null, "parent": 1196}}, {"model": "template.logicnode", "pk": 1194, "fields": {"state_transition": 267, "node_type": "S", "subcondition": 23, "parent": 1193}}, {"model": "template.logicnode", "pk": 1195, "fields": {"state_transition": 267, "node_type": "S", "subcondition": 17, "parent": 1196}}, {"model": "template.logicnode", "pk": 1196, "fields": {"state_transition": 267, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1197, "fields": {"state_transition": 268, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1198, "fields": {"state_transition": 268, "node_type": "S", "subcondition": 23, "parent": 1197}}, {"model": "template.logicnode", "pk": 1199, "fields": {"state_transition": 269, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1200, "fields": {"state_transition": 270, "node_type": "N", "subcondition": null, "parent": 1204}}, {"model": "template.logicnode", "pk": 1201, "fields": {"state_transition": 270, "node_type": "S", "subcondition": 23, "parent": 1200}}, {"model": "template.logicnode", "pk": 1202, "fields": {"state_transition": 270, "node_type": "S", "subcondition": 11, "parent": 1204}}, {"model": "template.logicnode", "pk": 1203, "fields": {"state_transition": 270, "node_type": "S", "subcondition": 17, "parent": 1204}}, {"model": "template.logicnode", "pk": 1204, "fields": {"state_transition": 270, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1205, "fields": {"state_transition": 271, "node_type": "N", "subcondition": null, "parent": 1208}}, {"model": "template.logicnode", "pk": 1206, "fields": {"state_transition": 271, "node_type": "S", "subcondition": 23, "parent": 1205}}, {"model": "template.logicnode", "pk": 1207, "fields": {"state_transition": 271, "node_type": "S", "subcondition": 11, "parent": 1208}}, {"model": "template.logicnode", "pk": 1208, "fields": {"state_transition": 271, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1209, "fields": {"state_transition": 272, "node_type": "N", "subcondition": null, "parent": 1212}}, {"model": "template.logicnode", "pk": 1210, "fields": {"state_transition": 272, "node_type": "S", "subcondition": 23, "parent": 1209}}, {"model": "template.logicnode", "pk": 1211, "fields": {"state_transition": 272, "node_type": "S", "subcondition": 17, "parent": 1212}}, {"model": "template.logicnode", "pk": 1212, "fields": {"state_transition": 272, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1213, "fields": {"state_transition": 273, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1214, "fields": {"state_transition": 273, "node_type": "S", "subcondition": 23, "parent": 1213}}, {"model": "template.logicnode", "pk": 1215, "fields": {"state_transition": 274, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1216, "fields": {"state_transition": 275, "node_type": "N", "subcondition": null, "parent": 1220}}, {"model": "template.logicnode", "pk": 1217, "fields": {"state_transition": 275, "node_type": "S", "subcondition": 23, "parent": 1216}}, {"model": "template.logicnode", "pk": 1218, "fields": {"state_transition": 275, "node_type": "S", "subcondition": 11, "parent": 1220}}, {"model": "template.logicnode", "pk": 1219, "fields": {"state_transition": 275, "node_type": "S", "subcondition": 17, "parent": 1220}}, {"model": "template.logicnode", "pk": 1220, "fields": {"state_transition": 275, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1221, "fields": {"state_transition": 276, "node_type": "N", "subcondition": null, "parent": 1224}}, {"model": "template.logicnode", "pk": 1222, "fields": {"state_transition": 276, "node_type": "S", "subcondition": 23, "parent": 1221}}, {"model": "template.logicnode", "pk": 1223, "fields": {"state_transition": 276, "node_type": "S", "subcondition": 11, "parent": 1224}}, {"model": "template.logicnode", "pk": 1224, "fields": {"state_transition": 276, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1225, "fields": {"state_transition": 277, "node_type": "N", "subcondition": null, "parent": 1228}}, {"model": "template.logicnode", "pk": 1226, "fields": {"state_transition": 277, "node_type": "S", "subcondition": 23, "parent": 1225}}, {"model": "template.logicnode", "pk": 1227, "fields": {"state_transition": 277, "node_type": "S", "subcondition": 17, "parent": 1228}}, {"model": "template.logicnode", "pk": 1228, "fields": {"state_transition": 277, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1229, "fields": {"state_transition": 278, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1230, "fields": {"state_transition": 278, "node_type": "S", "subcondition": 23, "parent": 1229}}, {"model": "template.logicnode", "pk": 1231, "fields": {"state_transition": 279, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1232, "fields": {"state_transition": 280, "node_type": "N", "subcondition": null, "parent": 1236}}, {"model": "template.logicnode", "pk": 1233, "fields": {"state_transition": 280, "node_type": "S", "subcondition": 23, "parent": 1232}}, {"model": "template.logicnode", "pk": 1234, "fields": {"state_transition": 280, "node_type": "S", "subcondition": 11, "parent": 1236}}, {"model": "template.logicnode", "pk": 1235, "fields": {"state_transition": 280, "node_type": "S", "subcondition": 17, "parent": 1236}}, {"model": "template.logicnode", "pk": 1236, "fields": {"state_transition": 280, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1237, "fields": {"state_transition": 281, "node_type": "N", "subcondition": null, "parent": 1240}}, {"model": "template.logicnode", "pk": 1238, "fields": {"state_transition": 281, "node_type": "S", "subcondition": 23, "parent": 1237}}, {"model": "template.logicnode", "pk": 1239, "fields": {"state_transition": 281, "node_type": "S", "subcondition": 11, "parent": 1240}}, {"model": "template.logicnode", "pk": 1240, "fields": {"state_transition": 281, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1241, "fields": {"state_transition": 282, "node_type": "N", "subcondition": null, "parent": 1244}}, {"model": "template.logicnode", "pk": 1242, "fields": {"state_transition": 282, "node_type": "S", "subcondition": 23, "parent": 1241}}, {"model": "template.logicnode", "pk": 1243, "fields": {"state_transition": 282, "node_type": "S", "subcondition": 17, "parent": 1244}}, {"model": "template.logicnode", "pk": 1244, "fields": {"state_transition": 282, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1245, "fields": {"state_transition": 283, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1246, "fields": {"state_transition": 283, "node_type": "S", "subcondition": 23, "parent": 1245}}, {"model": "template.logicnode", "pk": 1247, "fields": {"state_transition": 284, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1248, "fields": {"state_transition": 285, "node_type": "N", "subcondition": null, "parent": 1252}}, {"model": "template.logicnode", "pk": 1249, "fields": {"state_transition": 285, "node_type": "S", "subcondition": 23, "parent": 1248}}, {"model": "template.logicnode", "pk": 1250, "fields": {"state_transition": 285, "node_type": "S", "subcondition": 11, "parent": 1252}}, {"model": "template.logicnode", "pk": 1251, "fields": {"state_transition": 285, "node_type": "S", "subcondition": 17, "parent": 1252}}, {"model": "template.logicnode", "pk": 1252, "fields": {"state_transition": 285, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1253, "fields": {"state_transition": 286, "node_type": "N", "subcondition": null, "parent": 1256}}, {"model": "template.logicnode", "pk": 1254, "fields": {"state_transition": 286, "node_type": "S", "subcondition": 23, "parent": 1253}}, {"model": "template.logicnode", "pk": 1255, "fields": {"state_transition": 286, "node_type": "S", "subcondition": 11, "parent": 1256}}, {"model": "template.logicnode", "pk": 1256, "fields": {"state_transition": 286, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1257, "fields": {"state_transition": 287, "node_type": "N", "subcondition": null, "parent": 1260}}, {"model": "template.logicnode", "pk": 1258, "fields": {"state_transition": 287, "node_type": "S", "subcondition": 23, "parent": 1257}}, {"model": "template.logicnode", "pk": 1259, "fields": {"state_transition": 287, "node_type": "S", "subcondition": 17, "parent": 1260}}, {"model": "template.logicnode", "pk": 1260, "fields": {"state_transition": 287, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1261, "fields": {"state_transition": 288, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1262, "fields": {"state_transition": 288, "node_type": "S", "subcondition": 23, "parent": 1261}}, {"model": "template.logicnode", "pk": 1263, "fields": {"state_transition": 289, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1264, "fields": {"state_transition": 290, "node_type": "N", "subcondition": null, "parent": 1268}}, {"model": "template.logicnode", "pk": 1265, "fields": {"state_transition": 290, "node_type": "S", "subcondition": 23, "parent": 1264}}, {"model": "template.logicnode", "pk": 1266, "fields": {"state_transition": 290, "node_type": "S", "subcondition": 11, "parent": 1268}}, {"model": "template.logicnode", "pk": 1267, "fields": {"state_transition": 290, "node_type": "S", "subcondition": 17, "parent": 1268}}, {"model": "template.logicnode", "pk": 1268, "fields": {"state_transition": 290, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1269, "fields": {"state_transition": 291, "node_type": "N", "subcondition": null, "parent": 1272}}, {"model": "template.logicnode", "pk": 1270, "fields": {"state_transition": 291, "node_type": "S", "subcondition": 23, "parent": 1269}}, {"model": "template.logicnode", "pk": 1271, "fields": {"state_transition": 291, "node_type": "S", "subcondition": 11, "parent": 1272}}, {"model": "template.logicnode", "pk": 1272, "fields": {"state_transition": 291, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1273, "fields": {"state_transition": 292, "node_type": "N", "subcondition": null, "parent": 1276}}, {"model": "template.logicnode", "pk": 1274, "fields": {"state_transition": 292, "node_type": "S", "subcondition": 23, "parent": 1273}}, {"model": "template.logicnode", "pk": 1275, "fields": {"state_transition": 292, "node_type": "S", "subcondition": 17, "parent": 1276}}, {"model": "template.logicnode", "pk": 1276, "fields": {"state_transition": 292, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1277, "fields": {"state_transition": 293, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1278, "fields": {"state_transition": 293, "node_type": "S", "subcondition": 23, "parent": 1277}}, {"model": "template.logicnode", "pk": 1279, "fields": {"state_transition": 294, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1280, "fields": {"state_transition": 295, "node_type": "N", "subcondition": null, "parent": 1284}}, {"model": "template.logicnode", "pk": 1281, "fields": {"state_transition": 295, "node_type": "S", "subcondition": 23, "parent": 1280}}, {"model": "template.logicnode", "pk": 1282, "fields": {"state_transition": 295, "node_type": "S", "subcondition": 11, "parent": 1284}}, {"model": "template.logicnode", "pk": 1283, "fields": {"state_transition": 295, "node_type": "S", "subcondition": 17, "parent": 1284}}, {"model": "template.logicnode", "pk": 1284, "fields": {"state_transition": 295, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1285, "fields": {"state_transition": 296, "node_type": "N", "subcondition": null, "parent": 1288}}, {"model": "template.logicnode", "pk": 1286, "fields": {"state_transition": 296, "node_type": "S", "subcondition": 23, "parent": 1285}}, {"model": "template.logicnode", "pk": 1287, "fields": {"state_transition": 296, "node_type": "S", "subcondition": 11, "parent": 1288}}, {"model": "template.logicnode", "pk": 1288, "fields": {"state_transition": 296, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1289, "fields": {"state_transition": 297, "node_type": "N", "subcondition": null, "parent": 1292}}, {"model": "template.logicnode", "pk": 1290, "fields": {"state_transition": 297, "node_type": "S", "subcondition": 23, "parent": 1289}}, {"model": "template.logicnode", "pk": 1291, "fields": {"state_transition": 297, "node_type": "S", "subcondition": 17, "parent": 1292}}, {"model": "template.logicnode", "pk": 1292, "fields": {"state_transition": 297, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1293, "fields": {"state_transition": 298, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1294, "fields": {"state_transition": 298, "node_type": "S", "subcondition": 23, "parent": 1293}}, {"model": "template.logicnode", "pk": 1295, "fields": {"state_transition": 299, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1296, "fields": {"state_transition": 300, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1297, "fields": {"state_transition": 301, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1298, "fields": {"state_transition": 302, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1299, "fields": {"state_transition": 303, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1300, "fields": {"state_transition": 304, "node_type": "N", "subcondition": null, "parent": 1304}}, {"model": "template.logicnode", "pk": 1301, "fields": {"state_transition": 304, "node_type": "S", "subcondition": 23, "parent": 1300}}, {"model": "template.logicnode", "pk": 1302, "fields": {"state_transition": 304, "node_type": "S", "subcondition": 11, "parent": 1304}}, {"model": "template.logicnode", "pk": 1303, "fields": {"state_transition": 304, "node_type": "S", "subcondition": 17, "parent": 1304}}, {"model": "template.logicnode", "pk": 1304, "fields": {"state_transition": 304, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1305, "fields": {"state_transition": 305, "node_type": "N", "subcondition": null, "parent": 1308}}, {"model": "template.logicnode", "pk": 1306, "fields": {"state_transition": 305, "node_type": "S", "subcondition": 23, "parent": 1305}}, {"model": "template.logicnode", "pk": 1307, "fields": {"state_transition": 305, "node_type": "S", "subcondition": 11, "parent": 1308}}, {"model": "template.logicnode", "pk": 1308, "fields": {"state_transition": 305, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1309, "fields": {"state_transition": 306, "node_type": "N", "subcondition": null, "parent": 1312}}, {"model": "template.logicnode", "pk": 1310, "fields": {"state_transition": 306, "node_type": "S", "subcondition": 23, "parent": 1309}}, {"model": "template.logicnode", "pk": 1311, "fields": {"state_transition": 306, "node_type": "S", "subcondition": 17, "parent": 1312}}, {"model": "template.logicnode", "pk": 1312, "fields": {"state_transition": 306, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1313, "fields": {"state_transition": 307, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1314, "fields": {"state_transition": 307, "node_type": "S", "subcondition": 23, "parent": 1313}}, {"model": "template.logicnode", "pk": 1315, "fields": {"state_transition": 308, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1316, "fields": {"state_transition": 309, "node_type": "N", "subcondition": null, "parent": 1320}}, {"model": "template.logicnode", "pk": 1317, "fields": {"state_transition": 309, "node_type": "S", "subcondition": 23, "parent": 1316}}, {"model": "template.logicnode", "pk": 1318, "fields": {"state_transition": 309, "node_type": "S", "subcondition": 11, "parent": 1320}}, {"model": "template.logicnode", "pk": 1319, "fields": {"state_transition": 309, "node_type": "S", "subcondition": 17, "parent": 1320}}, {"model": "template.logicnode", "pk": 1320, "fields": {"state_transition": 309, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1321, "fields": {"state_transition": 310, "node_type": "N", "subcondition": null, "parent": 1324}}, {"model": "template.logicnode", "pk": 1322, "fields": {"state_transition": 310, "node_type": "S", "subcondition": 23, "parent": 1321}}, {"model": "template.logicnode", "pk": 1323, "fields": {"state_transition": 310, "node_type": "S", "subcondition": 11, "parent": 1324}}, {"model": "template.logicnode", "pk": 1324, "fields": {"state_transition": 310, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1325, "fields": {"state_transition": 311, "node_type": "N", "subcondition": null, "parent": 1328}}, {"model": "template.logicnode", "pk": 1326, "fields": {"state_transition": 311, "node_type": "S", "subcondition": 23, "parent": 1325}}, {"model": "template.logicnode", "pk": 1327, "fields": {"state_transition": 311, "node_type": "S", "subcondition": 17, "parent": 1328}}, {"model": "template.logicnode", "pk": 1328, "fields": {"state_transition": 311, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1329, "fields": {"state_transition": 312, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1330, "fields": {"state_transition": 312, "node_type": "S", "subcondition": 23, "parent": 1329}}, {"model": "template.logicnode", "pk": 1331, "fields": {"state_transition": 313, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1332, "fields": {"state_transition": 314, "node_type": "N", "subcondition": null, "parent": 1336}}, {"model": "template.logicnode", "pk": 1333, "fields": {"state_transition": 314, "node_type": "S", "subcondition": 23, "parent": 1332}}, {"model": "template.logicnode", "pk": 1334, "fields": {"state_transition": 314, "node_type": "S", "subcondition": 11, "parent": 1336}}, {"model": "template.logicnode", "pk": 1335, "fields": {"state_transition": 314, "node_type": "S", "subcondition": 17, "parent": 1336}}, {"model": "template.logicnode", "pk": 1336, "fields": {"state_transition": 314, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1337, "fields": {"state_transition": 315, "node_type": "N", "subcondition": null, "parent": 1340}}, {"model": "template.logicnode", "pk": 1338, "fields": {"state_transition": 315, "node_type": "S", "subcondition": 23, "parent": 1337}}, {"model": "template.logicnode", "pk": 1339, "fields": {"state_transition": 315, "node_type": "S", "subcondition": 11, "parent": 1340}}, {"model": "template.logicnode", "pk": 1340, "fields": {"state_transition": 315, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1341, "fields": {"state_transition": 316, "node_type": "N", "subcondition": null, "parent": 1344}}, {"model": "template.logicnode", "pk": 1342, "fields": {"state_transition": 316, "node_type": "S", "subcondition": 23, "parent": 1341}}, {"model": "template.logicnode", "pk": 1343, "fields": {"state_transition": 316, "node_type": "S", "subcondition": 17, "parent": 1344}}, {"model": "template.logicnode", "pk": 1344, "fields": {"state_transition": 316, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1345, "fields": {"state_transition": 317, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1346, "fields": {"state_transition": 317, "node_type": "S", "subcondition": 23, "parent": 1345}}, {"model": "template.logicnode", "pk": 1347, "fields": {"state_transition": 318, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1348, "fields": {"state_transition": 319, "node_type": "N", "subcondition": null, "parent": 1352}}, {"model": "template.logicnode", "pk": 1349, "fields": {"state_transition": 319, "node_type": "S", "subcondition": 23, "parent": 1348}}, {"model": "template.logicnode", "pk": 1350, "fields": {"state_transition": 319, "node_type": "S", "subcondition": 11, "parent": 1352}}, {"model": "template.logicnode", "pk": 1351, "fields": {"state_transition": 319, "node_type": "S", "subcondition": 17, "parent": 1352}}, {"model": "template.logicnode", "pk": 1352, "fields": {"state_transition": 319, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1353, "fields": {"state_transition": 320, "node_type": "N", "subcondition": null, "parent": 1356}}, {"model": "template.logicnode", "pk": 1354, "fields": {"state_transition": 320, "node_type": "S", "subcondition": 23, "parent": 1353}}, {"model": "template.logicnode", "pk": 1355, "fields": {"state_transition": 320, "node_type": "S", "subcondition": 11, "parent": 1356}}, {"model": "template.logicnode", "pk": 1356, "fields": {"state_transition": 320, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1357, "fields": {"state_transition": 321, "node_type": "N", "subcondition": null, "parent": 1360}}, {"model": "template.logicnode", "pk": 1358, "fields": {"state_transition": 321, "node_type": "S", "subcondition": 23, "parent": 1357}}, {"model": "template.logicnode", "pk": 1359, "fields": {"state_transition": 321, "node_type": "S", "subcondition": 17, "parent": 1360}}, {"model": "template.logicnode", "pk": 1360, "fields": {"state_transition": 321, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1361, "fields": {"state_transition": 322, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1362, "fields": {"state_transition": 322, "node_type": "S", "subcondition": 23, "parent": 1361}}, {"model": "template.logicnode", "pk": 1363, "fields": {"state_transition": 323, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1364, "fields": {"state_transition": 324, "node_type": "N", "subcondition": null, "parent": 1368}}, {"model": "template.logicnode", "pk": 1365, "fields": {"state_transition": 324, "node_type": "S", "subcondition": 23, "parent": 1364}}, {"model": "template.logicnode", "pk": 1366, "fields": {"state_transition": 324, "node_type": "S", "subcondition": 11, "parent": 1368}}, {"model": "template.logicnode", "pk": 1367, "fields": {"state_transition": 324, "node_type": "S", "subcondition": 17, "parent": 1368}}, {"model": "template.logicnode", "pk": 1368, "fields": {"state_transition": 324, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1369, "fields": {"state_transition": 325, "node_type": "N", "subcondition": null, "parent": 1372}}, {"model": "template.logicnode", "pk": 1370, "fields": {"state_transition": 325, "node_type": "S", "subcondition": 23, "parent": 1369}}, {"model": "template.logicnode", "pk": 1371, "fields": {"state_transition": 325, "node_type": "S", "subcondition": 11, "parent": 1372}}, {"model": "template.logicnode", "pk": 1372, "fields": {"state_transition": 325, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1373, "fields": {"state_transition": 326, "node_type": "N", "subcondition": null, "parent": 1376}}, {"model": "template.logicnode", "pk": 1374, "fields": {"state_transition": 326, "node_type": "S", "subcondition": 23, "parent": 1373}}, {"model": "template.logicnode", "pk": 1375, "fields": {"state_transition": 326, "node_type": "S", "subcondition": 17, "parent": 1376}}, {"model": "template.logicnode", "pk": 1376, "fields": {"state_transition": 326, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1377, "fields": {"state_transition": 327, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1378, "fields": {"state_transition": 327, "node_type": "S", "subcondition": 23, "parent": 1377}}, {"model": "template.logicnode", "pk": 1379, "fields": {"state_transition": 328, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1380, "fields": {"state_transition": 329, "node_type": "N", "subcondition": null, "parent": 1384}}, {"model": "template.logicnode", "pk": 1381, "fields": {"state_transition": 329, "node_type": "S", "subcondition": 23, "parent": 1380}}, {"model": "template.logicnode", "pk": 1382, "fields": {"state_transition": 329, "node_type": "S", "subcondition": 11, "parent": 1384}}, {"model": "template.logicnode", "pk": 1383, "fields": {"state_transition": 329, "node_type": "S", "subcondition": 17, "parent": 1384}}, {"model": "template.logicnode", "pk": 1384, "fields": {"state_transition": 329, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1385, "fields": {"state_transition": 330, "node_type": "N", "subcondition": null, "parent": 1388}}, {"model": "template.logicnode", "pk": 1386, "fields": {"state_transition": 330, "node_type": "S", "subcondition": 23, "parent": 1385}}, {"model": "template.logicnode", "pk": 1387, "fields": {"state_transition": 330, "node_type": "S", "subcondition": 11, "parent": 1388}}, {"model": "template.logicnode", "pk": 1388, "fields": {"state_transition": 330, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1389, "fields": {"state_transition": 331, "node_type": "N", "subcondition": null, "parent": 1392}}, {"model": "template.logicnode", "pk": 1390, "fields": {"state_transition": 331, "node_type": "S", "subcondition": 23, "parent": 1389}}, {"model": "template.logicnode", "pk": 1391, "fields": {"state_transition": 331, "node_type": "S", "subcondition": 17, "parent": 1392}}, {"model": "template.logicnode", "pk": 1392, "fields": {"state_transition": 331, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1393, "fields": {"state_transition": 332, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1394, "fields": {"state_transition": 332, "node_type": "S", "subcondition": 23, "parent": 1393}}, {"model": "template.logicnode", "pk": 1395, "fields": {"state_transition": 333, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1396, "fields": {"state_transition": 334, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1397, "fields": {"state_transition": 335, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1398, "fields": {"state_transition": 336, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1399, "fields": {"state_transition": 337, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1400, "fields": {"state_transition": 338, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1401, "fields": {"state_transition": 339, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1402, "fields": {"state_transition": 340, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1403, "fields": {"state_transition": 340, "node_type": "S", "subcondition": 24, "parent": 1402}}, {"model": "template.logicnode", "pk": 1404, "fields": {"state_transition": 341, "node_type": "N", "subcondition": null, "parent": 1408}}, {"model": "template.logicnode", "pk": 1405, "fields": {"state_transition": 341, "node_type": "S", "subcondition": 23, "parent": 1404}}, {"model": "template.logicnode", "pk": 1406, "fields": {"state_transition": 341, "node_type": "S", "subcondition": 3, "parent": 1408}}, {"model": "template.logicnode", "pk": 1407, "fields": {"state_transition": 341, "node_type": "S", "subcondition": 19, "parent": 1408}}, {"model": "template.logicnode", "pk": 1408, "fields": {"state_transition": 341, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1409, "fields": {"state_transition": 342, "node_type": "N", "subcondition": null, "parent": 1413}}, {"model": "template.logicnode", "pk": 1410, "fields": {"state_transition": 342, "node_type": "S", "subcondition": 23, "parent": 1409}}, {"model": "template.logicnode", "pk": 1411, "fields": {"state_transition": 342, "node_type": "S", "subcondition": 3, "parent": 1413}}, {"model": "template.logicnode", "pk": 1412, "fields": {"state_transition": 342, "node_type": "S", "subcondition": 20, "parent": 1413}}, {"model": "template.logicnode", "pk": 1413, "fields": {"state_transition": 342, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1414, "fields": {"state_transition": 343, "node_type": "N", "subcondition": null, "parent": 1418}}, {"model": "template.logicnode", "pk": 1415, "fields": {"state_transition": 343, "node_type": "S", "subcondition": 23, "parent": 1414}}, {"model": "template.logicnode", "pk": 1416, "fields": {"state_transition": 343, "node_type": "S", "subcondition": 3, "parent": 1418}}, {"model": "template.logicnode", "pk": 1417, "fields": {"state_transition": 343, "node_type": "S", "subcondition": 21, "parent": 1418}}, {"model": "template.logicnode", "pk": 1418, "fields": {"state_transition": 343, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1419, "fields": {"state_transition": 344, "node_type": "N", "subcondition": null, "parent": 1423}}, {"model": "template.logicnode", "pk": 1420, "fields": {"state_transition": 344, "node_type": "S", "subcondition": 23, "parent": 1419}}, {"model": "template.logicnode", "pk": 1421, "fields": {"state_transition": 344, "node_type": "S", "subcondition": 3, "parent": 1423}}, {"model": "template.logicnode", "pk": 1422, "fields": {"state_transition": 344, "node_type": "S", "subcondition": 22, "parent": 1423}}, {"model": "template.logicnode", "pk": 1423, "fields": {"state_transition": 344, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1424, "fields": {"state_transition": 345, "node_type": "N", "subcondition": null, "parent": 1428}}, {"model": "template.logicnode", "pk": 1425, "fields": {"state_transition": 345, "node_type": "S", "subcondition": 23, "parent": 1424}}, {"model": "template.logicnode", "pk": 1426, "fields": {"state_transition": 345, "node_type": "S", "subcondition": 4, "parent": 1428}}, {"model": "template.logicnode", "pk": 1427, "fields": {"state_transition": 345, "node_type": "S", "subcondition": 19, "parent": 1428}}, {"model": "template.logicnode", "pk": 1428, "fields": {"state_transition": 345, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1429, "fields": {"state_transition": 346, "node_type": "N", "subcondition": null, "parent": 1433}}, {"model": "template.logicnode", "pk": 1430, "fields": {"state_transition": 346, "node_type": "S", "subcondition": 23, "parent": 1429}}, {"model": "template.logicnode", "pk": 1431, "fields": {"state_transition": 346, "node_type": "S", "subcondition": 4, "parent": 1433}}, {"model": "template.logicnode", "pk": 1432, "fields": {"state_transition": 346, "node_type": "S", "subcondition": 20, "parent": 1433}}, {"model": "template.logicnode", "pk": 1433, "fields": {"state_transition": 346, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1434, "fields": {"state_transition": 347, "node_type": "N", "subcondition": null, "parent": 1438}}, {"model": "template.logicnode", "pk": 1435, "fields": {"state_transition": 347, "node_type": "S", "subcondition": 23, "parent": 1434}}, {"model": "template.logicnode", "pk": 1436, "fields": {"state_transition": 347, "node_type": "S", "subcondition": 4, "parent": 1438}}, {"model": "template.logicnode", "pk": 1437, "fields": {"state_transition": 347, "node_type": "S", "subcondition": 21, "parent": 1438}}, {"model": "template.logicnode", "pk": 1438, "fields": {"state_transition": 347, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1439, "fields": {"state_transition": 348, "node_type": "N", "subcondition": null, "parent": 1443}}, {"model": "template.logicnode", "pk": 1440, "fields": {"state_transition": 348, "node_type": "S", "subcondition": 23, "parent": 1439}}, {"model": "template.logicnode", "pk": 1441, "fields": {"state_transition": 348, "node_type": "S", "subcondition": 4, "parent": 1443}}, {"model": "template.logicnode", "pk": 1442, "fields": {"state_transition": 348, "node_type": "S", "subcondition": 22, "parent": 1443}}, {"model": "template.logicnode", "pk": 1443, "fields": {"state_transition": 348, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1444, "fields": {"state_transition": 349, "node_type": "N", "subcondition": null, "parent": 1448}}, {"model": "template.logicnode", "pk": 1445, "fields": {"state_transition": 349, "node_type": "S", "subcondition": 23, "parent": 1444}}, {"model": "template.logicnode", "pk": 1446, "fields": {"state_transition": 349, "node_type": "S", "subcondition": 5, "parent": 1448}}, {"model": "template.logicnode", "pk": 1447, "fields": {"state_transition": 349, "node_type": "S", "subcondition": 19, "parent": 1448}}, {"model": "template.logicnode", "pk": 1448, "fields": {"state_transition": 349, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1449, "fields": {"state_transition": 350, "node_type": "N", "subcondition": null, "parent": 1453}}, {"model": "template.logicnode", "pk": 1450, "fields": {"state_transition": 350, "node_type": "S", "subcondition": 23, "parent": 1449}}, {"model": "template.logicnode", "pk": 1451, "fields": {"state_transition": 350, "node_type": "S", "subcondition": 5, "parent": 1453}}, {"model": "template.logicnode", "pk": 1452, "fields": {"state_transition": 350, "node_type": "S", "subcondition": 20, "parent": 1453}}, {"model": "template.logicnode", "pk": 1453, "fields": {"state_transition": 350, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1454, "fields": {"state_transition": 351, "node_type": "N", "subcondition": null, "parent": 1458}}, {"model": "template.logicnode", "pk": 1455, "fields": {"state_transition": 351, "node_type": "S", "subcondition": 23, "parent": 1454}}, {"model": "template.logicnode", "pk": 1456, "fields": {"state_transition": 351, "node_type": "S", "subcondition": 5, "parent": 1458}}, {"model": "template.logicnode", "pk": 1457, "fields": {"state_transition": 351, "node_type": "S", "subcondition": 21, "parent": 1458}}, {"model": "template.logicnode", "pk": 1458, "fields": {"state_transition": 351, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1459, "fields": {"state_transition": 352, "node_type": "N", "subcondition": null, "parent": 1463}}, {"model": "template.logicnode", "pk": 1460, "fields": {"state_transition": 352, "node_type": "S", "subcondition": 23, "parent": 1459}}, {"model": "template.logicnode", "pk": 1461, "fields": {"state_transition": 352, "node_type": "S", "subcondition": 5, "parent": 1463}}, {"model": "template.logicnode", "pk": 1462, "fields": {"state_transition": 352, "node_type": "S", "subcondition": 22, "parent": 1463}}, {"model": "template.logicnode", "pk": 1463, "fields": {"state_transition": 352, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1464, "fields": {"state_transition": 353, "node_type": "N", "subcondition": null, "parent": 1468}}, {"model": "template.logicnode", "pk": 1465, "fields": {"state_transition": 353, "node_type": "S", "subcondition": 23, "parent": 1464}}, {"model": "template.logicnode", "pk": 1466, "fields": {"state_transition": 353, "node_type": "S", "subcondition": 6, "parent": 1468}}, {"model": "template.logicnode", "pk": 1467, "fields": {"state_transition": 353, "node_type": "S", "subcondition": 19, "parent": 1468}}, {"model": "template.logicnode", "pk": 1468, "fields": {"state_transition": 353, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1469, "fields": {"state_transition": 354, "node_type": "N", "subcondition": null, "parent": 1473}}, {"model": "template.logicnode", "pk": 1470, "fields": {"state_transition": 354, "node_type": "S", "subcondition": 23, "parent": 1469}}, {"model": "template.logicnode", "pk": 1471, "fields": {"state_transition": 354, "node_type": "S", "subcondition": 6, "parent": 1473}}, {"model": "template.logicnode", "pk": 1472, "fields": {"state_transition": 354, "node_type": "S", "subcondition": 20, "parent": 1473}}, {"model": "template.logicnode", "pk": 1473, "fields": {"state_transition": 354, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1474, "fields": {"state_transition": 355, "node_type": "N", "subcondition": null, "parent": 1478}}, {"model": "template.logicnode", "pk": 1475, "fields": {"state_transition": 355, "node_type": "S", "subcondition": 23, "parent": 1474}}, {"model": "template.logicnode", "pk": 1476, "fields": {"state_transition": 355, "node_type": "S", "subcondition": 6, "parent": 1478}}, {"model": "template.logicnode", "pk": 1477, "fields": {"state_transition": 355, "node_type": "S", "subcondition": 21, "parent": 1478}}, {"model": "template.logicnode", "pk": 1478, "fields": {"state_transition": 355, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1479, "fields": {"state_transition": 356, "node_type": "N", "subcondition": null, "parent": 1483}}, {"model": "template.logicnode", "pk": 1480, "fields": {"state_transition": 356, "node_type": "S", "subcondition": 23, "parent": 1479}}, {"model": "template.logicnode", "pk": 1481, "fields": {"state_transition": 356, "node_type": "S", "subcondition": 6, "parent": 1483}}, {"model": "template.logicnode", "pk": 1482, "fields": {"state_transition": 356, "node_type": "S", "subcondition": 22, "parent": 1483}}, {"model": "template.logicnode", "pk": 1483, "fields": {"state_transition": 356, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1484, "fields": {"state_transition": 357, "node_type": "S", "subcondition": 23, "parent": 1487}}, {"model": "template.logicnode", "pk": 1485, "fields": {"state_transition": 357, "node_type": "S", "subcondition": 3, "parent": 1487}}, {"model": "template.logicnode", "pk": 1486, "fields": {"state_transition": 357, "node_type": "S", "subcondition": 19, "parent": 1487}}, {"model": "template.logicnode", "pk": 1487, "fields": {"state_transition": 357, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1488, "fields": {"state_transition": 358, "node_type": "S", "subcondition": 23, "parent": 1491}}, {"model": "template.logicnode", "pk": 1489, "fields": {"state_transition": 358, "node_type": "S", "subcondition": 3, "parent": 1491}}, {"model": "template.logicnode", "pk": 1490, "fields": {"state_transition": 358, "node_type": "S", "subcondition": 20, "parent": 1491}}, {"model": "template.logicnode", "pk": 1491, "fields": {"state_transition": 358, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1492, "fields": {"state_transition": 359, "node_type": "S", "subcondition": 23, "parent": 1495}}, {"model": "template.logicnode", "pk": 1493, "fields": {"state_transition": 359, "node_type": "S", "subcondition": 3, "parent": 1495}}, {"model": "template.logicnode", "pk": 1494, "fields": {"state_transition": 359, "node_type": "S", "subcondition": 21, "parent": 1495}}, {"model": "template.logicnode", "pk": 1495, "fields": {"state_transition": 359, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1496, "fields": {"state_transition": 360, "node_type": "S", "subcondition": 23, "parent": 1499}}, {"model": "template.logicnode", "pk": 1497, "fields": {"state_transition": 360, "node_type": "S", "subcondition": 3, "parent": 1499}}, {"model": "template.logicnode", "pk": 1498, "fields": {"state_transition": 360, "node_type": "S", "subcondition": 22, "parent": 1499}}, {"model": "template.logicnode", "pk": 1499, "fields": {"state_transition": 360, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1500, "fields": {"state_transition": 361, "node_type": "S", "subcondition": 23, "parent": 1503}}, {"model": "template.logicnode", "pk": 1501, "fields": {"state_transition": 361, "node_type": "S", "subcondition": 4, "parent": 1503}}, {"model": "template.logicnode", "pk": 1502, "fields": {"state_transition": 361, "node_type": "S", "subcondition": 19, "parent": 1503}}, {"model": "template.logicnode", "pk": 1503, "fields": {"state_transition": 361, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1504, "fields": {"state_transition": 362, "node_type": "S", "subcondition": 23, "parent": 1507}}, {"model": "template.logicnode", "pk": 1505, "fields": {"state_transition": 362, "node_type": "S", "subcondition": 4, "parent": 1507}}, {"model": "template.logicnode", "pk": 1506, "fields": {"state_transition": 362, "node_type": "S", "subcondition": 20, "parent": 1507}}, {"model": "template.logicnode", "pk": 1507, "fields": {"state_transition": 362, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1508, "fields": {"state_transition": 363, "node_type": "S", "subcondition": 23, "parent": 1511}}, {"model": "template.logicnode", "pk": 1509, "fields": {"state_transition": 363, "node_type": "S", "subcondition": 4, "parent": 1511}}, {"model": "template.logicnode", "pk": 1510, "fields": {"state_transition": 363, "node_type": "S", "subcondition": 21, "parent": 1511}}, {"model": "template.logicnode", "pk": 1511, "fields": {"state_transition": 363, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1512, "fields": {"state_transition": 364, "node_type": "S", "subcondition": 23, "parent": 1515}}, {"model": "template.logicnode", "pk": 1513, "fields": {"state_transition": 364, "node_type": "S", "subcondition": 4, "parent": 1515}}, {"model": "template.logicnode", "pk": 1514, "fields": {"state_transition": 364, "node_type": "S", "subcondition": 22, "parent": 1515}}, {"model": "template.logicnode", "pk": 1515, "fields": {"state_transition": 364, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1516, "fields": {"state_transition": 365, "node_type": "S", "subcondition": 23, "parent": 1519}}, {"model": "template.logicnode", "pk": 1517, "fields": {"state_transition": 365, "node_type": "S", "subcondition": 5, "parent": 1519}}, {"model": "template.logicnode", "pk": 1518, "fields": {"state_transition": 365, "node_type": "S", "subcondition": 19, "parent": 1519}}, {"model": "template.logicnode", "pk": 1519, "fields": {"state_transition": 365, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1520, "fields": {"state_transition": 366, "node_type": "S", "subcondition": 23, "parent": 1523}}, {"model": "template.logicnode", "pk": 1521, "fields": {"state_transition": 366, "node_type": "S", "subcondition": 5, "parent": 1523}}, {"model": "template.logicnode", "pk": 1522, "fields": {"state_transition": 366, "node_type": "S", "subcondition": 20, "parent": 1523}}, {"model": "template.logicnode", "pk": 1523, "fields": {"state_transition": 366, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1524, "fields": {"state_transition": 367, "node_type": "S", "subcondition": 23, "parent": 1527}}, {"model": "template.logicnode", "pk": 1525, "fields": {"state_transition": 367, "node_type": "S", "subcondition": 5, "parent": 1527}}, {"model": "template.logicnode", "pk": 1526, "fields": {"state_transition": 367, "node_type": "S", "subcondition": 21, "parent": 1527}}, {"model": "template.logicnode", "pk": 1527, "fields": {"state_transition": 367, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1528, "fields": {"state_transition": 368, "node_type": "S", "subcondition": 23, "parent": 1531}}, {"model": "template.logicnode", "pk": 1529, "fields": {"state_transition": 368, "node_type": "S", "subcondition": 5, "parent": 1531}}, {"model": "template.logicnode", "pk": 1530, "fields": {"state_transition": 368, "node_type": "S", "subcondition": 22, "parent": 1531}}, {"model": "template.logicnode", "pk": 1531, "fields": {"state_transition": 368, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1532, "fields": {"state_transition": 369, "node_type": "S", "subcondition": 23, "parent": 1535}}, {"model": "template.logicnode", "pk": 1533, "fields": {"state_transition": 369, "node_type": "S", "subcondition": 6, "parent": 1535}}, {"model": "template.logicnode", "pk": 1534, "fields": {"state_transition": 369, "node_type": "S", "subcondition": 19, "parent": 1535}}, {"model": "template.logicnode", "pk": 1535, "fields": {"state_transition": 369, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1536, "fields": {"state_transition": 370, "node_type": "S", "subcondition": 23, "parent": 1539}}, {"model": "template.logicnode", "pk": 1537, "fields": {"state_transition": 370, "node_type": "S", "subcondition": 6, "parent": 1539}}, {"model": "template.logicnode", "pk": 1538, "fields": {"state_transition": 370, "node_type": "S", "subcondition": 20, "parent": 1539}}, {"model": "template.logicnode", "pk": 1539, "fields": {"state_transition": 370, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1540, "fields": {"state_transition": 371, "node_type": "S", "subcondition": 23, "parent": 1543}}, {"model": "template.logicnode", "pk": 1541, "fields": {"state_transition": 371, "node_type": "S", "subcondition": 6, "parent": 1543}}, {"model": "template.logicnode", "pk": 1542, "fields": {"state_transition": 371, "node_type": "S", "subcondition": 21, "parent": 1543}}, {"model": "template.logicnode", "pk": 1543, "fields": {"state_transition": 371, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1544, "fields": {"state_transition": 372, "node_type": "S", "subcondition": 23, "parent": 1547}}, {"model": "template.logicnode", "pk": 1545, "fields": {"state_transition": 372, "node_type": "S", "subcondition": 6, "parent": 1547}}, {"model": "template.logicnode", "pk": 1546, "fields": {"state_transition": 372, "node_type": "S", "subcondition": 22, "parent": 1547}}, {"model": "template.logicnode", "pk": 1547, "fields": {"state_transition": 372, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1548, "fields": {"state_transition": 373, "node_type": "N", "subcondition": null, "parent": 1552}}, {"model": "template.logicnode", "pk": 1549, "fields": {"state_transition": 373, "node_type": "S", "subcondition": 23, "parent": 1548}}, {"model": "template.logicnode", "pk": 1550, "fields": {"state_transition": 373, "node_type": "S", "subcondition": 3, "parent": 1552}}, {"model": "template.logicnode", "pk": 1551, "fields": {"state_transition": 373, "node_type": "S", "subcondition": 19, "parent": 1552}}, {"model": "template.logicnode", "pk": 1552, "fields": {"state_transition": 373, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1553, "fields": {"state_transition": 374, "node_type": "N", "subcondition": null, "parent": 1557}}, {"model": "template.logicnode", "pk": 1554, "fields": {"state_transition": 374, "node_type": "S", "subcondition": 23, "parent": 1553}}, {"model": "template.logicnode", "pk": 1555, "fields": {"state_transition": 374, "node_type": "S", "subcondition": 3, "parent": 1557}}, {"model": "template.logicnode", "pk": 1556, "fields": {"state_transition": 374, "node_type": "S", "subcondition": 20, "parent": 1557}}, {"model": "template.logicnode", "pk": 1557, "fields": {"state_transition": 374, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1558, "fields": {"state_transition": 375, "node_type": "N", "subcondition": null, "parent": 1562}}, {"model": "template.logicnode", "pk": 1559, "fields": {"state_transition": 375, "node_type": "S", "subcondition": 23, "parent": 1558}}, {"model": "template.logicnode", "pk": 1560, "fields": {"state_transition": 375, "node_type": "S", "subcondition": 3, "parent": 1562}}, {"model": "template.logicnode", "pk": 1561, "fields": {"state_transition": 375, "node_type": "S", "subcondition": 21, "parent": 1562}}, {"model": "template.logicnode", "pk": 1562, "fields": {"state_transition": 375, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1563, "fields": {"state_transition": 376, "node_type": "N", "subcondition": null, "parent": 1567}}, {"model": "template.logicnode", "pk": 1564, "fields": {"state_transition": 376, "node_type": "S", "subcondition": 23, "parent": 1563}}, {"model": "template.logicnode", "pk": 1565, "fields": {"state_transition": 376, "node_type": "S", "subcondition": 3, "parent": 1567}}, {"model": "template.logicnode", "pk": 1566, "fields": {"state_transition": 376, "node_type": "S", "subcondition": 22, "parent": 1567}}, {"model": "template.logicnode", "pk": 1567, "fields": {"state_transition": 376, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1568, "fields": {"state_transition": 377, "node_type": "N", "subcondition": null, "parent": 1572}}, {"model": "template.logicnode", "pk": 1569, "fields": {"state_transition": 377, "node_type": "S", "subcondition": 23, "parent": 1568}}, {"model": "template.logicnode", "pk": 1570, "fields": {"state_transition": 377, "node_type": "S", "subcondition": 4, "parent": 1572}}, {"model": "template.logicnode", "pk": 1571, "fields": {"state_transition": 377, "node_type": "S", "subcondition": 19, "parent": 1572}}, {"model": "template.logicnode", "pk": 1572, "fields": {"state_transition": 377, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1573, "fields": {"state_transition": 378, "node_type": "N", "subcondition": null, "parent": 1577}}, {"model": "template.logicnode", "pk": 1574, "fields": {"state_transition": 378, "node_type": "S", "subcondition": 23, "parent": 1573}}, {"model": "template.logicnode", "pk": 1575, "fields": {"state_transition": 378, "node_type": "S", "subcondition": 4, "parent": 1577}}, {"model": "template.logicnode", "pk": 1576, "fields": {"state_transition": 378, "node_type": "S", "subcondition": 20, "parent": 1577}}, {"model": "template.logicnode", "pk": 1577, "fields": {"state_transition": 378, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1578, "fields": {"state_transition": 379, "node_type": "N", "subcondition": null, "parent": 1582}}, {"model": "template.logicnode", "pk": 1579, "fields": {"state_transition": 379, "node_type": "S", "subcondition": 23, "parent": 1578}}, {"model": "template.logicnode", "pk": 1580, "fields": {"state_transition": 379, "node_type": "S", "subcondition": 4, "parent": 1582}}, {"model": "template.logicnode", "pk": 1581, "fields": {"state_transition": 379, "node_type": "S", "subcondition": 21, "parent": 1582}}, {"model": "template.logicnode", "pk": 1582, "fields": {"state_transition": 379, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1583, "fields": {"state_transition": 380, "node_type": "N", "subcondition": null, "parent": 1587}}, {"model": "template.logicnode", "pk": 1584, "fields": {"state_transition": 380, "node_type": "S", "subcondition": 23, "parent": 1583}}, {"model": "template.logicnode", "pk": 1585, "fields": {"state_transition": 380, "node_type": "S", "subcondition": 4, "parent": 1587}}, {"model": "template.logicnode", "pk": 1586, "fields": {"state_transition": 380, "node_type": "S", "subcondition": 22, "parent": 1587}}, {"model": "template.logicnode", "pk": 1587, "fields": {"state_transition": 380, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1588, "fields": {"state_transition": 381, "node_type": "N", "subcondition": null, "parent": 1592}}, {"model": "template.logicnode", "pk": 1589, "fields": {"state_transition": 381, "node_type": "S", "subcondition": 23, "parent": 1588}}, {"model": "template.logicnode", "pk": 1590, "fields": {"state_transition": 381, "node_type": "S", "subcondition": 5, "parent": 1592}}, {"model": "template.logicnode", "pk": 1591, "fields": {"state_transition": 381, "node_type": "S", "subcondition": 19, "parent": 1592}}, {"model": "template.logicnode", "pk": 1592, "fields": {"state_transition": 381, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1593, "fields": {"state_transition": 382, "node_type": "N", "subcondition": null, "parent": 1597}}, {"model": "template.logicnode", "pk": 1594, "fields": {"state_transition": 382, "node_type": "S", "subcondition": 23, "parent": 1593}}, {"model": "template.logicnode", "pk": 1595, "fields": {"state_transition": 382, "node_type": "S", "subcondition": 5, "parent": 1597}}, {"model": "template.logicnode", "pk": 1596, "fields": {"state_transition": 382, "node_type": "S", "subcondition": 20, "parent": 1597}}, {"model": "template.logicnode", "pk": 1597, "fields": {"state_transition": 382, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1598, "fields": {"state_transition": 383, "node_type": "N", "subcondition": null, "parent": 1602}}, {"model": "template.logicnode", "pk": 1599, "fields": {"state_transition": 383, "node_type": "S", "subcondition": 23, "parent": 1598}}, {"model": "template.logicnode", "pk": 1600, "fields": {"state_transition": 383, "node_type": "S", "subcondition": 5, "parent": 1602}}, {"model": "template.logicnode", "pk": 1601, "fields": {"state_transition": 383, "node_type": "S", "subcondition": 21, "parent": 1602}}, {"model": "template.logicnode", "pk": 1602, "fields": {"state_transition": 383, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1603, "fields": {"state_transition": 384, "node_type": "N", "subcondition": null, "parent": 1607}}, {"model": "template.logicnode", "pk": 1604, "fields": {"state_transition": 384, "node_type": "S", "subcondition": 23, "parent": 1603}}, {"model": "template.logicnode", "pk": 1605, "fields": {"state_transition": 384, "node_type": "S", "subcondition": 5, "parent": 1607}}, {"model": "template.logicnode", "pk": 1606, "fields": {"state_transition": 384, "node_type": "S", "subcondition": 22, "parent": 1607}}, {"model": "template.logicnode", "pk": 1607, "fields": {"state_transition": 384, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1608, "fields": {"state_transition": 385, "node_type": "N", "subcondition": null, "parent": 1612}}, {"model": "template.logicnode", "pk": 1609, "fields": {"state_transition": 385, "node_type": "S", "subcondition": 23, "parent": 1608}}, {"model": "template.logicnode", "pk": 1610, "fields": {"state_transition": 385, "node_type": "S", "subcondition": 6, "parent": 1612}}, {"model": "template.logicnode", "pk": 1611, "fields": {"state_transition": 385, "node_type": "S", "subcondition": 19, "parent": 1612}}, {"model": "template.logicnode", "pk": 1612, "fields": {"state_transition": 385, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1613, "fields": {"state_transition": 386, "node_type": "N", "subcondition": null, "parent": 1617}}, {"model": "template.logicnode", "pk": 1614, "fields": {"state_transition": 386, "node_type": "S", "subcondition": 23, "parent": 1613}}, {"model": "template.logicnode", "pk": 1615, "fields": {"state_transition": 386, "node_type": "S", "subcondition": 6, "parent": 1617}}, {"model": "template.logicnode", "pk": 1616, "fields": {"state_transition": 386, "node_type": "S", "subcondition": 20, "parent": 1617}}, {"model": "template.logicnode", "pk": 1617, "fields": {"state_transition": 386, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1618, "fields": {"state_transition": 387, "node_type": "N", "subcondition": null, "parent": 1622}}, {"model": "template.logicnode", "pk": 1619, "fields": {"state_transition": 387, "node_type": "S", "subcondition": 23, "parent": 1618}}, {"model": "template.logicnode", "pk": 1620, "fields": {"state_transition": 387, "node_type": "S", "subcondition": 6, "parent": 1622}}, {"model": "template.logicnode", "pk": 1621, "fields": {"state_transition": 387, "node_type": "S", "subcondition": 21, "parent": 1622}}, {"model": "template.logicnode", "pk": 1622, "fields": {"state_transition": 387, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1623, "fields": {"state_transition": 388, "node_type": "N", "subcondition": null, "parent": 1627}}, {"model": "template.logicnode", "pk": 1624, "fields": {"state_transition": 388, "node_type": "S", "subcondition": 23, "parent": 1623}}, {"model": "template.logicnode", "pk": 1625, "fields": {"state_transition": 388, "node_type": "S", "subcondition": 6, "parent": 1627}}, {"model": "template.logicnode", "pk": 1626, "fields": {"state_transition": 388, "node_type": "S", "subcondition": 22, "parent": 1627}}, {"model": "template.logicnode", "pk": 1627, "fields": {"state_transition": 388, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1628, "fields": {"state_transition": 389, "node_type": "S", "subcondition": 23, "parent": 1631}}, {"model": "template.logicnode", "pk": 1629, "fields": {"state_transition": 389, "node_type": "S", "subcondition": 3, "parent": 1631}}, {"model": "template.logicnode", "pk": 1630, "fields": {"state_transition": 389, "node_type": "S", "subcondition": 19, "parent": 1631}}, {"model": "template.logicnode", "pk": 1631, "fields": {"state_transition": 389, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1632, "fields": {"state_transition": 390, "node_type": "S", "subcondition": 23, "parent": 1635}}, {"model": "template.logicnode", "pk": 1633, "fields": {"state_transition": 390, "node_type": "S", "subcondition": 3, "parent": 1635}}, {"model": "template.logicnode", "pk": 1634, "fields": {"state_transition": 390, "node_type": "S", "subcondition": 20, "parent": 1635}}, {"model": "template.logicnode", "pk": 1635, "fields": {"state_transition": 390, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1636, "fields": {"state_transition": 391, "node_type": "S", "subcondition": 23, "parent": 1639}}, {"model": "template.logicnode", "pk": 1637, "fields": {"state_transition": 391, "node_type": "S", "subcondition": 3, "parent": 1639}}, {"model": "template.logicnode", "pk": 1638, "fields": {"state_transition": 391, "node_type": "S", "subcondition": 21, "parent": 1639}}, {"model": "template.logicnode", "pk": 1639, "fields": {"state_transition": 391, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1640, "fields": {"state_transition": 392, "node_type": "S", "subcondition": 23, "parent": 1643}}, {"model": "template.logicnode", "pk": 1641, "fields": {"state_transition": 392, "node_type": "S", "subcondition": 3, "parent": 1643}}, {"model": "template.logicnode", "pk": 1642, "fields": {"state_transition": 392, "node_type": "S", "subcondition": 22, "parent": 1643}}, {"model": "template.logicnode", "pk": 1643, "fields": {"state_transition": 392, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1644, "fields": {"state_transition": 393, "node_type": "S", "subcondition": 23, "parent": 1647}}, {"model": "template.logicnode", "pk": 1645, "fields": {"state_transition": 393, "node_type": "S", "subcondition": 4, "parent": 1647}}, {"model": "template.logicnode", "pk": 1646, "fields": {"state_transition": 393, "node_type": "S", "subcondition": 19, "parent": 1647}}, {"model": "template.logicnode", "pk": 1647, "fields": {"state_transition": 393, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1648, "fields": {"state_transition": 394, "node_type": "S", "subcondition": 23, "parent": 1651}}, {"model": "template.logicnode", "pk": 1649, "fields": {"state_transition": 394, "node_type": "S", "subcondition": 4, "parent": 1651}}, {"model": "template.logicnode", "pk": 1650, "fields": {"state_transition": 394, "node_type": "S", "subcondition": 20, "parent": 1651}}, {"model": "template.logicnode", "pk": 1651, "fields": {"state_transition": 394, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1652, "fields": {"state_transition": 395, "node_type": "S", "subcondition": 23, "parent": 1655}}, {"model": "template.logicnode", "pk": 1653, "fields": {"state_transition": 395, "node_type": "S", "subcondition": 4, "parent": 1655}}, {"model": "template.logicnode", "pk": 1654, "fields": {"state_transition": 395, "node_type": "S", "subcondition": 21, "parent": 1655}}, {"model": "template.logicnode", "pk": 1655, "fields": {"state_transition": 395, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1656, "fields": {"state_transition": 396, "node_type": "S", "subcondition": 23, "parent": 1659}}, {"model": "template.logicnode", "pk": 1657, "fields": {"state_transition": 396, "node_type": "S", "subcondition": 4, "parent": 1659}}, {"model": "template.logicnode", "pk": 1658, "fields": {"state_transition": 396, "node_type": "S", "subcondition": 22, "parent": 1659}}, {"model": "template.logicnode", "pk": 1659, "fields": {"state_transition": 396, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1660, "fields": {"state_transition": 397, "node_type": "S", "subcondition": 23, "parent": 1663}}, {"model": "template.logicnode", "pk": 1661, "fields": {"state_transition": 397, "node_type": "S", "subcondition": 5, "parent": 1663}}, {"model": "template.logicnode", "pk": 1662, "fields": {"state_transition": 397, "node_type": "S", "subcondition": 19, "parent": 1663}}, {"model": "template.logicnode", "pk": 1663, "fields": {"state_transition": 397, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1664, "fields": {"state_transition": 398, "node_type": "S", "subcondition": 23, "parent": 1667}}, {"model": "template.logicnode", "pk": 1665, "fields": {"state_transition": 398, "node_type": "S", "subcondition": 5, "parent": 1667}}, {"model": "template.logicnode", "pk": 1666, "fields": {"state_transition": 398, "node_type": "S", "subcondition": 20, "parent": 1667}}, {"model": "template.logicnode", "pk": 1667, "fields": {"state_transition": 398, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1668, "fields": {"state_transition": 399, "node_type": "S", "subcondition": 23, "parent": 1671}}, {"model": "template.logicnode", "pk": 1669, "fields": {"state_transition": 399, "node_type": "S", "subcondition": 5, "parent": 1671}}, {"model": "template.logicnode", "pk": 1670, "fields": {"state_transition": 399, "node_type": "S", "subcondition": 21, "parent": 1671}}, {"model": "template.logicnode", "pk": 1671, "fields": {"state_transition": 399, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1672, "fields": {"state_transition": 400, "node_type": "S", "subcondition": 23, "parent": 1675}}, {"model": "template.logicnode", "pk": 1673, "fields": {"state_transition": 400, "node_type": "S", "subcondition": 5, "parent": 1675}}, {"model": "template.logicnode", "pk": 1674, "fields": {"state_transition": 400, "node_type": "S", "subcondition": 22, "parent": 1675}}, {"model": "template.logicnode", "pk": 1675, "fields": {"state_transition": 400, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1676, "fields": {"state_transition": 401, "node_type": "S", "subcondition": 23, "parent": 1679}}, {"model": "template.logicnode", "pk": 1677, "fields": {"state_transition": 401, "node_type": "S", "subcondition": 6, "parent": 1679}}, {"model": "template.logicnode", "pk": 1678, "fields": {"state_transition": 401, "node_type": "S", "subcondition": 19, "parent": 1679}}, {"model": "template.logicnode", "pk": 1679, "fields": {"state_transition": 401, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1680, "fields": {"state_transition": 402, "node_type": "S", "subcondition": 23, "parent": 1683}}, {"model": "template.logicnode", "pk": 1681, "fields": {"state_transition": 402, "node_type": "S", "subcondition": 6, "parent": 1683}}, {"model": "template.logicnode", "pk": 1682, "fields": {"state_transition": 402, "node_type": "S", "subcondition": 20, "parent": 1683}}, {"model": "template.logicnode", "pk": 1683, "fields": {"state_transition": 402, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1684, "fields": {"state_transition": 403, "node_type": "S", "subcondition": 23, "parent": 1687}}, {"model": "template.logicnode", "pk": 1685, "fields": {"state_transition": 403, "node_type": "S", "subcondition": 6, "parent": 1687}}, {"model": "template.logicnode", "pk": 1686, "fields": {"state_transition": 403, "node_type": "S", "subcondition": 21, "parent": 1687}}, {"model": "template.logicnode", "pk": 1687, "fields": {"state_transition": 403, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1688, "fields": {"state_transition": 404, "node_type": "S", "subcondition": 23, "parent": 1691}}, {"model": "template.logicnode", "pk": 1689, "fields": {"state_transition": 404, "node_type": "S", "subcondition": 6, "parent": 1691}}, {"model": "template.logicnode", "pk": 1690, "fields": {"state_transition": 404, "node_type": "S", "subcondition": 22, "parent": 1691}}, {"model": "template.logicnode", "pk": 1691, "fields": {"state_transition": 404, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1692, "fields": {"state_transition": 405, "node_type": "N", "subcondition": null, "parent": 1696}}, {"model": "template.logicnode", "pk": 1693, "fields": {"state_transition": 405, "node_type": "S", "subcondition": 23, "parent": 1692}}, {"model": "template.logicnode", "pk": 1694, "fields": {"state_transition": 405, "node_type": "S", "subcondition": 3, "parent": 1696}}, {"model": "template.logicnode", "pk": 1695, "fields": {"state_transition": 405, "node_type": "S", "subcondition": 19, "parent": 1696}}, {"model": "template.logicnode", "pk": 1696, "fields": {"state_transition": 405, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1697, "fields": {"state_transition": 406, "node_type": "N", "subcondition": null, "parent": 1701}}, {"model": "template.logicnode", "pk": 1698, "fields": {"state_transition": 406, "node_type": "S", "subcondition": 23, "parent": 1697}}, {"model": "template.logicnode", "pk": 1699, "fields": {"state_transition": 406, "node_type": "S", "subcondition": 3, "parent": 1701}}, {"model": "template.logicnode", "pk": 1700, "fields": {"state_transition": 406, "node_type": "S", "subcondition": 20, "parent": 1701}}, {"model": "template.logicnode", "pk": 1701, "fields": {"state_transition": 406, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1702, "fields": {"state_transition": 407, "node_type": "N", "subcondition": null, "parent": 1706}}, {"model": "template.logicnode", "pk": 1703, "fields": {"state_transition": 407, "node_type": "S", "subcondition": 23, "parent": 1702}}, {"model": "template.logicnode", "pk": 1704, "fields": {"state_transition": 407, "node_type": "S", "subcondition": 3, "parent": 1706}}, {"model": "template.logicnode", "pk": 1705, "fields": {"state_transition": 407, "node_type": "S", "subcondition": 21, "parent": 1706}}, {"model": "template.logicnode", "pk": 1706, "fields": {"state_transition": 407, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1707, "fields": {"state_transition": 408, "node_type": "N", "subcondition": null, "parent": 1711}}, {"model": "template.logicnode", "pk": 1708, "fields": {"state_transition": 408, "node_type": "S", "subcondition": 23, "parent": 1707}}, {"model": "template.logicnode", "pk": 1709, "fields": {"state_transition": 408, "node_type": "S", "subcondition": 3, "parent": 1711}}, {"model": "template.logicnode", "pk": 1710, "fields": {"state_transition": 408, "node_type": "S", "subcondition": 22, "parent": 1711}}, {"model": "template.logicnode", "pk": 1711, "fields": {"state_transition": 408, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1712, "fields": {"state_transition": 409, "node_type": "N", "subcondition": null, "parent": 1716}}, {"model": "template.logicnode", "pk": 1713, "fields": {"state_transition": 409, "node_type": "S", "subcondition": 23, "parent": 1712}}, {"model": "template.logicnode", "pk": 1714, "fields": {"state_transition": 409, "node_type": "S", "subcondition": 4, "parent": 1716}}, {"model": "template.logicnode", "pk": 1715, "fields": {"state_transition": 409, "node_type": "S", "subcondition": 19, "parent": 1716}}, {"model": "template.logicnode", "pk": 1716, "fields": {"state_transition": 409, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1717, "fields": {"state_transition": 410, "node_type": "N", "subcondition": null, "parent": 1721}}, {"model": "template.logicnode", "pk": 1718, "fields": {"state_transition": 410, "node_type": "S", "subcondition": 23, "parent": 1717}}, {"model": "template.logicnode", "pk": 1719, "fields": {"state_transition": 410, "node_type": "S", "subcondition": 4, "parent": 1721}}, {"model": "template.logicnode", "pk": 1720, "fields": {"state_transition": 410, "node_type": "S", "subcondition": 20, "parent": 1721}}, {"model": "template.logicnode", "pk": 1721, "fields": {"state_transition": 410, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1722, "fields": {"state_transition": 411, "node_type": "N", "subcondition": null, "parent": 1726}}, {"model": "template.logicnode", "pk": 1723, "fields": {"state_transition": 411, "node_type": "S", "subcondition": 23, "parent": 1722}}, {"model": "template.logicnode", "pk": 1724, "fields": {"state_transition": 411, "node_type": "S", "subcondition": 4, "parent": 1726}}, {"model": "template.logicnode", "pk": 1725, "fields": {"state_transition": 411, "node_type": "S", "subcondition": 21, "parent": 1726}}, {"model": "template.logicnode", "pk": 1726, "fields": {"state_transition": 411, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1727, "fields": {"state_transition": 412, "node_type": "N", "subcondition": null, "parent": 1731}}, {"model": "template.logicnode", "pk": 1728, "fields": {"state_transition": 412, "node_type": "S", "subcondition": 23, "parent": 1727}}, {"model": "template.logicnode", "pk": 1729, "fields": {"state_transition": 412, "node_type": "S", "subcondition": 4, "parent": 1731}}, {"model": "template.logicnode", "pk": 1730, "fields": {"state_transition": 412, "node_type": "S", "subcondition": 22, "parent": 1731}}, {"model": "template.logicnode", "pk": 1731, "fields": {"state_transition": 412, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1732, "fields": {"state_transition": 413, "node_type": "N", "subcondition": null, "parent": 1736}}, {"model": "template.logicnode", "pk": 1733, "fields": {"state_transition": 413, "node_type": "S", "subcondition": 23, "parent": 1732}}, {"model": "template.logicnode", "pk": 1734, "fields": {"state_transition": 413, "node_type": "S", "subcondition": 5, "parent": 1736}}, {"model": "template.logicnode", "pk": 1735, "fields": {"state_transition": 413, "node_type": "S", "subcondition": 19, "parent": 1736}}, {"model": "template.logicnode", "pk": 1736, "fields": {"state_transition": 413, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1737, "fields": {"state_transition": 414, "node_type": "N", "subcondition": null, "parent": 1741}}, {"model": "template.logicnode", "pk": 1738, "fields": {"state_transition": 414, "node_type": "S", "subcondition": 23, "parent": 1737}}, {"model": "template.logicnode", "pk": 1739, "fields": {"state_transition": 414, "node_type": "S", "subcondition": 5, "parent": 1741}}, {"model": "template.logicnode", "pk": 1740, "fields": {"state_transition": 414, "node_type": "S", "subcondition": 20, "parent": 1741}}, {"model": "template.logicnode", "pk": 1741, "fields": {"state_transition": 414, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1742, "fields": {"state_transition": 415, "node_type": "N", "subcondition": null, "parent": 1746}}, {"model": "template.logicnode", "pk": 1743, "fields": {"state_transition": 415, "node_type": "S", "subcondition": 23, "parent": 1742}}, {"model": "template.logicnode", "pk": 1744, "fields": {"state_transition": 415, "node_type": "S", "subcondition": 5, "parent": 1746}}, {"model": "template.logicnode", "pk": 1745, "fields": {"state_transition": 415, "node_type": "S", "subcondition": 21, "parent": 1746}}, {"model": "template.logicnode", "pk": 1746, "fields": {"state_transition": 415, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1747, "fields": {"state_transition": 416, "node_type": "N", "subcondition": null, "parent": 1751}}, {"model": "template.logicnode", "pk": 1748, "fields": {"state_transition": 416, "node_type": "S", "subcondition": 23, "parent": 1747}}, {"model": "template.logicnode", "pk": 1749, "fields": {"state_transition": 416, "node_type": "S", "subcondition": 5, "parent": 1751}}, {"model": "template.logicnode", "pk": 1750, "fields": {"state_transition": 416, "node_type": "S", "subcondition": 22, "parent": 1751}}, {"model": "template.logicnode", "pk": 1751, "fields": {"state_transition": 416, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1752, "fields": {"state_transition": 417, "node_type": "N", "subcondition": null, "parent": 1756}}, {"model": "template.logicnode", "pk": 1753, "fields": {"state_transition": 417, "node_type": "S", "subcondition": 23, "parent": 1752}}, {"model": "template.logicnode", "pk": 1754, "fields": {"state_transition": 417, "node_type": "S", "subcondition": 6, "parent": 1756}}, {"model": "template.logicnode", "pk": 1755, "fields": {"state_transition": 417, "node_type": "S", "subcondition": 19, "parent": 1756}}, {"model": "template.logicnode", "pk": 1756, "fields": {"state_transition": 417, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1757, "fields": {"state_transition": 418, "node_type": "N", "subcondition": null, "parent": 1761}}, {"model": "template.logicnode", "pk": 1758, "fields": {"state_transition": 418, "node_type": "S", "subcondition": 23, "parent": 1757}}, {"model": "template.logicnode", "pk": 1759, "fields": {"state_transition": 418, "node_type": "S", "subcondition": 6, "parent": 1761}}, {"model": "template.logicnode", "pk": 1760, "fields": {"state_transition": 418, "node_type": "S", "subcondition": 20, "parent": 1761}}, {"model": "template.logicnode", "pk": 1761, "fields": {"state_transition": 418, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1762, "fields": {"state_transition": 419, "node_type": "N", "subcondition": null, "parent": 1766}}, {"model": "template.logicnode", "pk": 1763, "fields": {"state_transition": 419, "node_type": "S", "subcondition": 23, "parent": 1762}}, {"model": "template.logicnode", "pk": 1764, "fields": {"state_transition": 419, "node_type": "S", "subcondition": 6, "parent": 1766}}, {"model": "template.logicnode", "pk": 1765, "fields": {"state_transition": 419, "node_type": "S", "subcondition": 21, "parent": 1766}}, {"model": "template.logicnode", "pk": 1766, "fields": {"state_transition": 419, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1767, "fields": {"state_transition": 420, "node_type": "N", "subcondition": null, "parent": 1771}}, {"model": "template.logicnode", "pk": 1768, "fields": {"state_transition": 420, "node_type": "S", "subcondition": 23, "parent": 1767}}, {"model": "template.logicnode", "pk": 1769, "fields": {"state_transition": 420, "node_type": "S", "subcondition": 6, "parent": 1771}}, {"model": "template.logicnode", "pk": 1770, "fields": {"state_transition": 420, "node_type": "S", "subcondition": 22, "parent": 1771}}, {"model": "template.logicnode", "pk": 1771, "fields": {"state_transition": 420, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1772, "fields": {"state_transition": 421, "node_type": "S", "subcondition": 23, "parent": 1775}}, {"model": "template.logicnode", "pk": 1773, "fields": {"state_transition": 421, "node_type": "S", "subcondition": 3, "parent": 1775}}, {"model": "template.logicnode", "pk": 1774, "fields": {"state_transition": 421, "node_type": "S", "subcondition": 19, "parent": 1775}}, {"model": "template.logicnode", "pk": 1775, "fields": {"state_transition": 421, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1776, "fields": {"state_transition": 422, "node_type": "S", "subcondition": 23, "parent": 1779}}, {"model": "template.logicnode", "pk": 1777, "fields": {"state_transition": 422, "node_type": "S", "subcondition": 3, "parent": 1779}}, {"model": "template.logicnode", "pk": 1778, "fields": {"state_transition": 422, "node_type": "S", "subcondition": 20, "parent": 1779}}, {"model": "template.logicnode", "pk": 1779, "fields": {"state_transition": 422, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1780, "fields": {"state_transition": 423, "node_type": "S", "subcondition": 23, "parent": 1783}}, {"model": "template.logicnode", "pk": 1781, "fields": {"state_transition": 423, "node_type": "S", "subcondition": 3, "parent": 1783}}, {"model": "template.logicnode", "pk": 1782, "fields": {"state_transition": 423, "node_type": "S", "subcondition": 21, "parent": 1783}}, {"model": "template.logicnode", "pk": 1783, "fields": {"state_transition": 423, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1784, "fields": {"state_transition": 424, "node_type": "S", "subcondition": 23, "parent": 1787}}, {"model": "template.logicnode", "pk": 1785, "fields": {"state_transition": 424, "node_type": "S", "subcondition": 3, "parent": 1787}}, {"model": "template.logicnode", "pk": 1786, "fields": {"state_transition": 424, "node_type": "S", "subcondition": 22, "parent": 1787}}, {"model": "template.logicnode", "pk": 1787, "fields": {"state_transition": 424, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1788, "fields": {"state_transition": 425, "node_type": "S", "subcondition": 23, "parent": 1791}}, {"model": "template.logicnode", "pk": 1789, "fields": {"state_transition": 425, "node_type": "S", "subcondition": 4, "parent": 1791}}, {"model": "template.logicnode", "pk": 1790, "fields": {"state_transition": 425, "node_type": "S", "subcondition": 19, "parent": 1791}}, {"model": "template.logicnode", "pk": 1791, "fields": {"state_transition": 425, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1792, "fields": {"state_transition": 426, "node_type": "S", "subcondition": 23, "parent": 1795}}, {"model": "template.logicnode", "pk": 1793, "fields": {"state_transition": 426, "node_type": "S", "subcondition": 4, "parent": 1795}}, {"model": "template.logicnode", "pk": 1794, "fields": {"state_transition": 426, "node_type": "S", "subcondition": 20, "parent": 1795}}, {"model": "template.logicnode", "pk": 1795, "fields": {"state_transition": 426, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1796, "fields": {"state_transition": 427, "node_type": "S", "subcondition": 23, "parent": 1799}}, {"model": "template.logicnode", "pk": 1797, "fields": {"state_transition": 427, "node_type": "S", "subcondition": 4, "parent": 1799}}, {"model": "template.logicnode", "pk": 1798, "fields": {"state_transition": 427, "node_type": "S", "subcondition": 21, "parent": 1799}}, {"model": "template.logicnode", "pk": 1799, "fields": {"state_transition": 427, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1800, "fields": {"state_transition": 428, "node_type": "S", "subcondition": 23, "parent": 1803}}, {"model": "template.logicnode", "pk": 1801, "fields": {"state_transition": 428, "node_type": "S", "subcondition": 4, "parent": 1803}}, {"model": "template.logicnode", "pk": 1802, "fields": {"state_transition": 428, "node_type": "S", "subcondition": 22, "parent": 1803}}, {"model": "template.logicnode", "pk": 1803, "fields": {"state_transition": 428, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1804, "fields": {"state_transition": 429, "node_type": "S", "subcondition": 23, "parent": 1807}}, {"model": "template.logicnode", "pk": 1805, "fields": {"state_transition": 429, "node_type": "S", "subcondition": 5, "parent": 1807}}, {"model": "template.logicnode", "pk": 1806, "fields": {"state_transition": 429, "node_type": "S", "subcondition": 19, "parent": 1807}}, {"model": "template.logicnode", "pk": 1807, "fields": {"state_transition": 429, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1808, "fields": {"state_transition": 430, "node_type": "S", "subcondition": 23, "parent": 1811}}, {"model": "template.logicnode", "pk": 1809, "fields": {"state_transition": 430, "node_type": "S", "subcondition": 5, "parent": 1811}}, {"model": "template.logicnode", "pk": 1810, "fields": {"state_transition": 430, "node_type": "S", "subcondition": 20, "parent": 1811}}, {"model": "template.logicnode", "pk": 1811, "fields": {"state_transition": 430, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1812, "fields": {"state_transition": 431, "node_type": "S", "subcondition": 23, "parent": 1815}}, {"model": "template.logicnode", "pk": 1813, "fields": {"state_transition": 431, "node_type": "S", "subcondition": 5, "parent": 1815}}, {"model": "template.logicnode", "pk": 1814, "fields": {"state_transition": 431, "node_type": "S", "subcondition": 21, "parent": 1815}}, {"model": "template.logicnode", "pk": 1815, "fields": {"state_transition": 431, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1816, "fields": {"state_transition": 432, "node_type": "S", "subcondition": 23, "parent": 1819}}, {"model": "template.logicnode", "pk": 1817, "fields": {"state_transition": 432, "node_type": "S", "subcondition": 5, "parent": 1819}}, {"model": "template.logicnode", "pk": 1818, "fields": {"state_transition": 432, "node_type": "S", "subcondition": 22, "parent": 1819}}, {"model": "template.logicnode", "pk": 1819, "fields": {"state_transition": 432, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1820, "fields": {"state_transition": 433, "node_type": "S", "subcondition": 23, "parent": 1823}}, {"model": "template.logicnode", "pk": 1821, "fields": {"state_transition": 433, "node_type": "S", "subcondition": 6, "parent": 1823}}, {"model": "template.logicnode", "pk": 1822, "fields": {"state_transition": 433, "node_type": "S", "subcondition": 19, "parent": 1823}}, {"model": "template.logicnode", "pk": 1823, "fields": {"state_transition": 433, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1824, "fields": {"state_transition": 434, "node_type": "S", "subcondition": 23, "parent": 1827}}, {"model": "template.logicnode", "pk": 1825, "fields": {"state_transition": 434, "node_type": "S", "subcondition": 6, "parent": 1827}}, {"model": "template.logicnode", "pk": 1826, "fields": {"state_transition": 434, "node_type": "S", "subcondition": 20, "parent": 1827}}, {"model": "template.logicnode", "pk": 1827, "fields": {"state_transition": 434, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1828, "fields": {"state_transition": 435, "node_type": "S", "subcondition": 23, "parent": 1831}}, {"model": "template.logicnode", "pk": 1829, "fields": {"state_transition": 435, "node_type": "S", "subcondition": 6, "parent": 1831}}, {"model": "template.logicnode", "pk": 1830, "fields": {"state_transition": 435, "node_type": "S", "subcondition": 21, "parent": 1831}}, {"model": "template.logicnode", "pk": 1831, "fields": {"state_transition": 435, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1832, "fields": {"state_transition": 436, "node_type": "S", "subcondition": 23, "parent": 1835}}, {"model": "template.logicnode", "pk": 1833, "fields": {"state_transition": 436, "node_type": "S", "subcondition": 6, "parent": 1835}}, {"model": "template.logicnode", "pk": 1834, "fields": {"state_transition": 436, "node_type": "S", "subcondition": 22, "parent": 1835}}, {"model": "template.logicnode", "pk": 1835, "fields": {"state_transition": 436, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1836, "fields": {"state_transition": 437, "node_type": "N", "subcondition": null, "parent": 1840}}, {"model": "template.logicnode", "pk": 1837, "fields": {"state_transition": 437, "node_type": "S", "subcondition": 23, "parent": 1836}}, {"model": "template.logicnode", "pk": 1838, "fields": {"state_transition": 437, "node_type": "S", "subcondition": 3, "parent": 1840}}, {"model": "template.logicnode", "pk": 1839, "fields": {"state_transition": 437, "node_type": "S", "subcondition": 19, "parent": 1840}}, {"model": "template.logicnode", "pk": 1840, "fields": {"state_transition": 437, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1841, "fields": {"state_transition": 438, "node_type": "N", "subcondition": null, "parent": 1845}}, {"model": "template.logicnode", "pk": 1842, "fields": {"state_transition": 438, "node_type": "S", "subcondition": 23, "parent": 1841}}, {"model": "template.logicnode", "pk": 1843, "fields": {"state_transition": 438, "node_type": "S", "subcondition": 3, "parent": 1845}}, {"model": "template.logicnode", "pk": 1844, "fields": {"state_transition": 438, "node_type": "S", "subcondition": 20, "parent": 1845}}, {"model": "template.logicnode", "pk": 1845, "fields": {"state_transition": 438, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1846, "fields": {"state_transition": 439, "node_type": "N", "subcondition": null, "parent": 1850}}, {"model": "template.logicnode", "pk": 1847, "fields": {"state_transition": 439, "node_type": "S", "subcondition": 23, "parent": 1846}}, {"model": "template.logicnode", "pk": 1848, "fields": {"state_transition": 439, "node_type": "S", "subcondition": 3, "parent": 1850}}, {"model": "template.logicnode", "pk": 1849, "fields": {"state_transition": 439, "node_type": "S", "subcondition": 21, "parent": 1850}}, {"model": "template.logicnode", "pk": 1850, "fields": {"state_transition": 439, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1851, "fields": {"state_transition": 440, "node_type": "N", "subcondition": null, "parent": 1855}}, {"model": "template.logicnode", "pk": 1852, "fields": {"state_transition": 440, "node_type": "S", "subcondition": 23, "parent": 1851}}, {"model": "template.logicnode", "pk": 1853, "fields": {"state_transition": 440, "node_type": "S", "subcondition": 3, "parent": 1855}}, {"model": "template.logicnode", "pk": 1854, "fields": {"state_transition": 440, "node_type": "S", "subcondition": 22, "parent": 1855}}, {"model": "template.logicnode", "pk": 1855, "fields": {"state_transition": 440, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1856, "fields": {"state_transition": 441, "node_type": "N", "subcondition": null, "parent": 1860}}, {"model": "template.logicnode", "pk": 1857, "fields": {"state_transition": 441, "node_type": "S", "subcondition": 23, "parent": 1856}}, {"model": "template.logicnode", "pk": 1858, "fields": {"state_transition": 441, "node_type": "S", "subcondition": 4, "parent": 1860}}, {"model": "template.logicnode", "pk": 1859, "fields": {"state_transition": 441, "node_type": "S", "subcondition": 19, "parent": 1860}}, {"model": "template.logicnode", "pk": 1860, "fields": {"state_transition": 441, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1861, "fields": {"state_transition": 442, "node_type": "N", "subcondition": null, "parent": 1865}}, {"model": "template.logicnode", "pk": 1862, "fields": {"state_transition": 442, "node_type": "S", "subcondition": 23, "parent": 1861}}, {"model": "template.logicnode", "pk": 1863, "fields": {"state_transition": 442, "node_type": "S", "subcondition": 4, "parent": 1865}}, {"model": "template.logicnode", "pk": 1864, "fields": {"state_transition": 442, "node_type": "S", "subcondition": 20, "parent": 1865}}, {"model": "template.logicnode", "pk": 1865, "fields": {"state_transition": 442, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1866, "fields": {"state_transition": 443, "node_type": "N", "subcondition": null, "parent": 1870}}, {"model": "template.logicnode", "pk": 1867, "fields": {"state_transition": 443, "node_type": "S", "subcondition": 23, "parent": 1866}}, {"model": "template.logicnode", "pk": 1868, "fields": {"state_transition": 443, "node_type": "S", "subcondition": 4, "parent": 1870}}, {"model": "template.logicnode", "pk": 1869, "fields": {"state_transition": 443, "node_type": "S", "subcondition": 21, "parent": 1870}}, {"model": "template.logicnode", "pk": 1870, "fields": {"state_transition": 443, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1871, "fields": {"state_transition": 444, "node_type": "N", "subcondition": null, "parent": 1875}}, {"model": "template.logicnode", "pk": 1872, "fields": {"state_transition": 444, "node_type": "S", "subcondition": 23, "parent": 1871}}, {"model": "template.logicnode", "pk": 1873, "fields": {"state_transition": 444, "node_type": "S", "subcondition": 4, "parent": 1875}}, {"model": "template.logicnode", "pk": 1874, "fields": {"state_transition": 444, "node_type": "S", "subcondition": 22, "parent": 1875}}, {"model": "template.logicnode", "pk": 1875, "fields": {"state_transition": 444, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1876, "fields": {"state_transition": 445, "node_type": "N", "subcondition": null, "parent": 1880}}, {"model": "template.logicnode", "pk": 1877, "fields": {"state_transition": 445, "node_type": "S", "subcondition": 23, "parent": 1876}}, {"model": "template.logicnode", "pk": 1878, "fields": {"state_transition": 445, "node_type": "S", "subcondition": 5, "parent": 1880}}, {"model": "template.logicnode", "pk": 1879, "fields": {"state_transition": 445, "node_type": "S", "subcondition": 19, "parent": 1880}}, {"model": "template.logicnode", "pk": 1880, "fields": {"state_transition": 445, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1881, "fields": {"state_transition": 446, "node_type": "N", "subcondition": null, "parent": 1885}}, {"model": "template.logicnode", "pk": 1882, "fields": {"state_transition": 446, "node_type": "S", "subcondition": 23, "parent": 1881}}, {"model": "template.logicnode", "pk": 1883, "fields": {"state_transition": 446, "node_type": "S", "subcondition": 5, "parent": 1885}}, {"model": "template.logicnode", "pk": 1884, "fields": {"state_transition": 446, "node_type": "S", "subcondition": 20, "parent": 1885}}, {"model": "template.logicnode", "pk": 1885, "fields": {"state_transition": 446, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1886, "fields": {"state_transition": 447, "node_type": "N", "subcondition": null, "parent": 1890}}, {"model": "template.logicnode", "pk": 1887, "fields": {"state_transition": 447, "node_type": "S", "subcondition": 23, "parent": 1886}}, {"model": "template.logicnode", "pk": 1888, "fields": {"state_transition": 447, "node_type": "S", "subcondition": 5, "parent": 1890}}, {"model": "template.logicnode", "pk": 1889, "fields": {"state_transition": 447, "node_type": "S", "subcondition": 21, "parent": 1890}}, {"model": "template.logicnode", "pk": 1890, "fields": {"state_transition": 447, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1891, "fields": {"state_transition": 448, "node_type": "N", "subcondition": null, "parent": 1895}}, {"model": "template.logicnode", "pk": 1892, "fields": {"state_transition": 448, "node_type": "S", "subcondition": 23, "parent": 1891}}, {"model": "template.logicnode", "pk": 1893, "fields": {"state_transition": 448, "node_type": "S", "subcondition": 5, "parent": 1895}}, {"model": "template.logicnode", "pk": 1894, "fields": {"state_transition": 448, "node_type": "S", "subcondition": 22, "parent": 1895}}, {"model": "template.logicnode", "pk": 1895, "fields": {"state_transition": 448, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1896, "fields": {"state_transition": 449, "node_type": "N", "subcondition": null, "parent": 1900}}, {"model": "template.logicnode", "pk": 1897, "fields": {"state_transition": 449, "node_type": "S", "subcondition": 23, "parent": 1896}}, {"model": "template.logicnode", "pk": 1898, "fields": {"state_transition": 449, "node_type": "S", "subcondition": 6, "parent": 1900}}, {"model": "template.logicnode", "pk": 1899, "fields": {"state_transition": 449, "node_type": "S", "subcondition": 19, "parent": 1900}}, {"model": "template.logicnode", "pk": 1900, "fields": {"state_transition": 449, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1901, "fields": {"state_transition": 450, "node_type": "N", "subcondition": null, "parent": 1905}}, {"model": "template.logicnode", "pk": 1902, "fields": {"state_transition": 450, "node_type": "S", "subcondition": 23, "parent": 1901}}, {"model": "template.logicnode", "pk": 1903, "fields": {"state_transition": 450, "node_type": "S", "subcondition": 6, "parent": 1905}}, {"model": "template.logicnode", "pk": 1904, "fields": {"state_transition": 450, "node_type": "S", "subcondition": 20, "parent": 1905}}, {"model": "template.logicnode", "pk": 1905, "fields": {"state_transition": 450, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1906, "fields": {"state_transition": 451, "node_type": "N", "subcondition": null, "parent": 1910}}, {"model": "template.logicnode", "pk": 1907, "fields": {"state_transition": 451, "node_type": "S", "subcondition": 23, "parent": 1906}}, {"model": "template.logicnode", "pk": 1908, "fields": {"state_transition": 451, "node_type": "S", "subcondition": 6, "parent": 1910}}, {"model": "template.logicnode", "pk": 1909, "fields": {"state_transition": 451, "node_type": "S", "subcondition": 21, "parent": 1910}}, {"model": "template.logicnode", "pk": 1910, "fields": {"state_transition": 451, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1911, "fields": {"state_transition": 452, "node_type": "N", "subcondition": null, "parent": 1915}}, {"model": "template.logicnode", "pk": 1912, "fields": {"state_transition": 452, "node_type": "S", "subcondition": 23, "parent": 1911}}, {"model": "template.logicnode", "pk": 1913, "fields": {"state_transition": 452, "node_type": "S", "subcondition": 6, "parent": 1915}}, {"model": "template.logicnode", "pk": 1914, "fields": {"state_transition": 452, "node_type": "S", "subcondition": 22, "parent": 1915}}, {"model": "template.logicnode", "pk": 1915, "fields": {"state_transition": 452, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1916, "fields": {"state_transition": 453, "node_type": "S", "subcondition": 23, "parent": 1919}}, {"model": "template.logicnode", "pk": 1917, "fields": {"state_transition": 453, "node_type": "S", "subcondition": 3, "parent": 1919}}, {"model": "template.logicnode", "pk": 1918, "fields": {"state_transition": 453, "node_type": "S", "subcondition": 19, "parent": 1919}}, {"model": "template.logicnode", "pk": 1919, "fields": {"state_transition": 453, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1920, "fields": {"state_transition": 454, "node_type": "S", "subcondition": 23, "parent": 1923}}, {"model": "template.logicnode", "pk": 1921, "fields": {"state_transition": 454, "node_type": "S", "subcondition": 3, "parent": 1923}}, {"model": "template.logicnode", "pk": 1922, "fields": {"state_transition": 454, "node_type": "S", "subcondition": 20, "parent": 1923}}, {"model": "template.logicnode", "pk": 1923, "fields": {"state_transition": 454, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1924, "fields": {"state_transition": 455, "node_type": "S", "subcondition": 23, "parent": 1927}}, {"model": "template.logicnode", "pk": 1925, "fields": {"state_transition": 455, "node_type": "S", "subcondition": 3, "parent": 1927}}, {"model": "template.logicnode", "pk": 1926, "fields": {"state_transition": 455, "node_type": "S", "subcondition": 21, "parent": 1927}}, {"model": "template.logicnode", "pk": 1927, "fields": {"state_transition": 455, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1928, "fields": {"state_transition": 456, "node_type": "S", "subcondition": 23, "parent": 1931}}, {"model": "template.logicnode", "pk": 1929, "fields": {"state_transition": 456, "node_type": "S", "subcondition": 3, "parent": 1931}}, {"model": "template.logicnode", "pk": 1930, "fields": {"state_transition": 456, "node_type": "S", "subcondition": 22, "parent": 1931}}, {"model": "template.logicnode", "pk": 1931, "fields": {"state_transition": 456, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1932, "fields": {"state_transition": 457, "node_type": "S", "subcondition": 23, "parent": 1935}}, {"model": "template.logicnode", "pk": 1933, "fields": {"state_transition": 457, "node_type": "S", "subcondition": 4, "parent": 1935}}, {"model": "template.logicnode", "pk": 1934, "fields": {"state_transition": 457, "node_type": "S", "subcondition": 19, "parent": 1935}}, {"model": "template.logicnode", "pk": 1935, "fields": {"state_transition": 457, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1936, "fields": {"state_transition": 458, "node_type": "S", "subcondition": 23, "parent": 1939}}, {"model": "template.logicnode", "pk": 1937, "fields": {"state_transition": 458, "node_type": "S", "subcondition": 4, "parent": 1939}}, {"model": "template.logicnode", "pk": 1938, "fields": {"state_transition": 458, "node_type": "S", "subcondition": 20, "parent": 1939}}, {"model": "template.logicnode", "pk": 1939, "fields": {"state_transition": 458, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1940, "fields": {"state_transition": 459, "node_type": "S", "subcondition": 23, "parent": 1943}}, {"model": "template.logicnode", "pk": 1941, "fields": {"state_transition": 459, "node_type": "S", "subcondition": 4, "parent": 1943}}, {"model": "template.logicnode", "pk": 1942, "fields": {"state_transition": 459, "node_type": "S", "subcondition": 21, "parent": 1943}}, {"model": "template.logicnode", "pk": 1943, "fields": {"state_transition": 459, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1944, "fields": {"state_transition": 460, "node_type": "S", "subcondition": 23, "parent": 1947}}, {"model": "template.logicnode", "pk": 1945, "fields": {"state_transition": 460, "node_type": "S", "subcondition": 4, "parent": 1947}}, {"model": "template.logicnode", "pk": 1946, "fields": {"state_transition": 460, "node_type": "S", "subcondition": 22, "parent": 1947}}, {"model": "template.logicnode", "pk": 1947, "fields": {"state_transition": 460, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1948, "fields": {"state_transition": 461, "node_type": "S", "subcondition": 23, "parent": 1951}}, {"model": "template.logicnode", "pk": 1949, "fields": {"state_transition": 461, "node_type": "S", "subcondition": 5, "parent": 1951}}, {"model": "template.logicnode", "pk": 1950, "fields": {"state_transition": 461, "node_type": "S", "subcondition": 19, "parent": 1951}}, {"model": "template.logicnode", "pk": 1951, "fields": {"state_transition": 461, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1952, "fields": {"state_transition": 462, "node_type": "S", "subcondition": 23, "parent": 1955}}, {"model": "template.logicnode", "pk": 1953, "fields": {"state_transition": 462, "node_type": "S", "subcondition": 5, "parent": 1955}}, {"model": "template.logicnode", "pk": 1954, "fields": {"state_transition": 462, "node_type": "S", "subcondition": 20, "parent": 1955}}, {"model": "template.logicnode", "pk": 1955, "fields": {"state_transition": 462, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1956, "fields": {"state_transition": 463, "node_type": "S", "subcondition": 23, "parent": 1959}}, {"model": "template.logicnode", "pk": 1957, "fields": {"state_transition": 463, "node_type": "S", "subcondition": 5, "parent": 1959}}, {"model": "template.logicnode", "pk": 1958, "fields": {"state_transition": 463, "node_type": "S", "subcondition": 21, "parent": 1959}}, {"model": "template.logicnode", "pk": 1959, "fields": {"state_transition": 463, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1960, "fields": {"state_transition": 464, "node_type": "S", "subcondition": 23, "parent": 1963}}, {"model": "template.logicnode", "pk": 1961, "fields": {"state_transition": 464, "node_type": "S", "subcondition": 5, "parent": 1963}}, {"model": "template.logicnode", "pk": 1962, "fields": {"state_transition": 464, "node_type": "S", "subcondition": 22, "parent": 1963}}, {"model": "template.logicnode", "pk": 1963, "fields": {"state_transition": 464, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1964, "fields": {"state_transition": 465, "node_type": "S", "subcondition": 23, "parent": 1967}}, {"model": "template.logicnode", "pk": 1965, "fields": {"state_transition": 465, "node_type": "S", "subcondition": 6, "parent": 1967}}, {"model": "template.logicnode", "pk": 1966, "fields": {"state_transition": 465, "node_type": "S", "subcondition": 19, "parent": 1967}}, {"model": "template.logicnode", "pk": 1967, "fields": {"state_transition": 465, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1968, "fields": {"state_transition": 466, "node_type": "S", "subcondition": 23, "parent": 1971}}, {"model": "template.logicnode", "pk": 1969, "fields": {"state_transition": 466, "node_type": "S", "subcondition": 6, "parent": 1971}}, {"model": "template.logicnode", "pk": 1970, "fields": {"state_transition": 466, "node_type": "S", "subcondition": 20, "parent": 1971}}, {"model": "template.logicnode", "pk": 1971, "fields": {"state_transition": 466, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1972, "fields": {"state_transition": 467, "node_type": "S", "subcondition": 23, "parent": 1975}}, {"model": "template.logicnode", "pk": 1973, "fields": {"state_transition": 467, "node_type": "S", "subcondition": 6, "parent": 1975}}, {"model": "template.logicnode", "pk": 1974, "fields": {"state_transition": 467, "node_type": "S", "subcondition": 21, "parent": 1975}}, {"model": "template.logicnode", "pk": 1975, "fields": {"state_transition": 467, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1976, "fields": {"state_transition": 468, "node_type": "S", "subcondition": 23, "parent": 1979}}, {"model": "template.logicnode", "pk": 1977, "fields": {"state_transition": 468, "node_type": "S", "subcondition": 6, "parent": 1979}}, {"model": "template.logicnode", "pk": 1978, "fields": {"state_transition": 468, "node_type": "S", "subcondition": 22, "parent": 1979}}, {"model": "template.logicnode", "pk": 1979, "fields": {"state_transition": 468, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1980, "fields": {"state_transition": 469, "node_type": "N", "subcondition": null, "parent": 1984}}, {"model": "template.logicnode", "pk": 1981, "fields": {"state_transition": 469, "node_type": "S", "subcondition": 23, "parent": 1980}}, {"model": "template.logicnode", "pk": 1982, "fields": {"state_transition": 469, "node_type": "S", "subcondition": 3, "parent": 1984}}, {"model": "template.logicnode", "pk": 1983, "fields": {"state_transition": 469, "node_type": "S", "subcondition": 19, "parent": 1984}}, {"model": "template.logicnode", "pk": 1984, "fields": {"state_transition": 469, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1985, "fields": {"state_transition": 470, "node_type": "N", "subcondition": null, "parent": 1989}}, {"model": "template.logicnode", "pk": 1986, "fields": {"state_transition": 470, "node_type": "S", "subcondition": 23, "parent": 1985}}, {"model": "template.logicnode", "pk": 1987, "fields": {"state_transition": 470, "node_type": "S", "subcondition": 3, "parent": 1989}}, {"model": "template.logicnode", "pk": 1988, "fields": {"state_transition": 470, "node_type": "S", "subcondition": 20, "parent": 1989}}, {"model": "template.logicnode", "pk": 1989, "fields": {"state_transition": 470, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1990, "fields": {"state_transition": 471, "node_type": "N", "subcondition": null, "parent": 1994}}, {"model": "template.logicnode", "pk": 1991, "fields": {"state_transition": 471, "node_type": "S", "subcondition": 23, "parent": 1990}}, {"model": "template.logicnode", "pk": 1992, "fields": {"state_transition": 471, "node_type": "S", "subcondition": 3, "parent": 1994}}, {"model": "template.logicnode", "pk": 1993, "fields": {"state_transition": 471, "node_type": "S", "subcondition": 21, "parent": 1994}}, {"model": "template.logicnode", "pk": 1994, "fields": {"state_transition": 471, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1995, "fields": {"state_transition": 472, "node_type": "N", "subcondition": null, "parent": 1999}}, {"model": "template.logicnode", "pk": 1996, "fields": {"state_transition": 472, "node_type": "S", "subcondition": 23, "parent": 1995}}, {"model": "template.logicnode", "pk": 1997, "fields": {"state_transition": 472, "node_type": "S", "subcondition": 3, "parent": 1999}}, {"model": "template.logicnode", "pk": 1998, "fields": {"state_transition": 472, "node_type": "S", "subcondition": 22, "parent": 1999}}, {"model": "template.logicnode", "pk": 1999, "fields": {"state_transition": 472, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2000, "fields": {"state_transition": 473, "node_type": "N", "subcondition": null, "parent": 2004}}, {"model": "template.logicnode", "pk": 2001, "fields": {"state_transition": 473, "node_type": "S", "subcondition": 23, "parent": 2000}}, {"model": "template.logicnode", "pk": 2002, "fields": {"state_transition": 473, "node_type": "S", "subcondition": 4, "parent": 2004}}, {"model": "template.logicnode", "pk": 2003, "fields": {"state_transition": 473, "node_type": "S", "subcondition": 19, "parent": 2004}}, {"model": "template.logicnode", "pk": 2004, "fields": {"state_transition": 473, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2005, "fields": {"state_transition": 474, "node_type": "N", "subcondition": null, "parent": 2009}}, {"model": "template.logicnode", "pk": 2006, "fields": {"state_transition": 474, "node_type": "S", "subcondition": 23, "parent": 2005}}, {"model": "template.logicnode", "pk": 2007, "fields": {"state_transition": 474, "node_type": "S", "subcondition": 4, "parent": 2009}}, {"model": "template.logicnode", "pk": 2008, "fields": {"state_transition": 474, "node_type": "S", "subcondition": 20, "parent": 2009}}, {"model": "template.logicnode", "pk": 2009, "fields": {"state_transition": 474, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2010, "fields": {"state_transition": 475, "node_type": "N", "subcondition": null, "parent": 2014}}, {"model": "template.logicnode", "pk": 2011, "fields": {"state_transition": 475, "node_type": "S", "subcondition": 23, "parent": 2010}}, {"model": "template.logicnode", "pk": 2012, "fields": {"state_transition": 475, "node_type": "S", "subcondition": 4, "parent": 2014}}, {"model": "template.logicnode", "pk": 2013, "fields": {"state_transition": 475, "node_type": "S", "subcondition": 21, "parent": 2014}}, {"model": "template.logicnode", "pk": 2014, "fields": {"state_transition": 475, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2015, "fields": {"state_transition": 476, "node_type": "N", "subcondition": null, "parent": 2019}}, {"model": "template.logicnode", "pk": 2016, "fields": {"state_transition": 476, "node_type": "S", "subcondition": 23, "parent": 2015}}, {"model": "template.logicnode", "pk": 2017, "fields": {"state_transition": 476, "node_type": "S", "subcondition": 4, "parent": 2019}}, {"model": "template.logicnode", "pk": 2018, "fields": {"state_transition": 476, "node_type": "S", "subcondition": 22, "parent": 2019}}, {"model": "template.logicnode", "pk": 2019, "fields": {"state_transition": 476, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2020, "fields": {"state_transition": 477, "node_type": "N", "subcondition": null, "parent": 2024}}, {"model": "template.logicnode", "pk": 2021, "fields": {"state_transition": 477, "node_type": "S", "subcondition": 23, "parent": 2020}}, {"model": "template.logicnode", "pk": 2022, "fields": {"state_transition": 477, "node_type": "S", "subcondition": 5, "parent": 2024}}, {"model": "template.logicnode", "pk": 2023, "fields": {"state_transition": 477, "node_type": "S", "subcondition": 19, "parent": 2024}}, {"model": "template.logicnode", "pk": 2024, "fields": {"state_transition": 477, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2025, "fields": {"state_transition": 478, "node_type": "N", "subcondition": null, "parent": 2029}}, {"model": "template.logicnode", "pk": 2026, "fields": {"state_transition": 478, "node_type": "S", "subcondition": 23, "parent": 2025}}, {"model": "template.logicnode", "pk": 2027, "fields": {"state_transition": 478, "node_type": "S", "subcondition": 5, "parent": 2029}}, {"model": "template.logicnode", "pk": 2028, "fields": {"state_transition": 478, "node_type": "S", "subcondition": 20, "parent": 2029}}, {"model": "template.logicnode", "pk": 2029, "fields": {"state_transition": 478, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2030, "fields": {"state_transition": 479, "node_type": "N", "subcondition": null, "parent": 2034}}, {"model": "template.logicnode", "pk": 2031, "fields": {"state_transition": 479, "node_type": "S", "subcondition": 23, "parent": 2030}}, {"model": "template.logicnode", "pk": 2032, "fields": {"state_transition": 479, "node_type": "S", "subcondition": 5, "parent": 2034}}, {"model": "template.logicnode", "pk": 2033, "fields": {"state_transition": 479, "node_type": "S", "subcondition": 21, "parent": 2034}}, {"model": "template.logicnode", "pk": 2034, "fields": {"state_transition": 479, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2035, "fields": {"state_transition": 480, "node_type": "N", "subcondition": null, "parent": 2039}}, {"model": "template.logicnode", "pk": 2036, "fields": {"state_transition": 480, "node_type": "S", "subcondition": 23, "parent": 2035}}, {"model": "template.logicnode", "pk": 2037, "fields": {"state_transition": 480, "node_type": "S", "subcondition": 5, "parent": 2039}}, {"model": "template.logicnode", "pk": 2038, "fields": {"state_transition": 480, "node_type": "S", "subcondition": 22, "parent": 2039}}, {"model": "template.logicnode", "pk": 2039, "fields": {"state_transition": 480, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2040, "fields": {"state_transition": 481, "node_type": "N", "subcondition": null, "parent": 2044}}, {"model": "template.logicnode", "pk": 2041, "fields": {"state_transition": 481, "node_type": "S", "subcondition": 23, "parent": 2040}}, {"model": "template.logicnode", "pk": 2042, "fields": {"state_transition": 481, "node_type": "S", "subcondition": 6, "parent": 2044}}, {"model": "template.logicnode", "pk": 2043, "fields": {"state_transition": 481, "node_type": "S", "subcondition": 19, "parent": 2044}}, {"model": "template.logicnode", "pk": 2044, "fields": {"state_transition": 481, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2045, "fields": {"state_transition": 482, "node_type": "N", "subcondition": null, "parent": 2049}}, {"model": "template.logicnode", "pk": 2046, "fields": {"state_transition": 482, "node_type": "S", "subcondition": 23, "parent": 2045}}, {"model": "template.logicnode", "pk": 2047, "fields": {"state_transition": 482, "node_type": "S", "subcondition": 6, "parent": 2049}}, {"model": "template.logicnode", "pk": 2048, "fields": {"state_transition": 482, "node_type": "S", "subcondition": 20, "parent": 2049}}, {"model": "template.logicnode", "pk": 2049, "fields": {"state_transition": 482, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2050, "fields": {"state_transition": 483, "node_type": "N", "subcondition": null, "parent": 2054}}, {"model": "template.logicnode", "pk": 2051, "fields": {"state_transition": 483, "node_type": "S", "subcondition": 23, "parent": 2050}}, {"model": "template.logicnode", "pk": 2052, "fields": {"state_transition": 483, "node_type": "S", "subcondition": 6, "parent": 2054}}, {"model": "template.logicnode", "pk": 2053, "fields": {"state_transition": 483, "node_type": "S", "subcondition": 21, "parent": 2054}}, {"model": "template.logicnode", "pk": 2054, "fields": {"state_transition": 483, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2055, "fields": {"state_transition": 484, "node_type": "N", "subcondition": null, "parent": 2059}}, {"model": "template.logicnode", "pk": 2056, "fields": {"state_transition": 484, "node_type": "S", "subcondition": 23, "parent": 2055}}, {"model": "template.logicnode", "pk": 2057, "fields": {"state_transition": 484, "node_type": "S", "subcondition": 6, "parent": 2059}}, {"model": "template.logicnode", "pk": 2058, "fields": {"state_transition": 484, "node_type": "S", "subcondition": 22, "parent": 2059}}, {"model": "template.logicnode", "pk": 2059, "fields": {"state_transition": 484, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2060, "fields": {"state_transition": 485, "node_type": "S", "subcondition": 23, "parent": 2063}}, {"model": "template.logicnode", "pk": 2061, "fields": {"state_transition": 485, "node_type": "S", "subcondition": 3, "parent": 2063}}, {"model": "template.logicnode", "pk": 2062, "fields": {"state_transition": 485, "node_type": "S", "subcondition": 19, "parent": 2063}}, {"model": "template.logicnode", "pk": 2063, "fields": {"state_transition": 485, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2064, "fields": {"state_transition": 486, "node_type": "S", "subcondition": 23, "parent": 2067}}, {"model": "template.logicnode", "pk": 2065, "fields": {"state_transition": 486, "node_type": "S", "subcondition": 3, "parent": 2067}}, {"model": "template.logicnode", "pk": 2066, "fields": {"state_transition": 486, "node_type": "S", "subcondition": 20, "parent": 2067}}, {"model": "template.logicnode", "pk": 2067, "fields": {"state_transition": 486, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2068, "fields": {"state_transition": 487, "node_type": "S", "subcondition": 23, "parent": 2071}}, {"model": "template.logicnode", "pk": 2069, "fields": {"state_transition": 487, "node_type": "S", "subcondition": 3, "parent": 2071}}, {"model": "template.logicnode", "pk": 2070, "fields": {"state_transition": 487, "node_type": "S", "subcondition": 21, "parent": 2071}}, {"model": "template.logicnode", "pk": 2071, "fields": {"state_transition": 487, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2072, "fields": {"state_transition": 488, "node_type": "S", "subcondition": 23, "parent": 2075}}, {"model": "template.logicnode", "pk": 2073, "fields": {"state_transition": 488, "node_type": "S", "subcondition": 3, "parent": 2075}}, {"model": "template.logicnode", "pk": 2074, "fields": {"state_transition": 488, "node_type": "S", "subcondition": 22, "parent": 2075}}, {"model": "template.logicnode", "pk": 2075, "fields": {"state_transition": 488, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2076, "fields": {"state_transition": 489, "node_type": "S", "subcondition": 23, "parent": 2079}}, {"model": "template.logicnode", "pk": 2077, "fields": {"state_transition": 489, "node_type": "S", "subcondition": 4, "parent": 2079}}, {"model": "template.logicnode", "pk": 2078, "fields": {"state_transition": 489, "node_type": "S", "subcondition": 19, "parent": 2079}}, {"model": "template.logicnode", "pk": 2079, "fields": {"state_transition": 489, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2080, "fields": {"state_transition": 490, "node_type": "S", "subcondition": 23, "parent": 2083}}, {"model": "template.logicnode", "pk": 2081, "fields": {"state_transition": 490, "node_type": "S", "subcondition": 4, "parent": 2083}}, {"model": "template.logicnode", "pk": 2082, "fields": {"state_transition": 490, "node_type": "S", "subcondition": 20, "parent": 2083}}, {"model": "template.logicnode", "pk": 2083, "fields": {"state_transition": 490, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2084, "fields": {"state_transition": 491, "node_type": "S", "subcondition": 23, "parent": 2087}}, {"model": "template.logicnode", "pk": 2085, "fields": {"state_transition": 491, "node_type": "S", "subcondition": 4, "parent": 2087}}, {"model": "template.logicnode", "pk": 2086, "fields": {"state_transition": 491, "node_type": "S", "subcondition": 21, "parent": 2087}}, {"model": "template.logicnode", "pk": 2087, "fields": {"state_transition": 491, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2088, "fields": {"state_transition": 492, "node_type": "S", "subcondition": 23, "parent": 2091}}, {"model": "template.logicnode", "pk": 2089, "fields": {"state_transition": 492, "node_type": "S", "subcondition": 4, "parent": 2091}}, {"model": "template.logicnode", "pk": 2090, "fields": {"state_transition": 492, "node_type": "S", "subcondition": 22, "parent": 2091}}, {"model": "template.logicnode", "pk": 2091, "fields": {"state_transition": 492, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2092, "fields": {"state_transition": 493, "node_type": "S", "subcondition": 23, "parent": 2095}}, {"model": "template.logicnode", "pk": 2093, "fields": {"state_transition": 493, "node_type": "S", "subcondition": 5, "parent": 2095}}, {"model": "template.logicnode", "pk": 2094, "fields": {"state_transition": 493, "node_type": "S", "subcondition": 19, "parent": 2095}}, {"model": "template.logicnode", "pk": 2095, "fields": {"state_transition": 493, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2096, "fields": {"state_transition": 494, "node_type": "S", "subcondition": 23, "parent": 2099}}, {"model": "template.logicnode", "pk": 2097, "fields": {"state_transition": 494, "node_type": "S", "subcondition": 5, "parent": 2099}}, {"model": "template.logicnode", "pk": 2098, "fields": {"state_transition": 494, "node_type": "S", "subcondition": 20, "parent": 2099}}, {"model": "template.logicnode", "pk": 2099, "fields": {"state_transition": 494, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2100, "fields": {"state_transition": 495, "node_type": "S", "subcondition": 23, "parent": 2103}}, {"model": "template.logicnode", "pk": 2101, "fields": {"state_transition": 495, "node_type": "S", "subcondition": 5, "parent": 2103}}, {"model": "template.logicnode", "pk": 2102, "fields": {"state_transition": 495, "node_type": "S", "subcondition": 21, "parent": 2103}}, {"model": "template.logicnode", "pk": 2103, "fields": {"state_transition": 495, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2104, "fields": {"state_transition": 496, "node_type": "S", "subcondition": 23, "parent": 2107}}, {"model": "template.logicnode", "pk": 2105, "fields": {"state_transition": 496, "node_type": "S", "subcondition": 5, "parent": 2107}}, {"model": "template.logicnode", "pk": 2106, "fields": {"state_transition": 496, "node_type": "S", "subcondition": 22, "parent": 2107}}, {"model": "template.logicnode", "pk": 2107, "fields": {"state_transition": 496, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2108, "fields": {"state_transition": 497, "node_type": "S", "subcondition": 23, "parent": 2111}}, {"model": "template.logicnode", "pk": 2109, "fields": {"state_transition": 497, "node_type": "S", "subcondition": 6, "parent": 2111}}, {"model": "template.logicnode", "pk": 2110, "fields": {"state_transition": 497, "node_type": "S", "subcondition": 19, "parent": 2111}}, {"model": "template.logicnode", "pk": 2111, "fields": {"state_transition": 497, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2112, "fields": {"state_transition": 498, "node_type": "S", "subcondition": 23, "parent": 2115}}, {"model": "template.logicnode", "pk": 2113, "fields": {"state_transition": 498, "node_type": "S", "subcondition": 6, "parent": 2115}}, {"model": "template.logicnode", "pk": 2114, "fields": {"state_transition": 498, "node_type": "S", "subcondition": 20, "parent": 2115}}, {"model": "template.logicnode", "pk": 2115, "fields": {"state_transition": 498, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2116, "fields": {"state_transition": 499, "node_type": "S", "subcondition": 23, "parent": 2119}}, {"model": "template.logicnode", "pk": 2117, "fields": {"state_transition": 499, "node_type": "S", "subcondition": 6, "parent": 2119}}, {"model": "template.logicnode", "pk": 2118, "fields": {"state_transition": 499, "node_type": "S", "subcondition": 21, "parent": 2119}}, {"model": "template.logicnode", "pk": 2119, "fields": {"state_transition": 499, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2120, "fields": {"state_transition": 500, "node_type": "S", "subcondition": 23, "parent": 2123}}, {"model": "template.logicnode", "pk": 2121, "fields": {"state_transition": 500, "node_type": "S", "subcondition": 6, "parent": 2123}}, {"model": "template.logicnode", "pk": 2122, "fields": {"state_transition": 500, "node_type": "S", "subcondition": 22, "parent": 2123}}, {"model": "template.logicnode", "pk": 2123, "fields": {"state_transition": 500, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2124, "fields": {"state_transition": 501, "node_type": "N", "subcondition": null, "parent": 2128}}, {"model": "template.logicnode", "pk": 2125, "fields": {"state_transition": 501, "node_type": "S", "subcondition": 23, "parent": 2124}}, {"model": "template.logicnode", "pk": 2126, "fields": {"state_transition": 501, "node_type": "S", "subcondition": 3, "parent": 2128}}, {"model": "template.logicnode", "pk": 2127, "fields": {"state_transition": 501, "node_type": "S", "subcondition": 19, "parent": 2128}}, {"model": "template.logicnode", "pk": 2128, "fields": {"state_transition": 501, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2129, "fields": {"state_transition": 502, "node_type": "N", "subcondition": null, "parent": 2133}}, {"model": "template.logicnode", "pk": 2130, "fields": {"state_transition": 502, "node_type": "S", "subcondition": 23, "parent": 2129}}, {"model": "template.logicnode", "pk": 2131, "fields": {"state_transition": 502, "node_type": "S", "subcondition": 3, "parent": 2133}}, {"model": "template.logicnode", "pk": 2132, "fields": {"state_transition": 502, "node_type": "S", "subcondition": 20, "parent": 2133}}, {"model": "template.logicnode", "pk": 2133, "fields": {"state_transition": 502, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2134, "fields": {"state_transition": 503, "node_type": "N", "subcondition": null, "parent": 2138}}, {"model": "template.logicnode", "pk": 2135, "fields": {"state_transition": 503, "node_type": "S", "subcondition": 23, "parent": 2134}}, {"model": "template.logicnode", "pk": 2136, "fields": {"state_transition": 503, "node_type": "S", "subcondition": 3, "parent": 2138}}, {"model": "template.logicnode", "pk": 2137, "fields": {"state_transition": 503, "node_type": "S", "subcondition": 21, "parent": 2138}}, {"model": "template.logicnode", "pk": 2138, "fields": {"state_transition": 503, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2139, "fields": {"state_transition": 504, "node_type": "N", "subcondition": null, "parent": 2143}}, {"model": "template.logicnode", "pk": 2140, "fields": {"state_transition": 504, "node_type": "S", "subcondition": 23, "parent": 2139}}, {"model": "template.logicnode", "pk": 2141, "fields": {"state_transition": 504, "node_type": "S", "subcondition": 3, "parent": 2143}}, {"model": "template.logicnode", "pk": 2142, "fields": {"state_transition": 504, "node_type": "S", "subcondition": 22, "parent": 2143}}, {"model": "template.logicnode", "pk": 2143, "fields": {"state_transition": 504, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2144, "fields": {"state_transition": 505, "node_type": "N", "subcondition": null, "parent": 2148}}, {"model": "template.logicnode", "pk": 2145, "fields": {"state_transition": 505, "node_type": "S", "subcondition": 23, "parent": 2144}}, {"model": "template.logicnode", "pk": 2146, "fields": {"state_transition": 505, "node_type": "S", "subcondition": 4, "parent": 2148}}, {"model": "template.logicnode", "pk": 2147, "fields": {"state_transition": 505, "node_type": "S", "subcondition": 19, "parent": 2148}}, {"model": "template.logicnode", "pk": 2148, "fields": {"state_transition": 505, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2149, "fields": {"state_transition": 506, "node_type": "N", "subcondition": null, "parent": 2153}}, {"model": "template.logicnode", "pk": 2150, "fields": {"state_transition": 506, "node_type": "S", "subcondition": 23, "parent": 2149}}, {"model": "template.logicnode", "pk": 2151, "fields": {"state_transition": 506, "node_type": "S", "subcondition": 4, "parent": 2153}}, {"model": "template.logicnode", "pk": 2152, "fields": {"state_transition": 506, "node_type": "S", "subcondition": 20, "parent": 2153}}, {"model": "template.logicnode", "pk": 2153, "fields": {"state_transition": 506, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2154, "fields": {"state_transition": 507, "node_type": "N", "subcondition": null, "parent": 2158}}, {"model": "template.logicnode", "pk": 2155, "fields": {"state_transition": 507, "node_type": "S", "subcondition": 23, "parent": 2154}}, {"model": "template.logicnode", "pk": 2156, "fields": {"state_transition": 507, "node_type": "S", "subcondition": 4, "parent": 2158}}, {"model": "template.logicnode", "pk": 2157, "fields": {"state_transition": 507, "node_type": "S", "subcondition": 21, "parent": 2158}}, {"model": "template.logicnode", "pk": 2158, "fields": {"state_transition": 507, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2159, "fields": {"state_transition": 508, "node_type": "N", "subcondition": null, "parent": 2163}}, {"model": "template.logicnode", "pk": 2160, "fields": {"state_transition": 508, "node_type": "S", "subcondition": 23, "parent": 2159}}, {"model": "template.logicnode", "pk": 2161, "fields": {"state_transition": 508, "node_type": "S", "subcondition": 4, "parent": 2163}}, {"model": "template.logicnode", "pk": 2162, "fields": {"state_transition": 508, "node_type": "S", "subcondition": 22, "parent": 2163}}, {"model": "template.logicnode", "pk": 2163, "fields": {"state_transition": 508, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2164, "fields": {"state_transition": 509, "node_type": "N", "subcondition": null, "parent": 2168}}, {"model": "template.logicnode", "pk": 2165, "fields": {"state_transition": 509, "node_type": "S", "subcondition": 23, "parent": 2164}}, {"model": "template.logicnode", "pk": 2166, "fields": {"state_transition": 509, "node_type": "S", "subcondition": 5, "parent": 2168}}, {"model": "template.logicnode", "pk": 2167, "fields": {"state_transition": 509, "node_type": "S", "subcondition": 19, "parent": 2168}}, {"model": "template.logicnode", "pk": 2168, "fields": {"state_transition": 509, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2169, "fields": {"state_transition": 510, "node_type": "N", "subcondition": null, "parent": 2173}}, {"model": "template.logicnode", "pk": 2170, "fields": {"state_transition": 510, "node_type": "S", "subcondition": 23, "parent": 2169}}, {"model": "template.logicnode", "pk": 2171, "fields": {"state_transition": 510, "node_type": "S", "subcondition": 5, "parent": 2173}}, {"model": "template.logicnode", "pk": 2172, "fields": {"state_transition": 510, "node_type": "S", "subcondition": 20, "parent": 2173}}, {"model": "template.logicnode", "pk": 2173, "fields": {"state_transition": 510, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2174, "fields": {"state_transition": 511, "node_type": "N", "subcondition": null, "parent": 2178}}, {"model": "template.logicnode", "pk": 2175, "fields": {"state_transition": 511, "node_type": "S", "subcondition": 23, "parent": 2174}}, {"model": "template.logicnode", "pk": 2176, "fields": {"state_transition": 511, "node_type": "S", "subcondition": 5, "parent": 2178}}, {"model": "template.logicnode", "pk": 2177, "fields": {"state_transition": 511, "node_type": "S", "subcondition": 21, "parent": 2178}}, {"model": "template.logicnode", "pk": 2178, "fields": {"state_transition": 511, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2179, "fields": {"state_transition": 512, "node_type": "N", "subcondition": null, "parent": 2183}}, {"model": "template.logicnode", "pk": 2180, "fields": {"state_transition": 512, "node_type": "S", "subcondition": 23, "parent": 2179}}, {"model": "template.logicnode", "pk": 2181, "fields": {"state_transition": 512, "node_type": "S", "subcondition": 5, "parent": 2183}}, {"model": "template.logicnode", "pk": 2182, "fields": {"state_transition": 512, "node_type": "S", "subcondition": 22, "parent": 2183}}, {"model": "template.logicnode", "pk": 2183, "fields": {"state_transition": 512, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2184, "fields": {"state_transition": 513, "node_type": "N", "subcondition": null, "parent": 2188}}, {"model": "template.logicnode", "pk": 2185, "fields": {"state_transition": 513, "node_type": "S", "subcondition": 23, "parent": 2184}}, {"model": "template.logicnode", "pk": 2186, "fields": {"state_transition": 513, "node_type": "S", "subcondition": 6, "parent": 2188}}, {"model": "template.logicnode", "pk": 2187, "fields": {"state_transition": 513, "node_type": "S", "subcondition": 19, "parent": 2188}}, {"model": "template.logicnode", "pk": 2188, "fields": {"state_transition": 513, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2189, "fields": {"state_transition": 514, "node_type": "N", "subcondition": null, "parent": 2193}}, {"model": "template.logicnode", "pk": 2190, "fields": {"state_transition": 514, "node_type": "S", "subcondition": 23, "parent": 2189}}, {"model": "template.logicnode", "pk": 2191, "fields": {"state_transition": 514, "node_type": "S", "subcondition": 6, "parent": 2193}}, {"model": "template.logicnode", "pk": 2192, "fields": {"state_transition": 514, "node_type": "S", "subcondition": 20, "parent": 2193}}, {"model": "template.logicnode", "pk": 2193, "fields": {"state_transition": 514, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2194, "fields": {"state_transition": 515, "node_type": "N", "subcondition": null, "parent": 2198}}, {"model": "template.logicnode", "pk": 2195, "fields": {"state_transition": 515, "node_type": "S", "subcondition": 23, "parent": 2194}}, {"model": "template.logicnode", "pk": 2196, "fields": {"state_transition": 515, "node_type": "S", "subcondition": 6, "parent": 2198}}, {"model": "template.logicnode", "pk": 2197, "fields": {"state_transition": 515, "node_type": "S", "subcondition": 21, "parent": 2198}}, {"model": "template.logicnode", "pk": 2198, "fields": {"state_transition": 515, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2199, "fields": {"state_transition": 516, "node_type": "N", "subcondition": null, "parent": 2203}}, {"model": "template.logicnode", "pk": 2200, "fields": {"state_transition": 516, "node_type": "S", "subcondition": 23, "parent": 2199}}, {"model": "template.logicnode", "pk": 2201, "fields": {"state_transition": 516, "node_type": "S", "subcondition": 6, "parent": 2203}}, {"model": "template.logicnode", "pk": 2202, "fields": {"state_transition": 516, "node_type": "S", "subcondition": 22, "parent": 2203}}, {"model": "template.logicnode", "pk": 2203, "fields": {"state_transition": 516, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2204, "fields": {"state_transition": 517, "node_type": "S", "subcondition": 23, "parent": 2207}}, {"model": "template.logicnode", "pk": 2205, "fields": {"state_transition": 517, "node_type": "S", "subcondition": 3, "parent": 2207}}, {"model": "template.logicnode", "pk": 2206, "fields": {"state_transition": 517, "node_type": "S", "subcondition": 19, "parent": 2207}}, {"model": "template.logicnode", "pk": 2207, "fields": {"state_transition": 517, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2208, "fields": {"state_transition": 518, "node_type": "S", "subcondition": 23, "parent": 2211}}, {"model": "template.logicnode", "pk": 2209, "fields": {"state_transition": 518, "node_type": "S", "subcondition": 3, "parent": 2211}}, {"model": "template.logicnode", "pk": 2210, "fields": {"state_transition": 518, "node_type": "S", "subcondition": 20, "parent": 2211}}, {"model": "template.logicnode", "pk": 2211, "fields": {"state_transition": 518, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2212, "fields": {"state_transition": 519, "node_type": "S", "subcondition": 23, "parent": 2215}}, {"model": "template.logicnode", "pk": 2213, "fields": {"state_transition": 519, "node_type": "S", "subcondition": 3, "parent": 2215}}, {"model": "template.logicnode", "pk": 2214, "fields": {"state_transition": 519, "node_type": "S", "subcondition": 21, "parent": 2215}}, {"model": "template.logicnode", "pk": 2215, "fields": {"state_transition": 519, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2216, "fields": {"state_transition": 520, "node_type": "S", "subcondition": 23, "parent": 2219}}, {"model": "template.logicnode", "pk": 2217, "fields": {"state_transition": 520, "node_type": "S", "subcondition": 3, "parent": 2219}}, {"model": "template.logicnode", "pk": 2218, "fields": {"state_transition": 520, "node_type": "S", "subcondition": 22, "parent": 2219}}, {"model": "template.logicnode", "pk": 2219, "fields": {"state_transition": 520, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2220, "fields": {"state_transition": 521, "node_type": "S", "subcondition": 23, "parent": 2223}}, {"model": "template.logicnode", "pk": 2221, "fields": {"state_transition": 521, "node_type": "S", "subcondition": 4, "parent": 2223}}, {"model": "template.logicnode", "pk": 2222, "fields": {"state_transition": 521, "node_type": "S", "subcondition": 19, "parent": 2223}}, {"model": "template.logicnode", "pk": 2223, "fields": {"state_transition": 521, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2224, "fields": {"state_transition": 522, "node_type": "S", "subcondition": 23, "parent": 2227}}, {"model": "template.logicnode", "pk": 2225, "fields": {"state_transition": 522, "node_type": "S", "subcondition": 4, "parent": 2227}}, {"model": "template.logicnode", "pk": 2226, "fields": {"state_transition": 522, "node_type": "S", "subcondition": 20, "parent": 2227}}, {"model": "template.logicnode", "pk": 2227, "fields": {"state_transition": 522, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2228, "fields": {"state_transition": 523, "node_type": "S", "subcondition": 23, "parent": 2231}}, {"model": "template.logicnode", "pk": 2229, "fields": {"state_transition": 523, "node_type": "S", "subcondition": 4, "parent": 2231}}, {"model": "template.logicnode", "pk": 2230, "fields": {"state_transition": 523, "node_type": "S", "subcondition": 21, "parent": 2231}}, {"model": "template.logicnode", "pk": 2231, "fields": {"state_transition": 523, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2232, "fields": {"state_transition": 524, "node_type": "S", "subcondition": 23, "parent": 2235}}, {"model": "template.logicnode", "pk": 2233, "fields": {"state_transition": 524, "node_type": "S", "subcondition": 4, "parent": 2235}}, {"model": "template.logicnode", "pk": 2234, "fields": {"state_transition": 524, "node_type": "S", "subcondition": 22, "parent": 2235}}, {"model": "template.logicnode", "pk": 2235, "fields": {"state_transition": 524, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2236, "fields": {"state_transition": 525, "node_type": "S", "subcondition": 23, "parent": 2239}}, {"model": "template.logicnode", "pk": 2237, "fields": {"state_transition": 525, "node_type": "S", "subcondition": 5, "parent": 2239}}, {"model": "template.logicnode", "pk": 2238, "fields": {"state_transition": 525, "node_type": "S", "subcondition": 19, "parent": 2239}}, {"model": "template.logicnode", "pk": 2239, "fields": {"state_transition": 525, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2240, "fields": {"state_transition": 526, "node_type": "S", "subcondition": 23, "parent": 2243}}, {"model": "template.logicnode", "pk": 2241, "fields": {"state_transition": 526, "node_type": "S", "subcondition": 5, "parent": 2243}}, {"model": "template.logicnode", "pk": 2242, "fields": {"state_transition": 526, "node_type": "S", "subcondition": 20, "parent": 2243}}, {"model": "template.logicnode", "pk": 2243, "fields": {"state_transition": 526, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2244, "fields": {"state_transition": 527, "node_type": "S", "subcondition": 23, "parent": 2247}}, {"model": "template.logicnode", "pk": 2245, "fields": {"state_transition": 527, "node_type": "S", "subcondition": 5, "parent": 2247}}, {"model": "template.logicnode", "pk": 2246, "fields": {"state_transition": 527, "node_type": "S", "subcondition": 21, "parent": 2247}}, {"model": "template.logicnode", "pk": 2247, "fields": {"state_transition": 527, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2248, "fields": {"state_transition": 528, "node_type": "S", "subcondition": 23, "parent": 2251}}, {"model": "template.logicnode", "pk": 2249, "fields": {"state_transition": 528, "node_type": "S", "subcondition": 5, "parent": 2251}}, {"model": "template.logicnode", "pk": 2250, "fields": {"state_transition": 528, "node_type": "S", "subcondition": 22, "parent": 2251}}, {"model": "template.logicnode", "pk": 2251, "fields": {"state_transition": 528, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2252, "fields": {"state_transition": 529, "node_type": "S", "subcondition": 23, "parent": 2255}}, {"model": "template.logicnode", "pk": 2253, "fields": {"state_transition": 529, "node_type": "S", "subcondition": 6, "parent": 2255}}, {"model": "template.logicnode", "pk": 2254, "fields": {"state_transition": 529, "node_type": "S", "subcondition": 19, "parent": 2255}}, {"model": "template.logicnode", "pk": 2255, "fields": {"state_transition": 529, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2256, "fields": {"state_transition": 530, "node_type": "S", "subcondition": 23, "parent": 2259}}, {"model": "template.logicnode", "pk": 2257, "fields": {"state_transition": 530, "node_type": "S", "subcondition": 6, "parent": 2259}}, {"model": "template.logicnode", "pk": 2258, "fields": {"state_transition": 530, "node_type": "S", "subcondition": 20, "parent": 2259}}, {"model": "template.logicnode", "pk": 2259, "fields": {"state_transition": 530, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2260, "fields": {"state_transition": 531, "node_type": "S", "subcondition": 23, "parent": 2263}}, {"model": "template.logicnode", "pk": 2261, "fields": {"state_transition": 531, "node_type": "S", "subcondition": 6, "parent": 2263}}, {"model": "template.logicnode", "pk": 2262, "fields": {"state_transition": 531, "node_type": "S", "subcondition": 21, "parent": 2263}}, {"model": "template.logicnode", "pk": 2263, "fields": {"state_transition": 531, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2264, "fields": {"state_transition": 532, "node_type": "S", "subcondition": 23, "parent": 2267}}, {"model": "template.logicnode", "pk": 2265, "fields": {"state_transition": 532, "node_type": "S", "subcondition": 6, "parent": 2267}}, {"model": "template.logicnode", "pk": 2266, "fields": {"state_transition": 532, "node_type": "S", "subcondition": 22, "parent": 2267}}, {"model": "template.logicnode", "pk": 2267, "fields": {"state_transition": 532, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2268, "fields": {"state_transition": 533, "node_type": "N", "subcondition": null, "parent": 2272}}, {"model": "template.logicnode", "pk": 2269, "fields": {"state_transition": 533, "node_type": "S", "subcondition": 23, "parent": 2268}}, {"model": "template.logicnode", "pk": 2270, "fields": {"state_transition": 533, "node_type": "S", "subcondition": 3, "parent": 2272}}, {"model": "template.logicnode", "pk": 2271, "fields": {"state_transition": 533, "node_type": "S", "subcondition": 19, "parent": 2272}}, {"model": "template.logicnode", "pk": 2272, "fields": {"state_transition": 533, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2273, "fields": {"state_transition": 534, "node_type": "N", "subcondition": null, "parent": 2277}}, {"model": "template.logicnode", "pk": 2274, "fields": {"state_transition": 534, "node_type": "S", "subcondition": 23, "parent": 2273}}, {"model": "template.logicnode", "pk": 2275, "fields": {"state_transition": 534, "node_type": "S", "subcondition": 3, "parent": 2277}}, {"model": "template.logicnode", "pk": 2276, "fields": {"state_transition": 534, "node_type": "S", "subcondition": 20, "parent": 2277}}, {"model": "template.logicnode", "pk": 2277, "fields": {"state_transition": 534, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2278, "fields": {"state_transition": 535, "node_type": "N", "subcondition": null, "parent": 2282}}, {"model": "template.logicnode", "pk": 2279, "fields": {"state_transition": 535, "node_type": "S", "subcondition": 23, "parent": 2278}}, {"model": "template.logicnode", "pk": 2280, "fields": {"state_transition": 535, "node_type": "S", "subcondition": 3, "parent": 2282}}, {"model": "template.logicnode", "pk": 2281, "fields": {"state_transition": 535, "node_type": "S", "subcondition": 21, "parent": 2282}}, {"model": "template.logicnode", "pk": 2282, "fields": {"state_transition": 535, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2283, "fields": {"state_transition": 536, "node_type": "N", "subcondition": null, "parent": 2287}}, {"model": "template.logicnode", "pk": 2284, "fields": {"state_transition": 536, "node_type": "S", "subcondition": 23, "parent": 2283}}, {"model": "template.logicnode", "pk": 2285, "fields": {"state_transition": 536, "node_type": "S", "subcondition": 3, "parent": 2287}}, {"model": "template.logicnode", "pk": 2286, "fields": {"state_transition": 536, "node_type": "S", "subcondition": 22, "parent": 2287}}, {"model": "template.logicnode", "pk": 2287, "fields": {"state_transition": 536, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2288, "fields": {"state_transition": 537, "node_type": "N", "subcondition": null, "parent": 2292}}, {"model": "template.logicnode", "pk": 2289, "fields": {"state_transition": 537, "node_type": "S", "subcondition": 23, "parent": 2288}}, {"model": "template.logicnode", "pk": 2290, "fields": {"state_transition": 537, "node_type": "S", "subcondition": 4, "parent": 2292}}, {"model": "template.logicnode", "pk": 2291, "fields": {"state_transition": 537, "node_type": "S", "subcondition": 19, "parent": 2292}}, {"model": "template.logicnode", "pk": 2292, "fields": {"state_transition": 537, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2293, "fields": {"state_transition": 538, "node_type": "N", "subcondition": null, "parent": 2297}}, {"model": "template.logicnode", "pk": 2294, "fields": {"state_transition": 538, "node_type": "S", "subcondition": 23, "parent": 2293}}, {"model": "template.logicnode", "pk": 2295, "fields": {"state_transition": 538, "node_type": "S", "subcondition": 4, "parent": 2297}}, {"model": "template.logicnode", "pk": 2296, "fields": {"state_transition": 538, "node_type": "S", "subcondition": 20, "parent": 2297}}, {"model": "template.logicnode", "pk": 2297, "fields": {"state_transition": 538, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2298, "fields": {"state_transition": 539, "node_type": "N", "subcondition": null, "parent": 2302}}, {"model": "template.logicnode", "pk": 2299, "fields": {"state_transition": 539, "node_type": "S", "subcondition": 23, "parent": 2298}}, {"model": "template.logicnode", "pk": 2300, "fields": {"state_transition": 539, "node_type": "S", "subcondition": 4, "parent": 2302}}, {"model": "template.logicnode", "pk": 2301, "fields": {"state_transition": 539, "node_type": "S", "subcondition": 21, "parent": 2302}}, {"model": "template.logicnode", "pk": 2302, "fields": {"state_transition": 539, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2303, "fields": {"state_transition": 540, "node_type": "N", "subcondition": null, "parent": 2307}}, {"model": "template.logicnode", "pk": 2304, "fields": {"state_transition": 540, "node_type": "S", "subcondition": 23, "parent": 2303}}, {"model": "template.logicnode", "pk": 2305, "fields": {"state_transition": 540, "node_type": "S", "subcondition": 4, "parent": 2307}}, {"model": "template.logicnode", "pk": 2306, "fields": {"state_transition": 540, "node_type": "S", "subcondition": 22, "parent": 2307}}, {"model": "template.logicnode", "pk": 2307, "fields": {"state_transition": 540, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2308, "fields": {"state_transition": 541, "node_type": "N", "subcondition": null, "parent": 2312}}, {"model": "template.logicnode", "pk": 2309, "fields": {"state_transition": 541, "node_type": "S", "subcondition": 23, "parent": 2308}}, {"model": "template.logicnode", "pk": 2310, "fields": {"state_transition": 541, "node_type": "S", "subcondition": 5, "parent": 2312}}, {"model": "template.logicnode", "pk": 2311, "fields": {"state_transition": 541, "node_type": "S", "subcondition": 19, "parent": 2312}}, {"model": "template.logicnode", "pk": 2312, "fields": {"state_transition": 541, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2313, "fields": {"state_transition": 542, "node_type": "N", "subcondition": null, "parent": 2317}}, {"model": "template.logicnode", "pk": 2314, "fields": {"state_transition": 542, "node_type": "S", "subcondition": 23, "parent": 2313}}, {"model": "template.logicnode", "pk": 2315, "fields": {"state_transition": 542, "node_type": "S", "subcondition": 5, "parent": 2317}}, {"model": "template.logicnode", "pk": 2316, "fields": {"state_transition": 542, "node_type": "S", "subcondition": 20, "parent": 2317}}, {"model": "template.logicnode", "pk": 2317, "fields": {"state_transition": 542, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2318, "fields": {"state_transition": 543, "node_type": "N", "subcondition": null, "parent": 2322}}, {"model": "template.logicnode", "pk": 2319, "fields": {"state_transition": 543, "node_type": "S", "subcondition": 23, "parent": 2318}}, {"model": "template.logicnode", "pk": 2320, "fields": {"state_transition": 543, "node_type": "S", "subcondition": 5, "parent": 2322}}, {"model": "template.logicnode", "pk": 2321, "fields": {"state_transition": 543, "node_type": "S", "subcondition": 21, "parent": 2322}}, {"model": "template.logicnode", "pk": 2322, "fields": {"state_transition": 543, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2323, "fields": {"state_transition": 544, "node_type": "N", "subcondition": null, "parent": 2327}}, {"model": "template.logicnode", "pk": 2324, "fields": {"state_transition": 544, "node_type": "S", "subcondition": 23, "parent": 2323}}, {"model": "template.logicnode", "pk": 2325, "fields": {"state_transition": 544, "node_type": "S", "subcondition": 5, "parent": 2327}}, {"model": "template.logicnode", "pk": 2326, "fields": {"state_transition": 544, "node_type": "S", "subcondition": 22, "parent": 2327}}, {"model": "template.logicnode", "pk": 2327, "fields": {"state_transition": 544, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2328, "fields": {"state_transition": 545, "node_type": "N", "subcondition": null, "parent": 2332}}, {"model": "template.logicnode", "pk": 2329, "fields": {"state_transition": 545, "node_type": "S", "subcondition": 23, "parent": 2328}}, {"model": "template.logicnode", "pk": 2330, "fields": {"state_transition": 545, "node_type": "S", "subcondition": 6, "parent": 2332}}, {"model": "template.logicnode", "pk": 2331, "fields": {"state_transition": 545, "node_type": "S", "subcondition": 19, "parent": 2332}}, {"model": "template.logicnode", "pk": 2332, "fields": {"state_transition": 545, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2333, "fields": {"state_transition": 546, "node_type": "N", "subcondition": null, "parent": 2337}}, {"model": "template.logicnode", "pk": 2334, "fields": {"state_transition": 546, "node_type": "S", "subcondition": 23, "parent": 2333}}, {"model": "template.logicnode", "pk": 2335, "fields": {"state_transition": 546, "node_type": "S", "subcondition": 6, "parent": 2337}}, {"model": "template.logicnode", "pk": 2336, "fields": {"state_transition": 546, "node_type": "S", "subcondition": 20, "parent": 2337}}, {"model": "template.logicnode", "pk": 2337, "fields": {"state_transition": 546, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2338, "fields": {"state_transition": 547, "node_type": "N", "subcondition": null, "parent": 2342}}, {"model": "template.logicnode", "pk": 2339, "fields": {"state_transition": 547, "node_type": "S", "subcondition": 23, "parent": 2338}}, {"model": "template.logicnode", "pk": 2340, "fields": {"state_transition": 547, "node_type": "S", "subcondition": 6, "parent": 2342}}, {"model": "template.logicnode", "pk": 2341, "fields": {"state_transition": 547, "node_type": "S", "subcondition": 21, "parent": 2342}}, {"model": "template.logicnode", "pk": 2342, "fields": {"state_transition": 547, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2343, "fields": {"state_transition": 548, "node_type": "N", "subcondition": null, "parent": 2347}}, {"model": "template.logicnode", "pk": 2344, "fields": {"state_transition": 548, "node_type": "S", "subcondition": 23, "parent": 2343}}, {"model": "template.logicnode", "pk": 2345, "fields": {"state_transition": 548, "node_type": "S", "subcondition": 6, "parent": 2347}}, {"model": "template.logicnode", "pk": 2346, "fields": {"state_transition": 548, "node_type": "S", "subcondition": 22, "parent": 2347}}, {"model": "template.logicnode", "pk": 2347, "fields": {"state_transition": 548, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2348, "fields": {"state_transition": 549, "node_type": "S", "subcondition": 23, "parent": 2351}}, {"model": "template.logicnode", "pk": 2349, "fields": {"state_transition": 549, "node_type": "S", "subcondition": 3, "parent": 2351}}, {"model": "template.logicnode", "pk": 2350, "fields": {"state_transition": 549, "node_type": "S", "subcondition": 19, "parent": 2351}}, {"model": "template.logicnode", "pk": 2351, "fields": {"state_transition": 549, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2352, "fields": {"state_transition": 550, "node_type": "S", "subcondition": 23, "parent": 2355}}, {"model": "template.logicnode", "pk": 2353, "fields": {"state_transition": 550, "node_type": "S", "subcondition": 3, "parent": 2355}}, {"model": "template.logicnode", "pk": 2354, "fields": {"state_transition": 550, "node_type": "S", "subcondition": 20, "parent": 2355}}, {"model": "template.logicnode", "pk": 2355, "fields": {"state_transition": 550, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2356, "fields": {"state_transition": 551, "node_type": "S", "subcondition": 23, "parent": 2359}}, {"model": "template.logicnode", "pk": 2357, "fields": {"state_transition": 551, "node_type": "S", "subcondition": 3, "parent": 2359}}, {"model": "template.logicnode", "pk": 2358, "fields": {"state_transition": 551, "node_type": "S", "subcondition": 21, "parent": 2359}}, {"model": "template.logicnode", "pk": 2359, "fields": {"state_transition": 551, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2360, "fields": {"state_transition": 552, "node_type": "S", "subcondition": 23, "parent": 2363}}, {"model": "template.logicnode", "pk": 2361, "fields": {"state_transition": 552, "node_type": "S", "subcondition": 3, "parent": 2363}}, {"model": "template.logicnode", "pk": 2362, "fields": {"state_transition": 552, "node_type": "S", "subcondition": 22, "parent": 2363}}, {"model": "template.logicnode", "pk": 2363, "fields": {"state_transition": 552, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2364, "fields": {"state_transition": 553, "node_type": "S", "subcondition": 23, "parent": 2367}}, {"model": "template.logicnode", "pk": 2365, "fields": {"state_transition": 553, "node_type": "S", "subcondition": 4, "parent": 2367}}, {"model": "template.logicnode", "pk": 2366, "fields": {"state_transition": 553, "node_type": "S", "subcondition": 19, "parent": 2367}}, {"model": "template.logicnode", "pk": 2367, "fields": {"state_transition": 553, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2368, "fields": {"state_transition": 554, "node_type": "S", "subcondition": 23, "parent": 2371}}, {"model": "template.logicnode", "pk": 2369, "fields": {"state_transition": 554, "node_type": "S", "subcondition": 4, "parent": 2371}}, {"model": "template.logicnode", "pk": 2370, "fields": {"state_transition": 554, "node_type": "S", "subcondition": 20, "parent": 2371}}, {"model": "template.logicnode", "pk": 2371, "fields": {"state_transition": 554, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2372, "fields": {"state_transition": 555, "node_type": "S", "subcondition": 23, "parent": 2375}}, {"model": "template.logicnode", "pk": 2373, "fields": {"state_transition": 555, "node_type": "S", "subcondition": 4, "parent": 2375}}, {"model": "template.logicnode", "pk": 2374, "fields": {"state_transition": 555, "node_type": "S", "subcondition": 21, "parent": 2375}}, {"model": "template.logicnode", "pk": 2375, "fields": {"state_transition": 555, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2376, "fields": {"state_transition": 556, "node_type": "S", "subcondition": 23, "parent": 2379}}, {"model": "template.logicnode", "pk": 2377, "fields": {"state_transition": 556, "node_type": "S", "subcondition": 4, "parent": 2379}}, {"model": "template.logicnode", "pk": 2378, "fields": {"state_transition": 556, "node_type": "S", "subcondition": 22, "parent": 2379}}, {"model": "template.logicnode", "pk": 2379, "fields": {"state_transition": 556, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2380, "fields": {"state_transition": 557, "node_type": "S", "subcondition": 23, "parent": 2383}}, {"model": "template.logicnode", "pk": 2381, "fields": {"state_transition": 557, "node_type": "S", "subcondition": 5, "parent": 2383}}, {"model": "template.logicnode", "pk": 2382, "fields": {"state_transition": 557, "node_type": "S", "subcondition": 19, "parent": 2383}}, {"model": "template.logicnode", "pk": 2383, "fields": {"state_transition": 557, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2384, "fields": {"state_transition": 558, "node_type": "S", "subcondition": 23, "parent": 2387}}, {"model": "template.logicnode", "pk": 2385, "fields": {"state_transition": 558, "node_type": "S", "subcondition": 5, "parent": 2387}}, {"model": "template.logicnode", "pk": 2386, "fields": {"state_transition": 558, "node_type": "S", "subcondition": 20, "parent": 2387}}, {"model": "template.logicnode", "pk": 2387, "fields": {"state_transition": 558, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2388, "fields": {"state_transition": 559, "node_type": "S", "subcondition": 23, "parent": 2391}}, {"model": "template.logicnode", "pk": 2389, "fields": {"state_transition": 559, "node_type": "S", "subcondition": 5, "parent": 2391}}, {"model": "template.logicnode", "pk": 2390, "fields": {"state_transition": 559, "node_type": "S", "subcondition": 21, "parent": 2391}}, {"model": "template.logicnode", "pk": 2391, "fields": {"state_transition": 559, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2392, "fields": {"state_transition": 560, "node_type": "S", "subcondition": 23, "parent": 2395}}, {"model": "template.logicnode", "pk": 2393, "fields": {"state_transition": 560, "node_type": "S", "subcondition": 5, "parent": 2395}}, {"model": "template.logicnode", "pk": 2394, "fields": {"state_transition": 560, "node_type": "S", "subcondition": 22, "parent": 2395}}, {"model": "template.logicnode", "pk": 2395, "fields": {"state_transition": 560, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2396, "fields": {"state_transition": 561, "node_type": "S", "subcondition": 23, "parent": 2399}}, {"model": "template.logicnode", "pk": 2397, "fields": {"state_transition": 561, "node_type": "S", "subcondition": 6, "parent": 2399}}, {"model": "template.logicnode", "pk": 2398, "fields": {"state_transition": 561, "node_type": "S", "subcondition": 19, "parent": 2399}}, {"model": "template.logicnode", "pk": 2399, "fields": {"state_transition": 561, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2400, "fields": {"state_transition": 562, "node_type": "S", "subcondition": 23, "parent": 2403}}, {"model": "template.logicnode", "pk": 2401, "fields": {"state_transition": 562, "node_type": "S", "subcondition": 6, "parent": 2403}}, {"model": "template.logicnode", "pk": 2402, "fields": {"state_transition": 562, "node_type": "S", "subcondition": 20, "parent": 2403}}, {"model": "template.logicnode", "pk": 2403, "fields": {"state_transition": 562, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2404, "fields": {"state_transition": 563, "node_type": "S", "subcondition": 23, "parent": 2407}}, {"model": "template.logicnode", "pk": 2405, "fields": {"state_transition": 563, "node_type": "S", "subcondition": 6, "parent": 2407}}, {"model": "template.logicnode", "pk": 2406, "fields": {"state_transition": 563, "node_type": "S", "subcondition": 21, "parent": 2407}}, {"model": "template.logicnode", "pk": 2407, "fields": {"state_transition": 563, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2408, "fields": {"state_transition": 564, "node_type": "S", "subcondition": 23, "parent": 2411}}, {"model": "template.logicnode", "pk": 2409, "fields": {"state_transition": 564, "node_type": "S", "subcondition": 6, "parent": 2411}}, {"model": "template.logicnode", "pk": 2410, "fields": {"state_transition": 564, "node_type": "S", "subcondition": 22, "parent": 2411}}, {"model": "template.logicnode", "pk": 2411, "fields": {"state_transition": 564, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2412, "fields": {"state_transition": 565, "node_type": "N", "subcondition": null, "parent": 2416}}, {"model": "template.logicnode", "pk": 2413, "fields": {"state_transition": 565, "node_type": "S", "subcondition": 23, "parent": 2412}}, {"model": "template.logicnode", "pk": 2414, "fields": {"state_transition": 565, "node_type": "S", "subcondition": 3, "parent": 2416}}, {"model": "template.logicnode", "pk": 2415, "fields": {"state_transition": 565, "node_type": "S", "subcondition": 19, "parent": 2416}}, {"model": "template.logicnode", "pk": 2416, "fields": {"state_transition": 565, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2417, "fields": {"state_transition": 566, "node_type": "N", "subcondition": null, "parent": 2421}}, {"model": "template.logicnode", "pk": 2418, "fields": {"state_transition": 566, "node_type": "S", "subcondition": 23, "parent": 2417}}, {"model": "template.logicnode", "pk": 2419, "fields": {"state_transition": 566, "node_type": "S", "subcondition": 3, "parent": 2421}}, {"model": "template.logicnode", "pk": 2420, "fields": {"state_transition": 566, "node_type": "S", "subcondition": 20, "parent": 2421}}, {"model": "template.logicnode", "pk": 2421, "fields": {"state_transition": 566, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2422, "fields": {"state_transition": 567, "node_type": "N", "subcondition": null, "parent": 2426}}, {"model": "template.logicnode", "pk": 2423, "fields": {"state_transition": 567, "node_type": "S", "subcondition": 23, "parent": 2422}}, {"model": "template.logicnode", "pk": 2424, "fields": {"state_transition": 567, "node_type": "S", "subcondition": 3, "parent": 2426}}, {"model": "template.logicnode", "pk": 2425, "fields": {"state_transition": 567, "node_type": "S", "subcondition": 21, "parent": 2426}}, {"model": "template.logicnode", "pk": 2426, "fields": {"state_transition": 567, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2427, "fields": {"state_transition": 568, "node_type": "N", "subcondition": null, "parent": 2431}}, {"model": "template.logicnode", "pk": 2428, "fields": {"state_transition": 568, "node_type": "S", "subcondition": 23, "parent": 2427}}, {"model": "template.logicnode", "pk": 2429, "fields": {"state_transition": 568, "node_type": "S", "subcondition": 3, "parent": 2431}}, {"model": "template.logicnode", "pk": 2430, "fields": {"state_transition": 568, "node_type": "S", "subcondition": 22, "parent": 2431}}, {"model": "template.logicnode", "pk": 2431, "fields": {"state_transition": 568, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2432, "fields": {"state_transition": 569, "node_type": "N", "subcondition": null, "parent": 2436}}, {"model": "template.logicnode", "pk": 2433, "fields": {"state_transition": 569, "node_type": "S", "subcondition": 23, "parent": 2432}}, {"model": "template.logicnode", "pk": 2434, "fields": {"state_transition": 569, "node_type": "S", "subcondition": 4, "parent": 2436}}, {"model": "template.logicnode", "pk": 2435, "fields": {"state_transition": 569, "node_type": "S", "subcondition": 19, "parent": 2436}}, {"model": "template.logicnode", "pk": 2436, "fields": {"state_transition": 569, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2437, "fields": {"state_transition": 570, "node_type": "N", "subcondition": null, "parent": 2441}}, {"model": "template.logicnode", "pk": 2438, "fields": {"state_transition": 570, "node_type": "S", "subcondition": 23, "parent": 2437}}, {"model": "template.logicnode", "pk": 2439, "fields": {"state_transition": 570, "node_type": "S", "subcondition": 4, "parent": 2441}}, {"model": "template.logicnode", "pk": 2440, "fields": {"state_transition": 570, "node_type": "S", "subcondition": 20, "parent": 2441}}, {"model": "template.logicnode", "pk": 2441, "fields": {"state_transition": 570, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2442, "fields": {"state_transition": 571, "node_type": "N", "subcondition": null, "parent": 2446}}, {"model": "template.logicnode", "pk": 2443, "fields": {"state_transition": 571, "node_type": "S", "subcondition": 23, "parent": 2442}}, {"model": "template.logicnode", "pk": 2444, "fields": {"state_transition": 571, "node_type": "S", "subcondition": 4, "parent": 2446}}, {"model": "template.logicnode", "pk": 2445, "fields": {"state_transition": 571, "node_type": "S", "subcondition": 21, "parent": 2446}}, {"model": "template.logicnode", "pk": 2446, "fields": {"state_transition": 571, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2447, "fields": {"state_transition": 572, "node_type": "N", "subcondition": null, "parent": 2451}}, {"model": "template.logicnode", "pk": 2448, "fields": {"state_transition": 572, "node_type": "S", "subcondition": 23, "parent": 2447}}, {"model": "template.logicnode", "pk": 2449, "fields": {"state_transition": 572, "node_type": "S", "subcondition": 4, "parent": 2451}}, {"model": "template.logicnode", "pk": 2450, "fields": {"state_transition": 572, "node_type": "S", "subcondition": 22, "parent": 2451}}, {"model": "template.logicnode", "pk": 2451, "fields": {"state_transition": 572, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2452, "fields": {"state_transition": 573, "node_type": "N", "subcondition": null, "parent": 2456}}, {"model": "template.logicnode", "pk": 2453, "fields": {"state_transition": 573, "node_type": "S", "subcondition": 23, "parent": 2452}}, {"model": "template.logicnode", "pk": 2454, "fields": {"state_transition": 573, "node_type": "S", "subcondition": 5, "parent": 2456}}, {"model": "template.logicnode", "pk": 2455, "fields": {"state_transition": 573, "node_type": "S", "subcondition": 19, "parent": 2456}}, {"model": "template.logicnode", "pk": 2456, "fields": {"state_transition": 573, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2457, "fields": {"state_transition": 574, "node_type": "N", "subcondition": null, "parent": 2461}}, {"model": "template.logicnode", "pk": 2458, "fields": {"state_transition": 574, "node_type": "S", "subcondition": 23, "parent": 2457}}, {"model": "template.logicnode", "pk": 2459, "fields": {"state_transition": 574, "node_type": "S", "subcondition": 5, "parent": 2461}}, {"model": "template.logicnode", "pk": 2460, "fields": {"state_transition": 574, "node_type": "S", "subcondition": 20, "parent": 2461}}, {"model": "template.logicnode", "pk": 2461, "fields": {"state_transition": 574, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2462, "fields": {"state_transition": 575, "node_type": "N", "subcondition": null, "parent": 2466}}, {"model": "template.logicnode", "pk": 2463, "fields": {"state_transition": 575, "node_type": "S", "subcondition": 23, "parent": 2462}}, {"model": "template.logicnode", "pk": 2464, "fields": {"state_transition": 575, "node_type": "S", "subcondition": 5, "parent": 2466}}, {"model": "template.logicnode", "pk": 2465, "fields": {"state_transition": 575, "node_type": "S", "subcondition": 21, "parent": 2466}}, {"model": "template.logicnode", "pk": 2466, "fields": {"state_transition": 575, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2467, "fields": {"state_transition": 576, "node_type": "N", "subcondition": null, "parent": 2471}}, {"model": "template.logicnode", "pk": 2468, "fields": {"state_transition": 576, "node_type": "S", "subcondition": 23, "parent": 2467}}, {"model": "template.logicnode", "pk": 2469, "fields": {"state_transition": 576, "node_type": "S", "subcondition": 5, "parent": 2471}}, {"model": "template.logicnode", "pk": 2470, "fields": {"state_transition": 576, "node_type": "S", "subcondition": 22, "parent": 2471}}, {"model": "template.logicnode", "pk": 2471, "fields": {"state_transition": 576, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2472, "fields": {"state_transition": 577, "node_type": "N", "subcondition": null, "parent": 2476}}, {"model": "template.logicnode", "pk": 2473, "fields": {"state_transition": 577, "node_type": "S", "subcondition": 23, "parent": 2472}}, {"model": "template.logicnode", "pk": 2474, "fields": {"state_transition": 577, "node_type": "S", "subcondition": 6, "parent": 2476}}, {"model": "template.logicnode", "pk": 2475, "fields": {"state_transition": 577, "node_type": "S", "subcondition": 19, "parent": 2476}}, {"model": "template.logicnode", "pk": 2476, "fields": {"state_transition": 577, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2477, "fields": {"state_transition": 578, "node_type": "N", "subcondition": null, "parent": 2481}}, {"model": "template.logicnode", "pk": 2478, "fields": {"state_transition": 578, "node_type": "S", "subcondition": 23, "parent": 2477}}, {"model": "template.logicnode", "pk": 2479, "fields": {"state_transition": 578, "node_type": "S", "subcondition": 6, "parent": 2481}}, {"model": "template.logicnode", "pk": 2480, "fields": {"state_transition": 578, "node_type": "S", "subcondition": 20, "parent": 2481}}, {"model": "template.logicnode", "pk": 2481, "fields": {"state_transition": 578, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2482, "fields": {"state_transition": 579, "node_type": "N", "subcondition": null, "parent": 2486}}, {"model": "template.logicnode", "pk": 2483, "fields": {"state_transition": 579, "node_type": "S", "subcondition": 23, "parent": 2482}}, {"model": "template.logicnode", "pk": 2484, "fields": {"state_transition": 579, "node_type": "S", "subcondition": 6, "parent": 2486}}, {"model": "template.logicnode", "pk": 2485, "fields": {"state_transition": 579, "node_type": "S", "subcondition": 21, "parent": 2486}}, {"model": "template.logicnode", "pk": 2486, "fields": {"state_transition": 579, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2487, "fields": {"state_transition": 580, "node_type": "N", "subcondition": null, "parent": 2491}}, {"model": "template.logicnode", "pk": 2488, "fields": {"state_transition": 580, "node_type": "S", "subcondition": 23, "parent": 2487}}, {"model": "template.logicnode", "pk": 2489, "fields": {"state_transition": 580, "node_type": "S", "subcondition": 6, "parent": 2491}}, {"model": "template.logicnode", "pk": 2490, "fields": {"state_transition": 580, "node_type": "S", "subcondition": 22, "parent": 2491}}, {"model": "template.logicnode", "pk": 2491, "fields": {"state_transition": 580, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2492, "fields": {"state_transition": 581, "node_type": "S", "subcondition": 23, "parent": 2495}}, {"model": "template.logicnode", "pk": 2493, "fields": {"state_transition": 581, "node_type": "S", "subcondition": 3, "parent": 2495}}, {"model": "template.logicnode", "pk": 2494, "fields": {"state_transition": 581, "node_type": "S", "subcondition": 19, "parent": 2495}}, {"model": "template.logicnode", "pk": 2495, "fields": {"state_transition": 581, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2496, "fields": {"state_transition": 582, "node_type": "S", "subcondition": 23, "parent": 2499}}, {"model": "template.logicnode", "pk": 2497, "fields": {"state_transition": 582, "node_type": "S", "subcondition": 3, "parent": 2499}}, {"model": "template.logicnode", "pk": 2498, "fields": {"state_transition": 582, "node_type": "S", "subcondition": 20, "parent": 2499}}, {"model": "template.logicnode", "pk": 2499, "fields": {"state_transition": 582, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2500, "fields": {"state_transition": 583, "node_type": "S", "subcondition": 23, "parent": 2503}}, {"model": "template.logicnode", "pk": 2501, "fields": {"state_transition": 583, "node_type": "S", "subcondition": 3, "parent": 2503}}, {"model": "template.logicnode", "pk": 2502, "fields": {"state_transition": 583, "node_type": "S", "subcondition": 21, "parent": 2503}}, {"model": "template.logicnode", "pk": 2503, "fields": {"state_transition": 583, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2504, "fields": {"state_transition": 584, "node_type": "S", "subcondition": 23, "parent": 2507}}, {"model": "template.logicnode", "pk": 2505, "fields": {"state_transition": 584, "node_type": "S", "subcondition": 3, "parent": 2507}}, {"model": "template.logicnode", "pk": 2506, "fields": {"state_transition": 584, "node_type": "S", "subcondition": 22, "parent": 2507}}, {"model": "template.logicnode", "pk": 2507, "fields": {"state_transition": 584, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2508, "fields": {"state_transition": 585, "node_type": "S", "subcondition": 23, "parent": 2511}}, {"model": "template.logicnode", "pk": 2509, "fields": {"state_transition": 585, "node_type": "S", "subcondition": 4, "parent": 2511}}, {"model": "template.logicnode", "pk": 2510, "fields": {"state_transition": 585, "node_type": "S", "subcondition": 19, "parent": 2511}}, {"model": "template.logicnode", "pk": 2511, "fields": {"state_transition": 585, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2512, "fields": {"state_transition": 586, "node_type": "S", "subcondition": 23, "parent": 2515}}, {"model": "template.logicnode", "pk": 2513, "fields": {"state_transition": 586, "node_type": "S", "subcondition": 4, "parent": 2515}}, {"model": "template.logicnode", "pk": 2514, "fields": {"state_transition": 586, "node_type": "S", "subcondition": 20, "parent": 2515}}, {"model": "template.logicnode", "pk": 2515, "fields": {"state_transition": 586, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2516, "fields": {"state_transition": 587, "node_type": "S", "subcondition": 23, "parent": 2519}}, {"model": "template.logicnode", "pk": 2517, "fields": {"state_transition": 587, "node_type": "S", "subcondition": 4, "parent": 2519}}, {"model": "template.logicnode", "pk": 2518, "fields": {"state_transition": 587, "node_type": "S", "subcondition": 21, "parent": 2519}}, {"model": "template.logicnode", "pk": 2519, "fields": {"state_transition": 587, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2520, "fields": {"state_transition": 588, "node_type": "S", "subcondition": 23, "parent": 2523}}, {"model": "template.logicnode", "pk": 2521, "fields": {"state_transition": 588, "node_type": "S", "subcondition": 4, "parent": 2523}}, {"model": "template.logicnode", "pk": 2522, "fields": {"state_transition": 588, "node_type": "S", "subcondition": 22, "parent": 2523}}, {"model": "template.logicnode", "pk": 2523, "fields": {"state_transition": 588, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2524, "fields": {"state_transition": 589, "node_type": "S", "subcondition": 23, "parent": 2527}}, {"model": "template.logicnode", "pk": 2525, "fields": {"state_transition": 589, "node_type": "S", "subcondition": 5, "parent": 2527}}, {"model": "template.logicnode", "pk": 2526, "fields": {"state_transition": 589, "node_type": "S", "subcondition": 19, "parent": 2527}}, {"model": "template.logicnode", "pk": 2527, "fields": {"state_transition": 589, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2528, "fields": {"state_transition": 590, "node_type": "S", "subcondition": 23, "parent": 2531}}, {"model": "template.logicnode", "pk": 2529, "fields": {"state_transition": 590, "node_type": "S", "subcondition": 5, "parent": 2531}}, {"model": "template.logicnode", "pk": 2530, "fields": {"state_transition": 590, "node_type": "S", "subcondition": 20, "parent": 2531}}, {"model": "template.logicnode", "pk": 2531, "fields": {"state_transition": 590, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2532, "fields": {"state_transition": 591, "node_type": "S", "subcondition": 23, "parent": 2535}}, {"model": "template.logicnode", "pk": 2533, "fields": {"state_transition": 591, "node_type": "S", "subcondition": 5, "parent": 2535}}, {"model": "template.logicnode", "pk": 2534, "fields": {"state_transition": 591, "node_type": "S", "subcondition": 21, "parent": 2535}}, {"model": "template.logicnode", "pk": 2535, "fields": {"state_transition": 591, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2536, "fields": {"state_transition": 592, "node_type": "S", "subcondition": 23, "parent": 2539}}, {"model": "template.logicnode", "pk": 2537, "fields": {"state_transition": 592, "node_type": "S", "subcondition": 5, "parent": 2539}}, {"model": "template.logicnode", "pk": 2538, "fields": {"state_transition": 592, "node_type": "S", "subcondition": 22, "parent": 2539}}, {"model": "template.logicnode", "pk": 2539, "fields": {"state_transition": 592, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2540, "fields": {"state_transition": 593, "node_type": "S", "subcondition": 23, "parent": 2543}}, {"model": "template.logicnode", "pk": 2541, "fields": {"state_transition": 593, "node_type": "S", "subcondition": 6, "parent": 2543}}, {"model": "template.logicnode", "pk": 2542, "fields": {"state_transition": 593, "node_type": "S", "subcondition": 19, "parent": 2543}}, {"model": "template.logicnode", "pk": 2543, "fields": {"state_transition": 593, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2544, "fields": {"state_transition": 594, "node_type": "S", "subcondition": 23, "parent": 2547}}, {"model": "template.logicnode", "pk": 2545, "fields": {"state_transition": 594, "node_type": "S", "subcondition": 6, "parent": 2547}}, {"model": "template.logicnode", "pk": 2546, "fields": {"state_transition": 594, "node_type": "S", "subcondition": 20, "parent": 2547}}, {"model": "template.logicnode", "pk": 2547, "fields": {"state_transition": 594, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2548, "fields": {"state_transition": 595, "node_type": "S", "subcondition": 23, "parent": 2551}}, {"model": "template.logicnode", "pk": 2549, "fields": {"state_transition": 595, "node_type": "S", "subcondition": 6, "parent": 2551}}, {"model": "template.logicnode", "pk": 2550, "fields": {"state_transition": 595, "node_type": "S", "subcondition": 21, "parent": 2551}}, {"model": "template.logicnode", "pk": 2551, "fields": {"state_transition": 595, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2552, "fields": {"state_transition": 596, "node_type": "S", "subcondition": 23, "parent": 2555}}, {"model": "template.logicnode", "pk": 2553, "fields": {"state_transition": 596, "node_type": "S", "subcondition": 6, "parent": 2555}}, {"model": "template.logicnode", "pk": 2554, "fields": {"state_transition": 596, "node_type": "S", "subcondition": 22, "parent": 2555}}, {"model": "template.logicnode", "pk": 2555, "fields": {"state_transition": 596, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2556, "fields": {"state_transition": 597, "node_type": "N", "subcondition": null, "parent": 2560}}, {"model": "template.logicnode", "pk": 2557, "fields": {"state_transition": 597, "node_type": "S", "subcondition": 23, "parent": 2556}}, {"model": "template.logicnode", "pk": 2558, "fields": {"state_transition": 597, "node_type": "S", "subcondition": 3, "parent": 2560}}, {"model": "template.logicnode", "pk": 2559, "fields": {"state_transition": 597, "node_type": "S", "subcondition": 19, "parent": 2560}}, {"model": "template.logicnode", "pk": 2560, "fields": {"state_transition": 597, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2561, "fields": {"state_transition": 598, "node_type": "N", "subcondition": null, "parent": 2565}}, {"model": "template.logicnode", "pk": 2562, "fields": {"state_transition": 598, "node_type": "S", "subcondition": 23, "parent": 2561}}, {"model": "template.logicnode", "pk": 2563, "fields": {"state_transition": 598, "node_type": "S", "subcondition": 3, "parent": 2565}}, {"model": "template.logicnode", "pk": 2564, "fields": {"state_transition": 598, "node_type": "S", "subcondition": 20, "parent": 2565}}, {"model": "template.logicnode", "pk": 2565, "fields": {"state_transition": 598, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2566, "fields": {"state_transition": 599, "node_type": "N", "subcondition": null, "parent": 2570}}, {"model": "template.logicnode", "pk": 2567, "fields": {"state_transition": 599, "node_type": "S", "subcondition": 23, "parent": 2566}}, {"model": "template.logicnode", "pk": 2568, "fields": {"state_transition": 599, "node_type": "S", "subcondition": 3, "parent": 2570}}, {"model": "template.logicnode", "pk": 2569, "fields": {"state_transition": 599, "node_type": "S", "subcondition": 21, "parent": 2570}}, {"model": "template.logicnode", "pk": 2570, "fields": {"state_transition": 599, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2571, "fields": {"state_transition": 600, "node_type": "N", "subcondition": null, "parent": 2575}}, {"model": "template.logicnode", "pk": 2572, "fields": {"state_transition": 600, "node_type": "S", "subcondition": 23, "parent": 2571}}, {"model": "template.logicnode", "pk": 2573, "fields": {"state_transition": 600, "node_type": "S", "subcondition": 3, "parent": 2575}}, {"model": "template.logicnode", "pk": 2574, "fields": {"state_transition": 600, "node_type": "S", "subcondition": 22, "parent": 2575}}, {"model": "template.logicnode", "pk": 2575, "fields": {"state_transition": 600, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2576, "fields": {"state_transition": 601, "node_type": "N", "subcondition": null, "parent": 2580}}, {"model": "template.logicnode", "pk": 2577, "fields": {"state_transition": 601, "node_type": "S", "subcondition": 23, "parent": 2576}}, {"model": "template.logicnode", "pk": 2578, "fields": {"state_transition": 601, "node_type": "S", "subcondition": 4, "parent": 2580}}, {"model": "template.logicnode", "pk": 2579, "fields": {"state_transition": 601, "node_type": "S", "subcondition": 19, "parent": 2580}}, {"model": "template.logicnode", "pk": 2580, "fields": {"state_transition": 601, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2581, "fields": {"state_transition": 602, "node_type": "N", "subcondition": null, "parent": 2585}}, {"model": "template.logicnode", "pk": 2582, "fields": {"state_transition": 602, "node_type": "S", "subcondition": 23, "parent": 2581}}, {"model": "template.logicnode", "pk": 2583, "fields": {"state_transition": 602, "node_type": "S", "subcondition": 4, "parent": 2585}}, {"model": "template.logicnode", "pk": 2584, "fields": {"state_transition": 602, "node_type": "S", "subcondition": 20, "parent": 2585}}, {"model": "template.logicnode", "pk": 2585, "fields": {"state_transition": 602, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2586, "fields": {"state_transition": 603, "node_type": "N", "subcondition": null, "parent": 2590}}, {"model": "template.logicnode", "pk": 2587, "fields": {"state_transition": 603, "node_type": "S", "subcondition": 23, "parent": 2586}}, {"model": "template.logicnode", "pk": 2588, "fields": {"state_transition": 603, "node_type": "S", "subcondition": 4, "parent": 2590}}, {"model": "template.logicnode", "pk": 2589, "fields": {"state_transition": 603, "node_type": "S", "subcondition": 21, "parent": 2590}}, {"model": "template.logicnode", "pk": 2590, "fields": {"state_transition": 603, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2591, "fields": {"state_transition": 604, "node_type": "N", "subcondition": null, "parent": 2595}}, {"model": "template.logicnode", "pk": 2592, "fields": {"state_transition": 604, "node_type": "S", "subcondition": 23, "parent": 2591}}, {"model": "template.logicnode", "pk": 2593, "fields": {"state_transition": 604, "node_type": "S", "subcondition": 4, "parent": 2595}}, {"model": "template.logicnode", "pk": 2594, "fields": {"state_transition": 604, "node_type": "S", "subcondition": 22, "parent": 2595}}, {"model": "template.logicnode", "pk": 2595, "fields": {"state_transition": 604, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2596, "fields": {"state_transition": 605, "node_type": "N", "subcondition": null, "parent": 2600}}, {"model": "template.logicnode", "pk": 2597, "fields": {"state_transition": 605, "node_type": "S", "subcondition": 23, "parent": 2596}}, {"model": "template.logicnode", "pk": 2598, "fields": {"state_transition": 605, "node_type": "S", "subcondition": 5, "parent": 2600}}, {"model": "template.logicnode", "pk": 2599, "fields": {"state_transition": 605, "node_type": "S", "subcondition": 19, "parent": 2600}}, {"model": "template.logicnode", "pk": 2600, "fields": {"state_transition": 605, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2601, "fields": {"state_transition": 606, "node_type": "N", "subcondition": null, "parent": 2605}}, {"model": "template.logicnode", "pk": 2602, "fields": {"state_transition": 606, "node_type": "S", "subcondition": 23, "parent": 2601}}, {"model": "template.logicnode", "pk": 2603, "fields": {"state_transition": 606, "node_type": "S", "subcondition": 5, "parent": 2605}}, {"model": "template.logicnode", "pk": 2604, "fields": {"state_transition": 606, "node_type": "S", "subcondition": 20, "parent": 2605}}, {"model": "template.logicnode", "pk": 2605, "fields": {"state_transition": 606, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2606, "fields": {"state_transition": 607, "node_type": "N", "subcondition": null, "parent": 2610}}, {"model": "template.logicnode", "pk": 2607, "fields": {"state_transition": 607, "node_type": "S", "subcondition": 23, "parent": 2606}}, {"model": "template.logicnode", "pk": 2608, "fields": {"state_transition": 607, "node_type": "S", "subcondition": 5, "parent": 2610}}, {"model": "template.logicnode", "pk": 2609, "fields": {"state_transition": 607, "node_type": "S", "subcondition": 21, "parent": 2610}}, {"model": "template.logicnode", "pk": 2610, "fields": {"state_transition": 607, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2611, "fields": {"state_transition": 608, "node_type": "N", "subcondition": null, "parent": 2615}}, {"model": "template.logicnode", "pk": 2612, "fields": {"state_transition": 608, "node_type": "S", "subcondition": 23, "parent": 2611}}, {"model": "template.logicnode", "pk": 2613, "fields": {"state_transition": 608, "node_type": "S", "subcondition": 5, "parent": 2615}}, {"model": "template.logicnode", "pk": 2614, "fields": {"state_transition": 608, "node_type": "S", "subcondition": 22, "parent": 2615}}, {"model": "template.logicnode", "pk": 2615, "fields": {"state_transition": 608, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2616, "fields": {"state_transition": 609, "node_type": "N", "subcondition": null, "parent": 2620}}, {"model": "template.logicnode", "pk": 2617, "fields": {"state_transition": 609, "node_type": "S", "subcondition": 23, "parent": 2616}}, {"model": "template.logicnode", "pk": 2618, "fields": {"state_transition": 609, "node_type": "S", "subcondition": 6, "parent": 2620}}, {"model": "template.logicnode", "pk": 2619, "fields": {"state_transition": 609, "node_type": "S", "subcondition": 19, "parent": 2620}}, {"model": "template.logicnode", "pk": 2620, "fields": {"state_transition": 609, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2621, "fields": {"state_transition": 610, "node_type": "N", "subcondition": null, "parent": 2625}}, {"model": "template.logicnode", "pk": 2622, "fields": {"state_transition": 610, "node_type": "S", "subcondition": 23, "parent": 2621}}, {"model": "template.logicnode", "pk": 2623, "fields": {"state_transition": 610, "node_type": "S", "subcondition": 6, "parent": 2625}}, {"model": "template.logicnode", "pk": 2624, "fields": {"state_transition": 610, "node_type": "S", "subcondition": 20, "parent": 2625}}, {"model": "template.logicnode", "pk": 2625, "fields": {"state_transition": 610, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2626, "fields": {"state_transition": 611, "node_type": "N", "subcondition": null, "parent": 2630}}, {"model": "template.logicnode", "pk": 2627, "fields": {"state_transition": 611, "node_type": "S", "subcondition": 23, "parent": 2626}}, {"model": "template.logicnode", "pk": 2628, "fields": {"state_transition": 611, "node_type": "S", "subcondition": 6, "parent": 2630}}, {"model": "template.logicnode", "pk": 2629, "fields": {"state_transition": 611, "node_type": "S", "subcondition": 21, "parent": 2630}}, {"model": "template.logicnode", "pk": 2630, "fields": {"state_transition": 611, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2631, "fields": {"state_transition": 612, "node_type": "N", "subcondition": null, "parent": 2635}}, {"model": "template.logicnode", "pk": 2632, "fields": {"state_transition": 612, "node_type": "S", "subcondition": 23, "parent": 2631}}, {"model": "template.logicnode", "pk": 2633, "fields": {"state_transition": 612, "node_type": "S", "subcondition": 6, "parent": 2635}}, {"model": "template.logicnode", "pk": 2634, "fields": {"state_transition": 612, "node_type": "S", "subcondition": 22, "parent": 2635}}, {"model": "template.logicnode", "pk": 2635, "fields": {"state_transition": 612, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2636, "fields": {"state_transition": 613, "node_type": "S", "subcondition": 23, "parent": 2639}}, {"model": "template.logicnode", "pk": 2637, "fields": {"state_transition": 613, "node_type": "S", "subcondition": 3, "parent": 2639}}, {"model": "template.logicnode", "pk": 2638, "fields": {"state_transition": 613, "node_type": "S", "subcondition": 19, "parent": 2639}}, {"model": "template.logicnode", "pk": 2639, "fields": {"state_transition": 613, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2640, "fields": {"state_transition": 614, "node_type": "S", "subcondition": 23, "parent": 2643}}, {"model": "template.logicnode", "pk": 2641, "fields": {"state_transition": 614, "node_type": "S", "subcondition": 3, "parent": 2643}}, {"model": "template.logicnode", "pk": 2642, "fields": {"state_transition": 614, "node_type": "S", "subcondition": 20, "parent": 2643}}, {"model": "template.logicnode", "pk": 2643, "fields": {"state_transition": 614, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2644, "fields": {"state_transition": 615, "node_type": "S", "subcondition": 23, "parent": 2647}}, {"model": "template.logicnode", "pk": 2645, "fields": {"state_transition": 615, "node_type": "S", "subcondition": 3, "parent": 2647}}, {"model": "template.logicnode", "pk": 2646, "fields": {"state_transition": 615, "node_type": "S", "subcondition": 21, "parent": 2647}}, {"model": "template.logicnode", "pk": 2647, "fields": {"state_transition": 615, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2648, "fields": {"state_transition": 616, "node_type": "S", "subcondition": 23, "parent": 2651}}, {"model": "template.logicnode", "pk": 2649, "fields": {"state_transition": 616, "node_type": "S", "subcondition": 3, "parent": 2651}}, {"model": "template.logicnode", "pk": 2650, "fields": {"state_transition": 616, "node_type": "S", "subcondition": 22, "parent": 2651}}, {"model": "template.logicnode", "pk": 2651, "fields": {"state_transition": 616, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2652, "fields": {"state_transition": 617, "node_type": "S", "subcondition": 23, "parent": 2655}}, {"model": "template.logicnode", "pk": 2653, "fields": {"state_transition": 617, "node_type": "S", "subcondition": 4, "parent": 2655}}, {"model": "template.logicnode", "pk": 2654, "fields": {"state_transition": 617, "node_type": "S", "subcondition": 19, "parent": 2655}}, {"model": "template.logicnode", "pk": 2655, "fields": {"state_transition": 617, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2656, "fields": {"state_transition": 618, "node_type": "S", "subcondition": 23, "parent": 2659}}, {"model": "template.logicnode", "pk": 2657, "fields": {"state_transition": 618, "node_type": "S", "subcondition": 4, "parent": 2659}}, {"model": "template.logicnode", "pk": 2658, "fields": {"state_transition": 618, "node_type": "S", "subcondition": 20, "parent": 2659}}, {"model": "template.logicnode", "pk": 2659, "fields": {"state_transition": 618, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2660, "fields": {"state_transition": 619, "node_type": "S", "subcondition": 23, "parent": 2663}}, {"model": "template.logicnode", "pk": 2661, "fields": {"state_transition": 619, "node_type": "S", "subcondition": 4, "parent": 2663}}, {"model": "template.logicnode", "pk": 2662, "fields": {"state_transition": 619, "node_type": "S", "subcondition": 21, "parent": 2663}}, {"model": "template.logicnode", "pk": 2663, "fields": {"state_transition": 619, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2664, "fields": {"state_transition": 620, "node_type": "S", "subcondition": 23, "parent": 2667}}, {"model": "template.logicnode", "pk": 2665, "fields": {"state_transition": 620, "node_type": "S", "subcondition": 4, "parent": 2667}}, {"model": "template.logicnode", "pk": 2666, "fields": {"state_transition": 620, "node_type": "S", "subcondition": 22, "parent": 2667}}, {"model": "template.logicnode", "pk": 2667, "fields": {"state_transition": 620, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2668, "fields": {"state_transition": 621, "node_type": "S", "subcondition": 23, "parent": 2671}}, {"model": "template.logicnode", "pk": 2669, "fields": {"state_transition": 621, "node_type": "S", "subcondition": 5, "parent": 2671}}, {"model": "template.logicnode", "pk": 2670, "fields": {"state_transition": 621, "node_type": "S", "subcondition": 19, "parent": 2671}}, {"model": "template.logicnode", "pk": 2671, "fields": {"state_transition": 621, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2672, "fields": {"state_transition": 622, "node_type": "S", "subcondition": 23, "parent": 2675}}, {"model": "template.logicnode", "pk": 2673, "fields": {"state_transition": 622, "node_type": "S", "subcondition": 5, "parent": 2675}}, {"model": "template.logicnode", "pk": 2674, "fields": {"state_transition": 622, "node_type": "S", "subcondition": 20, "parent": 2675}}, {"model": "template.logicnode", "pk": 2675, "fields": {"state_transition": 622, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2676, "fields": {"state_transition": 623, "node_type": "S", "subcondition": 23, "parent": 2679}}, {"model": "template.logicnode", "pk": 2677, "fields": {"state_transition": 623, "node_type": "S", "subcondition": 5, "parent": 2679}}, {"model": "template.logicnode", "pk": 2678, "fields": {"state_transition": 623, "node_type": "S", "subcondition": 21, "parent": 2679}}, {"model": "template.logicnode", "pk": 2679, "fields": {"state_transition": 623, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2680, "fields": {"state_transition": 624, "node_type": "S", "subcondition": 23, "parent": 2683}}, {"model": "template.logicnode", "pk": 2681, "fields": {"state_transition": 624, "node_type": "S", "subcondition": 5, "parent": 2683}}, {"model": "template.logicnode", "pk": 2682, "fields": {"state_transition": 624, "node_type": "S", "subcondition": 22, "parent": 2683}}, {"model": "template.logicnode", "pk": 2683, "fields": {"state_transition": 624, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2684, "fields": {"state_transition": 625, "node_type": "S", "subcondition": 23, "parent": 2687}}, {"model": "template.logicnode", "pk": 2685, "fields": {"state_transition": 625, "node_type": "S", "subcondition": 6, "parent": 2687}}, {"model": "template.logicnode", "pk": 2686, "fields": {"state_transition": 625, "node_type": "S", "subcondition": 19, "parent": 2687}}, {"model": "template.logicnode", "pk": 2687, "fields": {"state_transition": 625, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2688, "fields": {"state_transition": 626, "node_type": "S", "subcondition": 23, "parent": 2691}}, {"model": "template.logicnode", "pk": 2689, "fields": {"state_transition": 626, "node_type": "S", "subcondition": 6, "parent": 2691}}, {"model": "template.logicnode", "pk": 2690, "fields": {"state_transition": 626, "node_type": "S", "subcondition": 20, "parent": 2691}}, {"model": "template.logicnode", "pk": 2691, "fields": {"state_transition": 626, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2692, "fields": {"state_transition": 627, "node_type": "S", "subcondition": 23, "parent": 2695}}, {"model": "template.logicnode", "pk": 2693, "fields": {"state_transition": 627, "node_type": "S", "subcondition": 6, "parent": 2695}}, {"model": "template.logicnode", "pk": 2694, "fields": {"state_transition": 627, "node_type": "S", "subcondition": 21, "parent": 2695}}, {"model": "template.logicnode", "pk": 2695, "fields": {"state_transition": 627, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2696, "fields": {"state_transition": 628, "node_type": "S", "subcondition": 23, "parent": 2699}}, {"model": "template.logicnode", "pk": 2697, "fields": {"state_transition": 628, "node_type": "S", "subcondition": 6, "parent": 2699}}, {"model": "template.logicnode", "pk": 2698, "fields": {"state_transition": 628, "node_type": "S", "subcondition": 22, "parent": 2699}}, {"model": "template.logicnode", "pk": 2699, "fields": {"state_transition": 628, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2700, "fields": {"state_transition": 629, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2701, "fields": {"state_transition": 629, "node_type": "S", "subcondition": 24, "parent": 2700}}, {"model": "template.logicnode", "pk": 2702, "fields": {"state_transition": 630, "node_type": "N", "subcondition": null, "parent": 2706}}, {"model": "template.logicnode", "pk": 2703, "fields": {"state_transition": 630, "node_type": "S", "subcondition": 23, "parent": 2702}}, {"model": "template.logicnode", "pk": 2704, "fields": {"state_transition": 630, "node_type": "S", "subcondition": 11, "parent": 2706}}, {"model": "template.logicnode", "pk": 2705, "fields": {"state_transition": 630, "node_type": "S", "subcondition": 18, "parent": 2706}}, {"model": "template.logicnode", "pk": 2706, "fields": {"state_transition": 630, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2707, "fields": {"state_transition": 631, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2708, "fields": {"state_transition": 632, "node_type": "N", "subcondition": null, "parent": 2711}}, {"model": "template.logicnode", "pk": 2709, "fields": {"state_transition": 632, "node_type": "S", "subcondition": 23, "parent": 2708}}, {"model": "template.logicnode", "pk": 2710, "fields": {"state_transition": 632, "node_type": "S", "subcondition": 11, "parent": 2711}}, {"model": "template.logicnode", "pk": 2711, "fields": {"state_transition": 632, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2712, "fields": {"state_transition": 633, "node_type": "N", "subcondition": null, "parent": 2715}}, {"model": "template.logicnode", "pk": 2713, "fields": {"state_transition": 633, "node_type": "S", "subcondition": 23, "parent": 2712}}, {"model": "template.logicnode", "pk": 2714, "fields": {"state_transition": 633, "node_type": "S", "subcondition": 18, "parent": 2715}}, {"model": "template.logicnode", "pk": 2715, "fields": {"state_transition": 633, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2716, "fields": {"state_transition": 634, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2717, "fields": {"state_transition": 634, "node_type": "S", "subcondition": 23, "parent": 2716}}, {"model": "template.logicnode", "pk": 2718, "fields": {"state_transition": 635, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2719, "fields": {"state_transition": 636, "node_type": "N", "subcondition": null, "parent": 2723}}, {"model": "template.logicnode", "pk": 2720, "fields": {"state_transition": 636, "node_type": "S", "subcondition": 23, "parent": 2719}}, {"model": "template.logicnode", "pk": 2721, "fields": {"state_transition": 636, "node_type": "S", "subcondition": 11, "parent": 2723}}, {"model": "template.logicnode", "pk": 2722, "fields": {"state_transition": 636, "node_type": "S", "subcondition": 18, "parent": 2723}}, {"model": "template.logicnode", "pk": 2723, "fields": {"state_transition": 636, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2724, "fields": {"state_transition": 637, "node_type": "N", "subcondition": null, "parent": 2727}}, {"model": "template.logicnode", "pk": 2725, "fields": {"state_transition": 637, "node_type": "S", "subcondition": 23, "parent": 2724}}, {"model": "template.logicnode", "pk": 2726, "fields": {"state_transition": 637, "node_type": "S", "subcondition": 11, "parent": 2727}}, {"model": "template.logicnode", "pk": 2727, "fields": {"state_transition": 637, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2728, "fields": {"state_transition": 638, "node_type": "N", "subcondition": null, "parent": 2731}}, {"model": "template.logicnode", "pk": 2729, "fields": {"state_transition": 638, "node_type": "S", "subcondition": 23, "parent": 2728}}, {"model": "template.logicnode", "pk": 2730, "fields": {"state_transition": 638, "node_type": "S", "subcondition": 18, "parent": 2731}}, {"model": "template.logicnode", "pk": 2731, "fields": {"state_transition": 638, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2732, "fields": {"state_transition": 639, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2733, "fields": {"state_transition": 639, "node_type": "S", "subcondition": 23, "parent": 2732}}, {"model": "template.logicnode", "pk": 2734, "fields": {"state_transition": 640, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2735, "fields": {"state_transition": 641, "node_type": "N", "subcondition": null, "parent": 2739}}, {"model": "template.logicnode", "pk": 2736, "fields": {"state_transition": 641, "node_type": "S", "subcondition": 23, "parent": 2735}}, {"model": "template.logicnode", "pk": 2737, "fields": {"state_transition": 641, "node_type": "S", "subcondition": 11, "parent": 2739}}, {"model": "template.logicnode", "pk": 2738, "fields": {"state_transition": 641, "node_type": "S", "subcondition": 18, "parent": 2739}}, {"model": "template.logicnode", "pk": 2739, "fields": {"state_transition": 641, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2740, "fields": {"state_transition": 642, "node_type": "N", "subcondition": null, "parent": 2743}}, {"model": "template.logicnode", "pk": 2741, "fields": {"state_transition": 642, "node_type": "S", "subcondition": 23, "parent": 2740}}, {"model": "template.logicnode", "pk": 2742, "fields": {"state_transition": 642, "node_type": "S", "subcondition": 11, "parent": 2743}}, {"model": "template.logicnode", "pk": 2743, "fields": {"state_transition": 642, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2744, "fields": {"state_transition": 643, "node_type": "N", "subcondition": null, "parent": 2747}}, {"model": "template.logicnode", "pk": 2745, "fields": {"state_transition": 643, "node_type": "S", "subcondition": 23, "parent": 2744}}, {"model": "template.logicnode", "pk": 2746, "fields": {"state_transition": 643, "node_type": "S", "subcondition": 18, "parent": 2747}}, {"model": "template.logicnode", "pk": 2747, "fields": {"state_transition": 643, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2748, "fields": {"state_transition": 644, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2749, "fields": {"state_transition": 644, "node_type": "S", "subcondition": 23, "parent": 2748}}, {"model": "template.logicnode", "pk": 2750, "fields": {"state_transition": 645, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2751, "fields": {"state_transition": 646, "node_type": "N", "subcondition": null, "parent": 2755}}, {"model": "template.logicnode", "pk": 2752, "fields": {"state_transition": 646, "node_type": "S", "subcondition": 23, "parent": 2751}}, {"model": "template.logicnode", "pk": 2753, "fields": {"state_transition": 646, "node_type": "S", "subcondition": 11, "parent": 2755}}, {"model": "template.logicnode", "pk": 2754, "fields": {"state_transition": 646, "node_type": "S", "subcondition": 18, "parent": 2755}}, {"model": "template.logicnode", "pk": 2755, "fields": {"state_transition": 646, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2756, "fields": {"state_transition": 647, "node_type": "N", "subcondition": null, "parent": 2759}}, {"model": "template.logicnode", "pk": 2757, "fields": {"state_transition": 647, "node_type": "S", "subcondition": 23, "parent": 2756}}, {"model": "template.logicnode", "pk": 2758, "fields": {"state_transition": 647, "node_type": "S", "subcondition": 11, "parent": 2759}}, {"model": "template.logicnode", "pk": 2759, "fields": {"state_transition": 647, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2760, "fields": {"state_transition": 648, "node_type": "N", "subcondition": null, "parent": 2763}}, {"model": "template.logicnode", "pk": 2761, "fields": {"state_transition": 648, "node_type": "S", "subcondition": 23, "parent": 2760}}, {"model": "template.logicnode", "pk": 2762, "fields": {"state_transition": 648, "node_type": "S", "subcondition": 18, "parent": 2763}}, {"model": "template.logicnode", "pk": 2763, "fields": {"state_transition": 648, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2764, "fields": {"state_transition": 649, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2765, "fields": {"state_transition": 649, "node_type": "S", "subcondition": 23, "parent": 2764}}, {"model": "template.logicnode", "pk": 2766, "fields": {"state_transition": 650, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2767, "fields": {"state_transition": 651, "node_type": "N", "subcondition": null, "parent": 2771}}, {"model": "template.logicnode", "pk": 2768, "fields": {"state_transition": 651, "node_type": "S", "subcondition": 23, "parent": 2767}}, {"model": "template.logicnode", "pk": 2769, "fields": {"state_transition": 651, "node_type": "S", "subcondition": 11, "parent": 2771}}, {"model": "template.logicnode", "pk": 2770, "fields": {"state_transition": 651, "node_type": "S", "subcondition": 18, "parent": 2771}}, {"model": "template.logicnode", "pk": 2771, "fields": {"state_transition": 651, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2772, "fields": {"state_transition": 652, "node_type": "N", "subcondition": null, "parent": 2775}}, {"model": "template.logicnode", "pk": 2773, "fields": {"state_transition": 652, "node_type": "S", "subcondition": 23, "parent": 2772}}, {"model": "template.logicnode", "pk": 2774, "fields": {"state_transition": 652, "node_type": "S", "subcondition": 11, "parent": 2775}}, {"model": "template.logicnode", "pk": 2775, "fields": {"state_transition": 652, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2776, "fields": {"state_transition": 653, "node_type": "N", "subcondition": null, "parent": 2779}}, {"model": "template.logicnode", "pk": 2777, "fields": {"state_transition": 653, "node_type": "S", "subcondition": 23, "parent": 2776}}, {"model": "template.logicnode", "pk": 2778, "fields": {"state_transition": 653, "node_type": "S", "subcondition": 18, "parent": 2779}}, {"model": "template.logicnode", "pk": 2779, "fields": {"state_transition": 653, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2780, "fields": {"state_transition": 654, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2781, "fields": {"state_transition": 654, "node_type": "S", "subcondition": 23, "parent": 2780}}, {"model": "template.logicnode", "pk": 2782, "fields": {"state_transition": 655, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2783, "fields": {"state_transition": 656, "node_type": "N", "subcondition": null, "parent": 2787}}, {"model": "template.logicnode", "pk": 2784, "fields": {"state_transition": 656, "node_type": "S", "subcondition": 23, "parent": 2783}}, {"model": "template.logicnode", "pk": 2785, "fields": {"state_transition": 656, "node_type": "S", "subcondition": 11, "parent": 2787}}, {"model": "template.logicnode", "pk": 2786, "fields": {"state_transition": 656, "node_type": "S", "subcondition": 18, "parent": 2787}}, {"model": "template.logicnode", "pk": 2787, "fields": {"state_transition": 656, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2788, "fields": {"state_transition": 657, "node_type": "N", "subcondition": null, "parent": 2791}}, {"model": "template.logicnode", "pk": 2789, "fields": {"state_transition": 657, "node_type": "S", "subcondition": 23, "parent": 2788}}, {"model": "template.logicnode", "pk": 2790, "fields": {"state_transition": 657, "node_type": "S", "subcondition": 11, "parent": 2791}}, {"model": "template.logicnode", "pk": 2791, "fields": {"state_transition": 657, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2792, "fields": {"state_transition": 658, "node_type": "N", "subcondition": null, "parent": 2795}}, {"model": "template.logicnode", "pk": 2793, "fields": {"state_transition": 658, "node_type": "S", "subcondition": 23, "parent": 2792}}, {"model": "template.logicnode", "pk": 2794, "fields": {"state_transition": 658, "node_type": "S", "subcondition": 18, "parent": 2795}}, {"model": "template.logicnode", "pk": 2795, "fields": {"state_transition": 658, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2796, "fields": {"state_transition": 659, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2797, "fields": {"state_transition": 659, "node_type": "S", "subcondition": 23, "parent": 2796}}, {"model": "template.logicnode", "pk": 2798, "fields": {"state_transition": 660, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2799, "fields": {"state_transition": 661, "node_type": "N", "subcondition": null, "parent": 2803}}, {"model": "template.logicnode", "pk": 2800, "fields": {"state_transition": 661, "node_type": "S", "subcondition": 23, "parent": 2799}}, {"model": "template.logicnode", "pk": 2801, "fields": {"state_transition": 661, "node_type": "S", "subcondition": 11, "parent": 2803}}, {"model": "template.logicnode", "pk": 2802, "fields": {"state_transition": 661, "node_type": "S", "subcondition": 18, "parent": 2803}}, {"model": "template.logicnode", "pk": 2803, "fields": {"state_transition": 661, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2804, "fields": {"state_transition": 662, "node_type": "N", "subcondition": null, "parent": 2807}}, {"model": "template.logicnode", "pk": 2805, "fields": {"state_transition": 662, "node_type": "S", "subcondition": 23, "parent": 2804}}, {"model": "template.logicnode", "pk": 2806, "fields": {"state_transition": 662, "node_type": "S", "subcondition": 11, "parent": 2807}}, {"model": "template.logicnode", "pk": 2807, "fields": {"state_transition": 662, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2808, "fields": {"state_transition": 663, "node_type": "N", "subcondition": null, "parent": 2811}}, {"model": "template.logicnode", "pk": 2809, "fields": {"state_transition": 663, "node_type": "S", "subcondition": 23, "parent": 2808}}, {"model": "template.logicnode", "pk": 2810, "fields": {"state_transition": 663, "node_type": "S", "subcondition": 18, "parent": 2811}}, {"model": "template.logicnode", "pk": 2811, "fields": {"state_transition": 663, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2812, "fields": {"state_transition": 664, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2813, "fields": {"state_transition": 664, "node_type": "S", "subcondition": 23, "parent": 2812}}, {"model": "template.logicnode", "pk": 2814, "fields": {"state_transition": 665, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2815, "fields": {"state_transition": 666, "node_type": "N", "subcondition": null, "parent": 2819}}, {"model": "template.logicnode", "pk": 2816, "fields": {"state_transition": 666, "node_type": "S", "subcondition": 23, "parent": 2815}}, {"model": "template.logicnode", "pk": 2817, "fields": {"state_transition": 666, "node_type": "S", "subcondition": 11, "parent": 2819}}, {"model": "template.logicnode", "pk": 2818, "fields": {"state_transition": 666, "node_type": "S", "subcondition": 18, "parent": 2819}}, {"model": "template.logicnode", "pk": 2819, "fields": {"state_transition": 666, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2820, "fields": {"state_transition": 667, "node_type": "N", "subcondition": null, "parent": 2823}}, {"model": "template.logicnode", "pk": 2821, "fields": {"state_transition": 667, "node_type": "S", "subcondition": 23, "parent": 2820}}, {"model": "template.logicnode", "pk": 2822, "fields": {"state_transition": 667, "node_type": "S", "subcondition": 11, "parent": 2823}}, {"model": "template.logicnode", "pk": 2823, "fields": {"state_transition": 667, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2824, "fields": {"state_transition": 668, "node_type": "N", "subcondition": null, "parent": 2827}}, {"model": "template.logicnode", "pk": 2825, "fields": {"state_transition": 668, "node_type": "S", "subcondition": 23, "parent": 2824}}, {"model": "template.logicnode", "pk": 2826, "fields": {"state_transition": 668, "node_type": "S", "subcondition": 18, "parent": 2827}}, {"model": "template.logicnode", "pk": 2827, "fields": {"state_transition": 668, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2828, "fields": {"state_transition": 669, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2829, "fields": {"state_transition": 669, "node_type": "S", "subcondition": 23, "parent": 2828}}, {"model": "template.logicnode", "pk": 2830, "fields": {"state_transition": 670, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2831, "fields": {"state_transition": 671, "node_type": "N", "subcondition": null, "parent": 2835}}, {"model": "template.logicnode", "pk": 2832, "fields": {"state_transition": 671, "node_type": "S", "subcondition": 23, "parent": 2831}}, {"model": "template.logicnode", "pk": 2833, "fields": {"state_transition": 671, "node_type": "S", "subcondition": 11, "parent": 2835}}, {"model": "template.logicnode", "pk": 2834, "fields": {"state_transition": 671, "node_type": "S", "subcondition": 18, "parent": 2835}}, {"model": "template.logicnode", "pk": 2835, "fields": {"state_transition": 671, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2836, "fields": {"state_transition": 672, "node_type": "N", "subcondition": null, "parent": 2839}}, {"model": "template.logicnode", "pk": 2837, "fields": {"state_transition": 672, "node_type": "S", "subcondition": 23, "parent": 2836}}, {"model": "template.logicnode", "pk": 2838, "fields": {"state_transition": 672, "node_type": "S", "subcondition": 11, "parent": 2839}}, {"model": "template.logicnode", "pk": 2839, "fields": {"state_transition": 672, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2840, "fields": {"state_transition": 673, "node_type": "N", "subcondition": null, "parent": 2843}}, {"model": "template.logicnode", "pk": 2841, "fields": {"state_transition": 673, "node_type": "S", "subcondition": 23, "parent": 2840}}, {"model": "template.logicnode", "pk": 2842, "fields": {"state_transition": 673, "node_type": "S", "subcondition": 18, "parent": 2843}}, {"model": "template.logicnode", "pk": 2843, "fields": {"state_transition": 673, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2844, "fields": {"state_transition": 674, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2845, "fields": {"state_transition": 674, "node_type": "S", "subcondition": 23, "parent": 2844}}, {"model": "template.logicnode", "pk": 2846, "fields": {"state_transition": 675, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2847, "fields": {"state_transition": 676, "node_type": "N", "subcondition": null, "parent": 2853}}, {"model": "template.logicnode", "pk": 2848, "fields": {"state_transition": 676, "node_type": "S", "subcondition": 23, "parent": 2847}}, {"model": "template.logicnode", "pk": 2849, "fields": {"state_transition": 676, "node_type": "S", "subcondition": 11, "parent": 2853}}, {"model": "template.logicnode", "pk": 2850, "fields": {"state_transition": 676, "node_type": "S", "subcondition": 7, "parent": 2853}}, {"model": "template.logicnode", "pk": 2851, "fields": {"state_transition": 676, "node_type": "S", "subcondition": 2, "parent": 2853}}, {"model": "template.logicnode", "pk": 2852, "fields": {"state_transition": 676, "node_type": "S", "subcondition": 12, "parent": 2853}}, {"model": "template.logicnode", "pk": 2853, "fields": {"state_transition": 676, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2854, "fields": {"state_transition": 677, "node_type": "N", "subcondition": null, "parent": 2859}}, {"model": "template.logicnode", "pk": 2855, "fields": {"state_transition": 677, "node_type": "S", "subcondition": 23, "parent": 2854}}, {"model": "template.logicnode", "pk": 2856, "fields": {"state_transition": 677, "node_type": "S", "subcondition": 11, "parent": 2859}}, {"model": "template.logicnode", "pk": 2857, "fields": {"state_transition": 677, "node_type": "S", "subcondition": 7, "parent": 2859}}, {"model": "template.logicnode", "pk": 2858, "fields": {"state_transition": 677, "node_type": "S", "subcondition": 2, "parent": 2859}}, {"model": "template.logicnode", "pk": 2859, "fields": {"state_transition": 677, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2860, "fields": {"state_transition": 678, "node_type": "N", "subcondition": null, "parent": 2865}}, {"model": "template.logicnode", "pk": 2861, "fields": {"state_transition": 678, "node_type": "S", "subcondition": 23, "parent": 2860}}, {"model": "template.logicnode", "pk": 2862, "fields": {"state_transition": 678, "node_type": "S", "subcondition": 11, "parent": 2865}}, {"model": "template.logicnode", "pk": 2863, "fields": {"state_transition": 678, "node_type": "S", "subcondition": 7, "parent": 2865}}, {"model": "template.logicnode", "pk": 2864, "fields": {"state_transition": 678, "node_type": "S", "subcondition": 12, "parent": 2865}}, {"model": "template.logicnode", "pk": 2865, "fields": {"state_transition": 678, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2866, "fields": {"state_transition": 679, "node_type": "N", "subcondition": null, "parent": 2870}}, {"model": "template.logicnode", "pk": 2867, "fields": {"state_transition": 679, "node_type": "S", "subcondition": 23, "parent": 2866}}, {"model": "template.logicnode", "pk": 2868, "fields": {"state_transition": 679, "node_type": "S", "subcondition": 11, "parent": 2870}}, {"model": "template.logicnode", "pk": 2869, "fields": {"state_transition": 679, "node_type": "S", "subcondition": 7, "parent": 2870}}, {"model": "template.logicnode", "pk": 2870, "fields": {"state_transition": 679, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2871, "fields": {"state_transition": 680, "node_type": "N", "subcondition": null, "parent": 2876}}, {"model": "template.logicnode", "pk": 2872, "fields": {"state_transition": 680, "node_type": "S", "subcondition": 23, "parent": 2871}}, {"model": "template.logicnode", "pk": 2873, "fields": {"state_transition": 680, "node_type": "S", "subcondition": 11, "parent": 2876}}, {"model": "template.logicnode", "pk": 2874, "fields": {"state_transition": 680, "node_type": "S", "subcondition": 2, "parent": 2876}}, {"model": "template.logicnode", "pk": 2875, "fields": {"state_transition": 680, "node_type": "S", "subcondition": 12, "parent": 2876}}, {"model": "template.logicnode", "pk": 2876, "fields": {"state_transition": 680, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2877, "fields": {"state_transition": 681, "node_type": "N", "subcondition": null, "parent": 2881}}, {"model": "template.logicnode", "pk": 2878, "fields": {"state_transition": 681, "node_type": "S", "subcondition": 23, "parent": 2877}}, {"model": "template.logicnode", "pk": 2879, "fields": {"state_transition": 681, "node_type": "S", "subcondition": 11, "parent": 2881}}, {"model": "template.logicnode", "pk": 2880, "fields": {"state_transition": 681, "node_type": "S", "subcondition": 2, "parent": 2881}}, {"model": "template.logicnode", "pk": 2881, "fields": {"state_transition": 681, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2882, "fields": {"state_transition": 682, "node_type": "N", "subcondition": null, "parent": 2886}}, {"model": "template.logicnode", "pk": 2883, "fields": {"state_transition": 682, "node_type": "S", "subcondition": 23, "parent": 2882}}, {"model": "template.logicnode", "pk": 2884, "fields": {"state_transition": 682, "node_type": "S", "subcondition": 11, "parent": 2886}}, {"model": "template.logicnode", "pk": 2885, "fields": {"state_transition": 682, "node_type": "S", "subcondition": 12, "parent": 2886}}, {"model": "template.logicnode", "pk": 2886, "fields": {"state_transition": 682, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2887, "fields": {"state_transition": 683, "node_type": "N", "subcondition": null, "parent": 2890}}, {"model": "template.logicnode", "pk": 2888, "fields": {"state_transition": 683, "node_type": "S", "subcondition": 23, "parent": 2887}}, {"model": "template.logicnode", "pk": 2889, "fields": {"state_transition": 683, "node_type": "S", "subcondition": 11, "parent": 2890}}, {"model": "template.logicnode", "pk": 2890, "fields": {"state_transition": 683, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2891, "fields": {"state_transition": 684, "node_type": "N", "subcondition": null, "parent": 2896}}, {"model": "template.logicnode", "pk": 2892, "fields": {"state_transition": 684, "node_type": "S", "subcondition": 23, "parent": 2891}}, {"model": "template.logicnode", "pk": 2893, "fields": {"state_transition": 684, "node_type": "S", "subcondition": 7, "parent": 2896}}, {"model": "template.logicnode", "pk": 2894, "fields": {"state_transition": 684, "node_type": "S", "subcondition": 2, "parent": 2896}}, {"model": "template.logicnode", "pk": 2895, "fields": {"state_transition": 684, "node_type": "S", "subcondition": 12, "parent": 2896}}, {"model": "template.logicnode", "pk": 2896, "fields": {"state_transition": 684, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2897, "fields": {"state_transition": 685, "node_type": "N", "subcondition": null, "parent": 2901}}, {"model": "template.logicnode", "pk": 2898, "fields": {"state_transition": 685, "node_type": "S", "subcondition": 23, "parent": 2897}}, {"model": "template.logicnode", "pk": 2899, "fields": {"state_transition": 685, "node_type": "S", "subcondition": 7, "parent": 2901}}, {"model": "template.logicnode", "pk": 2900, "fields": {"state_transition": 685, "node_type": "S", "subcondition": 2, "parent": 2901}}, {"model": "template.logicnode", "pk": 2901, "fields": {"state_transition": 685, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2902, "fields": {"state_transition": 686, "node_type": "N", "subcondition": null, "parent": 2906}}, {"model": "template.logicnode", "pk": 2903, "fields": {"state_transition": 686, "node_type": "S", "subcondition": 23, "parent": 2902}}, {"model": "template.logicnode", "pk": 2904, "fields": {"state_transition": 686, "node_type": "S", "subcondition": 7, "parent": 2906}}, {"model": "template.logicnode", "pk": 2905, "fields": {"state_transition": 686, "node_type": "S", "subcondition": 12, "parent": 2906}}, {"model": "template.logicnode", "pk": 2906, "fields": {"state_transition": 686, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2907, "fields": {"state_transition": 687, "node_type": "N", "subcondition": null, "parent": 2910}}, {"model": "template.logicnode", "pk": 2908, "fields": {"state_transition": 687, "node_type": "S", "subcondition": 23, "parent": 2907}}, {"model": "template.logicnode", "pk": 2909, "fields": {"state_transition": 687, "node_type": "S", "subcondition": 7, "parent": 2910}}, {"model": "template.logicnode", "pk": 2910, "fields": {"state_transition": 687, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2911, "fields": {"state_transition": 688, "node_type": "N", "subcondition": null, "parent": 2915}}, {"model": "template.logicnode", "pk": 2912, "fields": {"state_transition": 688, "node_type": "S", "subcondition": 23, "parent": 2911}}, {"model": "template.logicnode", "pk": 2913, "fields": {"state_transition": 688, "node_type": "S", "subcondition": 2, "parent": 2915}}, {"model": "template.logicnode", "pk": 2914, "fields": {"state_transition": 688, "node_type": "S", "subcondition": 12, "parent": 2915}}, {"model": "template.logicnode", "pk": 2915, "fields": {"state_transition": 688, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2916, "fields": {"state_transition": 689, "node_type": "N", "subcondition": null, "parent": 2919}}, {"model": "template.logicnode", "pk": 2917, "fields": {"state_transition": 689, "node_type": "S", "subcondition": 23, "parent": 2916}}, {"model": "template.logicnode", "pk": 2918, "fields": {"state_transition": 689, "node_type": "S", "subcondition": 2, "parent": 2919}}, {"model": "template.logicnode", "pk": 2919, "fields": {"state_transition": 689, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2920, "fields": {"state_transition": 690, "node_type": "N", "subcondition": null, "parent": 2923}}, {"model": "template.logicnode", "pk": 2921, "fields": {"state_transition": 690, "node_type": "S", "subcondition": 23, "parent": 2920}}, {"model": "template.logicnode", "pk": 2922, "fields": {"state_transition": 690, "node_type": "S", "subcondition": 12, "parent": 2923}}, {"model": "template.logicnode", "pk": 2923, "fields": {"state_transition": 690, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2924, "fields": {"state_transition": 691, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2925, "fields": {"state_transition": 691, "node_type": "S", "subcondition": 23, "parent": 2924}}, {"model": "template.logicnode", "pk": 2926, "fields": {"state_transition": 692, "node_type": "S", "subcondition": 23, "parent": 2930}}, {"model": "template.logicnode", "pk": 2927, "fields": {"state_transition": 692, "node_type": "S", "subcondition": 7, "parent": 2930}}, {"model": "template.logicnode", "pk": 2928, "fields": {"state_transition": 692, "node_type": "S", "subcondition": 2, "parent": 2930}}, {"model": "template.logicnode", "pk": 2929, "fields": {"state_transition": 692, "node_type": "S", "subcondition": 12, "parent": 2930}}, {"model": "template.logicnode", "pk": 2930, "fields": {"state_transition": 692, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2931, "fields": {"state_transition": 693, "node_type": "S", "subcondition": 23, "parent": 2934}}, {"model": "template.logicnode", "pk": 2932, "fields": {"state_transition": 693, "node_type": "S", "subcondition": 7, "parent": 2934}}, {"model": "template.logicnode", "pk": 2933, "fields": {"state_transition": 693, "node_type": "S", "subcondition": 2, "parent": 2934}}, {"model": "template.logicnode", "pk": 2934, "fields": {"state_transition": 693, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2935, "fields": {"state_transition": 694, "node_type": "S", "subcondition": 23, "parent": 2938}}, {"model": "template.logicnode", "pk": 2936, "fields": {"state_transition": 694, "node_type": "S", "subcondition": 7, "parent": 2938}}, {"model": "template.logicnode", "pk": 2937, "fields": {"state_transition": 694, "node_type": "S", "subcondition": 12, "parent": 2938}}, {"model": "template.logicnode", "pk": 2938, "fields": {"state_transition": 694, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2939, "fields": {"state_transition": 695, "node_type": "S", "subcondition": 23, "parent": 2941}}, {"model": "template.logicnode", "pk": 2940, "fields": {"state_transition": 695, "node_type": "S", "subcondition": 7, "parent": 2941}}, {"model": "template.logicnode", "pk": 2941, "fields": {"state_transition": 695, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2942, "fields": {"state_transition": 696, "node_type": "S", "subcondition": 23, "parent": 2945}}, {"model": "template.logicnode", "pk": 2943, "fields": {"state_transition": 696, "node_type": "S", "subcondition": 2, "parent": 2945}}, {"model": "template.logicnode", "pk": 2944, "fields": {"state_transition": 696, "node_type": "S", "subcondition": 12, "parent": 2945}}, {"model": "template.logicnode", "pk": 2945, "fields": {"state_transition": 696, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2946, "fields": {"state_transition": 697, "node_type": "S", "subcondition": 23, "parent": 2948}}, {"model": "template.logicnode", "pk": 2947, "fields": {"state_transition": 697, "node_type": "S", "subcondition": 2, "parent": 2948}}, {"model": "template.logicnode", "pk": 2948, "fields": {"state_transition": 697, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2949, "fields": {"state_transition": 698, "node_type": "S", "subcondition": 23, "parent": 2951}}, {"model": "template.logicnode", "pk": 2950, "fields": {"state_transition": 698, "node_type": "S", "subcondition": 12, "parent": 2951}}, {"model": "template.logicnode", "pk": 2951, "fields": {"state_transition": 698, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2952, "fields": {"state_transition": 699, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2953, "fields": {"state_transition": 700, "node_type": "N", "subcondition": null, "parent": 2959}}, {"model": "template.logicnode", "pk": 2954, "fields": {"state_transition": 700, "node_type": "S", "subcondition": 23, "parent": 2953}}, {"model": "template.logicnode", "pk": 2955, "fields": {"state_transition": 700, "node_type": "S", "subcondition": 11, "parent": 2959}}, {"model": "template.logicnode", "pk": 2956, "fields": {"state_transition": 700, "node_type": "S", "subcondition": 7, "parent": 2959}}, {"model": "template.logicnode", "pk": 2957, "fields": {"state_transition": 700, "node_type": "S", "subcondition": 2, "parent": 2959}}, {"model": "template.logicnode", "pk": 2958, "fields": {"state_transition": 700, "node_type": "S", "subcondition": 12, "parent": 2959}}, {"model": "template.logicnode", "pk": 2959, "fields": {"state_transition": 700, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2960, "fields": {"state_transition": 701, "node_type": "N", "subcondition": null, "parent": 2965}}, {"model": "template.logicnode", "pk": 2961, "fields": {"state_transition": 701, "node_type": "S", "subcondition": 23, "parent": 2960}}, {"model": "template.logicnode", "pk": 2962, "fields": {"state_transition": 701, "node_type": "S", "subcondition": 11, "parent": 2965}}, {"model": "template.logicnode", "pk": 2963, "fields": {"state_transition": 701, "node_type": "S", "subcondition": 7, "parent": 2965}}, {"model": "template.logicnode", "pk": 2964, "fields": {"state_transition": 701, "node_type": "S", "subcondition": 2, "parent": 2965}}, {"model": "template.logicnode", "pk": 2965, "fields": {"state_transition": 701, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2966, "fields": {"state_transition": 702, "node_type": "N", "subcondition": null, "parent": 2971}}, {"model": "template.logicnode", "pk": 2967, "fields": {"state_transition": 702, "node_type": "S", "subcondition": 23, "parent": 2966}}, {"model": "template.logicnode", "pk": 2968, "fields": {"state_transition": 702, "node_type": "S", "subcondition": 11, "parent": 2971}}, {"model": "template.logicnode", "pk": 2969, "fields": {"state_transition": 702, "node_type": "S", "subcondition": 7, "parent": 2971}}, {"model": "template.logicnode", "pk": 2970, "fields": {"state_transition": 702, "node_type": "S", "subcondition": 12, "parent": 2971}}, {"model": "template.logicnode", "pk": 2971, "fields": {"state_transition": 702, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2972, "fields": {"state_transition": 703, "node_type": "N", "subcondition": null, "parent": 2976}}, {"model": "template.logicnode", "pk": 2973, "fields": {"state_transition": 703, "node_type": "S", "subcondition": 23, "parent": 2972}}, {"model": "template.logicnode", "pk": 2974, "fields": {"state_transition": 703, "node_type": "S", "subcondition": 11, "parent": 2976}}, {"model": "template.logicnode", "pk": 2975, "fields": {"state_transition": 703, "node_type": "S", "subcondition": 7, "parent": 2976}}, {"model": "template.logicnode", "pk": 2976, "fields": {"state_transition": 703, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2977, "fields": {"state_transition": 704, "node_type": "N", "subcondition": null, "parent": 2982}}, {"model": "template.logicnode", "pk": 2978, "fields": {"state_transition": 704, "node_type": "S", "subcondition": 23, "parent": 2977}}, {"model": "template.logicnode", "pk": 2979, "fields": {"state_transition": 704, "node_type": "S", "subcondition": 11, "parent": 2982}}, {"model": "template.logicnode", "pk": 2980, "fields": {"state_transition": 704, "node_type": "S", "subcondition": 2, "parent": 2982}}, {"model": "template.logicnode", "pk": 2981, "fields": {"state_transition": 704, "node_type": "S", "subcondition": 12, "parent": 2982}}, {"model": "template.logicnode", "pk": 2982, "fields": {"state_transition": 704, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2983, "fields": {"state_transition": 705, "node_type": "N", "subcondition": null, "parent": 2987}}, {"model": "template.logicnode", "pk": 2984, "fields": {"state_transition": 705, "node_type": "S", "subcondition": 23, "parent": 2983}}, {"model": "template.logicnode", "pk": 2985, "fields": {"state_transition": 705, "node_type": "S", "subcondition": 11, "parent": 2987}}, {"model": "template.logicnode", "pk": 2986, "fields": {"state_transition": 705, "node_type": "S", "subcondition": 2, "parent": 2987}}, {"model": "template.logicnode", "pk": 2987, "fields": {"state_transition": 705, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2988, "fields": {"state_transition": 706, "node_type": "N", "subcondition": null, "parent": 2992}}, {"model": "template.logicnode", "pk": 2989, "fields": {"state_transition": 706, "node_type": "S", "subcondition": 23, "parent": 2988}}, {"model": "template.logicnode", "pk": 2990, "fields": {"state_transition": 706, "node_type": "S", "subcondition": 11, "parent": 2992}}, {"model": "template.logicnode", "pk": 2991, "fields": {"state_transition": 706, "node_type": "S", "subcondition": 12, "parent": 2992}}, {"model": "template.logicnode", "pk": 2992, "fields": {"state_transition": 706, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2993, "fields": {"state_transition": 707, "node_type": "N", "subcondition": null, "parent": 2996}}, {"model": "template.logicnode", "pk": 2994, "fields": {"state_transition": 707, "node_type": "S", "subcondition": 23, "parent": 2993}}, {"model": "template.logicnode", "pk": 2995, "fields": {"state_transition": 707, "node_type": "S", "subcondition": 11, "parent": 2996}}, {"model": "template.logicnode", "pk": 2996, "fields": {"state_transition": 707, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2997, "fields": {"state_transition": 708, "node_type": "N", "subcondition": null, "parent": 3002}}, {"model": "template.logicnode", "pk": 2998, "fields": {"state_transition": 708, "node_type": "S", "subcondition": 23, "parent": 2997}}, {"model": "template.logicnode", "pk": 2999, "fields": {"state_transition": 708, "node_type": "S", "subcondition": 7, "parent": 3002}}, {"model": "template.logicnode", "pk": 3000, "fields": {"state_transition": 708, "node_type": "S", "subcondition": 2, "parent": 3002}}, {"model": "template.logicnode", "pk": 3001, "fields": {"state_transition": 708, "node_type": "S", "subcondition": 12, "parent": 3002}}, {"model": "template.logicnode", "pk": 3002, "fields": {"state_transition": 708, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3003, "fields": {"state_transition": 709, "node_type": "N", "subcondition": null, "parent": 3007}}, {"model": "template.logicnode", "pk": 3004, "fields": {"state_transition": 709, "node_type": "S", "subcondition": 23, "parent": 3003}}, {"model": "template.logicnode", "pk": 3005, "fields": {"state_transition": 709, "node_type": "S", "subcondition": 7, "parent": 3007}}, {"model": "template.logicnode", "pk": 3006, "fields": {"state_transition": 709, "node_type": "S", "subcondition": 2, "parent": 3007}}, {"model": "template.logicnode", "pk": 3007, "fields": {"state_transition": 709, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3008, "fields": {"state_transition": 710, "node_type": "N", "subcondition": null, "parent": 3012}}, {"model": "template.logicnode", "pk": 3009, "fields": {"state_transition": 710, "node_type": "S", "subcondition": 23, "parent": 3008}}, {"model": "template.logicnode", "pk": 3010, "fields": {"state_transition": 710, "node_type": "S", "subcondition": 7, "parent": 3012}}, {"model": "template.logicnode", "pk": 3011, "fields": {"state_transition": 710, "node_type": "S", "subcondition": 12, "parent": 3012}}, {"model": "template.logicnode", "pk": 3012, "fields": {"state_transition": 710, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3013, "fields": {"state_transition": 711, "node_type": "N", "subcondition": null, "parent": 3016}}, {"model": "template.logicnode", "pk": 3014, "fields": {"state_transition": 711, "node_type": "S", "subcondition": 23, "parent": 3013}}, {"model": "template.logicnode", "pk": 3015, "fields": {"state_transition": 711, "node_type": "S", "subcondition": 7, "parent": 3016}}, {"model": "template.logicnode", "pk": 3016, "fields": {"state_transition": 711, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3017, "fields": {"state_transition": 712, "node_type": "N", "subcondition": null, "parent": 3021}}, {"model": "template.logicnode", "pk": 3018, "fields": {"state_transition": 712, "node_type": "S", "subcondition": 23, "parent": 3017}}, {"model": "template.logicnode", "pk": 3019, "fields": {"state_transition": 712, "node_type": "S", "subcondition": 2, "parent": 3021}}, {"model": "template.logicnode", "pk": 3020, "fields": {"state_transition": 712, "node_type": "S", "subcondition": 12, "parent": 3021}}, {"model": "template.logicnode", "pk": 3021, "fields": {"state_transition": 712, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3022, "fields": {"state_transition": 713, "node_type": "N", "subcondition": null, "parent": 3025}}, {"model": "template.logicnode", "pk": 3023, "fields": {"state_transition": 713, "node_type": "S", "subcondition": 23, "parent": 3022}}, {"model": "template.logicnode", "pk": 3024, "fields": {"state_transition": 713, "node_type": "S", "subcondition": 2, "parent": 3025}}, {"model": "template.logicnode", "pk": 3025, "fields": {"state_transition": 713, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3026, "fields": {"state_transition": 714, "node_type": "N", "subcondition": null, "parent": 3029}}, {"model": "template.logicnode", "pk": 3027, "fields": {"state_transition": 714, "node_type": "S", "subcondition": 23, "parent": 3026}}, {"model": "template.logicnode", "pk": 3028, "fields": {"state_transition": 714, "node_type": "S", "subcondition": 12, "parent": 3029}}, {"model": "template.logicnode", "pk": 3029, "fields": {"state_transition": 714, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3030, "fields": {"state_transition": 715, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3031, "fields": {"state_transition": 715, "node_type": "S", "subcondition": 23, "parent": 3030}}, {"model": "template.logicnode", "pk": 3032, "fields": {"state_transition": 716, "node_type": "S", "subcondition": 23, "parent": 3036}}, {"model": "template.logicnode", "pk": 3033, "fields": {"state_transition": 716, "node_type": "S", "subcondition": 7, "parent": 3036}}, {"model": "template.logicnode", "pk": 3034, "fields": {"state_transition": 716, "node_type": "S", "subcondition": 2, "parent": 3036}}, {"model": "template.logicnode", "pk": 3035, "fields": {"state_transition": 716, "node_type": "S", "subcondition": 12, "parent": 3036}}, {"model": "template.logicnode", "pk": 3036, "fields": {"state_transition": 716, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3037, "fields": {"state_transition": 717, "node_type": "S", "subcondition": 23, "parent": 3040}}, {"model": "template.logicnode", "pk": 3038, "fields": {"state_transition": 717, "node_type": "S", "subcondition": 7, "parent": 3040}}, {"model": "template.logicnode", "pk": 3039, "fields": {"state_transition": 717, "node_type": "S", "subcondition": 2, "parent": 3040}}, {"model": "template.logicnode", "pk": 3040, "fields": {"state_transition": 717, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3041, "fields": {"state_transition": 718, "node_type": "S", "subcondition": 23, "parent": 3044}}, {"model": "template.logicnode", "pk": 3042, "fields": {"state_transition": 718, "node_type": "S", "subcondition": 7, "parent": 3044}}, {"model": "template.logicnode", "pk": 3043, "fields": {"state_transition": 718, "node_type": "S", "subcondition": 12, "parent": 3044}}, {"model": "template.logicnode", "pk": 3044, "fields": {"state_transition": 718, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3045, "fields": {"state_transition": 719, "node_type": "S", "subcondition": 23, "parent": 3047}}, {"model": "template.logicnode", "pk": 3046, "fields": {"state_transition": 719, "node_type": "S", "subcondition": 7, "parent": 3047}}, {"model": "template.logicnode", "pk": 3047, "fields": {"state_transition": 719, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3048, "fields": {"state_transition": 720, "node_type": "S", "subcondition": 23, "parent": 3051}}, {"model": "template.logicnode", "pk": 3049, "fields": {"state_transition": 720, "node_type": "S", "subcondition": 2, "parent": 3051}}, {"model": "template.logicnode", "pk": 3050, "fields": {"state_transition": 720, "node_type": "S", "subcondition": 12, "parent": 3051}}, {"model": "template.logicnode", "pk": 3051, "fields": {"state_transition": 720, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3052, "fields": {"state_transition": 721, "node_type": "S", "subcondition": 23, "parent": 3054}}, {"model": "template.logicnode", "pk": 3053, "fields": {"state_transition": 721, "node_type": "S", "subcondition": 2, "parent": 3054}}, {"model": "template.logicnode", "pk": 3054, "fields": {"state_transition": 721, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3055, "fields": {"state_transition": 722, "node_type": "S", "subcondition": 23, "parent": 3057}}, {"model": "template.logicnode", "pk": 3056, "fields": {"state_transition": 722, "node_type": "S", "subcondition": 12, "parent": 3057}}, {"model": "template.logicnode", "pk": 3057, "fields": {"state_transition": 722, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3058, "fields": {"state_transition": 723, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3059, "fields": {"state_transition": 724, "node_type": "N", "subcondition": null, "parent": 3065}}, {"model": "template.logicnode", "pk": 3060, "fields": {"state_transition": 724, "node_type": "S", "subcondition": 23, "parent": 3059}}, {"model": "template.logicnode", "pk": 3061, "fields": {"state_transition": 724, "node_type": "S", "subcondition": 11, "parent": 3065}}, {"model": "template.logicnode", "pk": 3062, "fields": {"state_transition": 724, "node_type": "S", "subcondition": 7, "parent": 3065}}, {"model": "template.logicnode", "pk": 3063, "fields": {"state_transition": 724, "node_type": "S", "subcondition": 2, "parent": 3065}}, {"model": "template.logicnode", "pk": 3064, "fields": {"state_transition": 724, "node_type": "S", "subcondition": 12, "parent": 3065}}, {"model": "template.logicnode", "pk": 3065, "fields": {"state_transition": 724, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3066, "fields": {"state_transition": 725, "node_type": "N", "subcondition": null, "parent": 3071}}, {"model": "template.logicnode", "pk": 3067, "fields": {"state_transition": 725, "node_type": "S", "subcondition": 23, "parent": 3066}}, {"model": "template.logicnode", "pk": 3068, "fields": {"state_transition": 725, "node_type": "S", "subcondition": 11, "parent": 3071}}, {"model": "template.logicnode", "pk": 3069, "fields": {"state_transition": 725, "node_type": "S", "subcondition": 7, "parent": 3071}}, {"model": "template.logicnode", "pk": 3070, "fields": {"state_transition": 725, "node_type": "S", "subcondition": 2, "parent": 3071}}, {"model": "template.logicnode", "pk": 3071, "fields": {"state_transition": 725, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3072, "fields": {"state_transition": 726, "node_type": "N", "subcondition": null, "parent": 3077}}, {"model": "template.logicnode", "pk": 3073, "fields": {"state_transition": 726, "node_type": "S", "subcondition": 23, "parent": 3072}}, {"model": "template.logicnode", "pk": 3074, "fields": {"state_transition": 726, "node_type": "S", "subcondition": 11, "parent": 3077}}, {"model": "template.logicnode", "pk": 3075, "fields": {"state_transition": 726, "node_type": "S", "subcondition": 7, "parent": 3077}}, {"model": "template.logicnode", "pk": 3076, "fields": {"state_transition": 726, "node_type": "S", "subcondition": 12, "parent": 3077}}, {"model": "template.logicnode", "pk": 3077, "fields": {"state_transition": 726, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3078, "fields": {"state_transition": 727, "node_type": "N", "subcondition": null, "parent": 3082}}, {"model": "template.logicnode", "pk": 3079, "fields": {"state_transition": 727, "node_type": "S", "subcondition": 23, "parent": 3078}}, {"model": "template.logicnode", "pk": 3080, "fields": {"state_transition": 727, "node_type": "S", "subcondition": 11, "parent": 3082}}, {"model": "template.logicnode", "pk": 3081, "fields": {"state_transition": 727, "node_type": "S", "subcondition": 7, "parent": 3082}}, {"model": "template.logicnode", "pk": 3082, "fields": {"state_transition": 727, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3083, "fields": {"state_transition": 728, "node_type": "N", "subcondition": null, "parent": 3088}}, {"model": "template.logicnode", "pk": 3084, "fields": {"state_transition": 728, "node_type": "S", "subcondition": 23, "parent": 3083}}, {"model": "template.logicnode", "pk": 3085, "fields": {"state_transition": 728, "node_type": "S", "subcondition": 11, "parent": 3088}}, {"model": "template.logicnode", "pk": 3086, "fields": {"state_transition": 728, "node_type": "S", "subcondition": 2, "parent": 3088}}, {"model": "template.logicnode", "pk": 3087, "fields": {"state_transition": 728, "node_type": "S", "subcondition": 12, "parent": 3088}}, {"model": "template.logicnode", "pk": 3088, "fields": {"state_transition": 728, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3089, "fields": {"state_transition": 729, "node_type": "N", "subcondition": null, "parent": 3093}}, {"model": "template.logicnode", "pk": 3090, "fields": {"state_transition": 729, "node_type": "S", "subcondition": 23, "parent": 3089}}, {"model": "template.logicnode", "pk": 3091, "fields": {"state_transition": 729, "node_type": "S", "subcondition": 11, "parent": 3093}}, {"model": "template.logicnode", "pk": 3092, "fields": {"state_transition": 729, "node_type": "S", "subcondition": 2, "parent": 3093}}, {"model": "template.logicnode", "pk": 3093, "fields": {"state_transition": 729, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3094, "fields": {"state_transition": 730, "node_type": "N", "subcondition": null, "parent": 3098}}, {"model": "template.logicnode", "pk": 3095, "fields": {"state_transition": 730, "node_type": "S", "subcondition": 23, "parent": 3094}}, {"model": "template.logicnode", "pk": 3096, "fields": {"state_transition": 730, "node_type": "S", "subcondition": 11, "parent": 3098}}, {"model": "template.logicnode", "pk": 3097, "fields": {"state_transition": 730, "node_type": "S", "subcondition": 12, "parent": 3098}}, {"model": "template.logicnode", "pk": 3098, "fields": {"state_transition": 730, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3099, "fields": {"state_transition": 731, "node_type": "N", "subcondition": null, "parent": 3102}}, {"model": "template.logicnode", "pk": 3100, "fields": {"state_transition": 731, "node_type": "S", "subcondition": 23, "parent": 3099}}, {"model": "template.logicnode", "pk": 3101, "fields": {"state_transition": 731, "node_type": "S", "subcondition": 11, "parent": 3102}}, {"model": "template.logicnode", "pk": 3102, "fields": {"state_transition": 731, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3103, "fields": {"state_transition": 732, "node_type": "N", "subcondition": null, "parent": 3108}}, {"model": "template.logicnode", "pk": 3104, "fields": {"state_transition": 732, "node_type": "S", "subcondition": 23, "parent": 3103}}, {"model": "template.logicnode", "pk": 3105, "fields": {"state_transition": 732, "node_type": "S", "subcondition": 7, "parent": 3108}}, {"model": "template.logicnode", "pk": 3106, "fields": {"state_transition": 732, "node_type": "S", "subcondition": 2, "parent": 3108}}, {"model": "template.logicnode", "pk": 3107, "fields": {"state_transition": 732, "node_type": "S", "subcondition": 12, "parent": 3108}}, {"model": "template.logicnode", "pk": 3108, "fields": {"state_transition": 732, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3109, "fields": {"state_transition": 733, "node_type": "N", "subcondition": null, "parent": 3113}}, {"model": "template.logicnode", "pk": 3110, "fields": {"state_transition": 733, "node_type": "S", "subcondition": 23, "parent": 3109}}, {"model": "template.logicnode", "pk": 3111, "fields": {"state_transition": 733, "node_type": "S", "subcondition": 7, "parent": 3113}}, {"model": "template.logicnode", "pk": 3112, "fields": {"state_transition": 733, "node_type": "S", "subcondition": 2, "parent": 3113}}, {"model": "template.logicnode", "pk": 3113, "fields": {"state_transition": 733, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3114, "fields": {"state_transition": 734, "node_type": "N", "subcondition": null, "parent": 3118}}, {"model": "template.logicnode", "pk": 3115, "fields": {"state_transition": 734, "node_type": "S", "subcondition": 23, "parent": 3114}}, {"model": "template.logicnode", "pk": 3116, "fields": {"state_transition": 734, "node_type": "S", "subcondition": 7, "parent": 3118}}, {"model": "template.logicnode", "pk": 3117, "fields": {"state_transition": 734, "node_type": "S", "subcondition": 12, "parent": 3118}}, {"model": "template.logicnode", "pk": 3118, "fields": {"state_transition": 734, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3119, "fields": {"state_transition": 735, "node_type": "N", "subcondition": null, "parent": 3122}}, {"model": "template.logicnode", "pk": 3120, "fields": {"state_transition": 735, "node_type": "S", "subcondition": 23, "parent": 3119}}, {"model": "template.logicnode", "pk": 3121, "fields": {"state_transition": 735, "node_type": "S", "subcondition": 7, "parent": 3122}}, {"model": "template.logicnode", "pk": 3122, "fields": {"state_transition": 735, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3123, "fields": {"state_transition": 736, "node_type": "N", "subcondition": null, "parent": 3127}}, {"model": "template.logicnode", "pk": 3124, "fields": {"state_transition": 736, "node_type": "S", "subcondition": 23, "parent": 3123}}, {"model": "template.logicnode", "pk": 3125, "fields": {"state_transition": 736, "node_type": "S", "subcondition": 2, "parent": 3127}}, {"model": "template.logicnode", "pk": 3126, "fields": {"state_transition": 736, "node_type": "S", "subcondition": 12, "parent": 3127}}, {"model": "template.logicnode", "pk": 3127, "fields": {"state_transition": 736, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3128, "fields": {"state_transition": 737, "node_type": "N", "subcondition": null, "parent": 3131}}, {"model": "template.logicnode", "pk": 3129, "fields": {"state_transition": 737, "node_type": "S", "subcondition": 23, "parent": 3128}}, {"model": "template.logicnode", "pk": 3130, "fields": {"state_transition": 737, "node_type": "S", "subcondition": 2, "parent": 3131}}, {"model": "template.logicnode", "pk": 3131, "fields": {"state_transition": 737, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3132, "fields": {"state_transition": 738, "node_type": "N", "subcondition": null, "parent": 3135}}, {"model": "template.logicnode", "pk": 3133, "fields": {"state_transition": 738, "node_type": "S", "subcondition": 23, "parent": 3132}}, {"model": "template.logicnode", "pk": 3134, "fields": {"state_transition": 738, "node_type": "S", "subcondition": 12, "parent": 3135}}, {"model": "template.logicnode", "pk": 3135, "fields": {"state_transition": 738, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3136, "fields": {"state_transition": 739, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3137, "fields": {"state_transition": 739, "node_type": "S", "subcondition": 23, "parent": 3136}}, {"model": "template.logicnode", "pk": 3138, "fields": {"state_transition": 740, "node_type": "S", "subcondition": 23, "parent": 3142}}, {"model": "template.logicnode", "pk": 3139, "fields": {"state_transition": 740, "node_type": "S", "subcondition": 7, "parent": 3142}}, {"model": "template.logicnode", "pk": 3140, "fields": {"state_transition": 740, "node_type": "S", "subcondition": 2, "parent": 3142}}, {"model": "template.logicnode", "pk": 3141, "fields": {"state_transition": 740, "node_type": "S", "subcondition": 12, "parent": 3142}}, {"model": "template.logicnode", "pk": 3142, "fields": {"state_transition": 740, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3143, "fields": {"state_transition": 741, "node_type": "S", "subcondition": 23, "parent": 3146}}, {"model": "template.logicnode", "pk": 3144, "fields": {"state_transition": 741, "node_type": "S", "subcondition": 7, "parent": 3146}}, {"model": "template.logicnode", "pk": 3145, "fields": {"state_transition": 741, "node_type": "S", "subcondition": 2, "parent": 3146}}, {"model": "template.logicnode", "pk": 3146, "fields": {"state_transition": 741, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3147, "fields": {"state_transition": 742, "node_type": "S", "subcondition": 23, "parent": 3150}}, {"model": "template.logicnode", "pk": 3148, "fields": {"state_transition": 742, "node_type": "S", "subcondition": 7, "parent": 3150}}, {"model": "template.logicnode", "pk": 3149, "fields": {"state_transition": 742, "node_type": "S", "subcondition": 12, "parent": 3150}}, {"model": "template.logicnode", "pk": 3150, "fields": {"state_transition": 742, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3151, "fields": {"state_transition": 743, "node_type": "S", "subcondition": 23, "parent": 3153}}, {"model": "template.logicnode", "pk": 3152, "fields": {"state_transition": 743, "node_type": "S", "subcondition": 7, "parent": 3153}}, {"model": "template.logicnode", "pk": 3153, "fields": {"state_transition": 743, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3154, "fields": {"state_transition": 744, "node_type": "S", "subcondition": 23, "parent": 3157}}, {"model": "template.logicnode", "pk": 3155, "fields": {"state_transition": 744, "node_type": "S", "subcondition": 2, "parent": 3157}}, {"model": "template.logicnode", "pk": 3156, "fields": {"state_transition": 744, "node_type": "S", "subcondition": 12, "parent": 3157}}, {"model": "template.logicnode", "pk": 3157, "fields": {"state_transition": 744, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3158, "fields": {"state_transition": 745, "node_type": "S", "subcondition": 23, "parent": 3160}}, {"model": "template.logicnode", "pk": 3159, "fields": {"state_transition": 745, "node_type": "S", "subcondition": 2, "parent": 3160}}, {"model": "template.logicnode", "pk": 3160, "fields": {"state_transition": 745, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3161, "fields": {"state_transition": 746, "node_type": "S", "subcondition": 23, "parent": 3163}}, {"model": "template.logicnode", "pk": 3162, "fields": {"state_transition": 746, "node_type": "S", "subcondition": 12, "parent": 3163}}, {"model": "template.logicnode", "pk": 3163, "fields": {"state_transition": 746, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3164, "fields": {"state_transition": 747, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3165, "fields": {"state_transition": 748, "node_type": "N", "subcondition": null, "parent": 3171}}, {"model": "template.logicnode", "pk": 3166, "fields": {"state_transition": 748, "node_type": "S", "subcondition": 23, "parent": 3165}}, {"model": "template.logicnode", "pk": 3167, "fields": {"state_transition": 748, "node_type": "S", "subcondition": 11, "parent": 3171}}, {"model": "template.logicnode", "pk": 3168, "fields": {"state_transition": 748, "node_type": "S", "subcondition": 7, "parent": 3171}}, {"model": "template.logicnode", "pk": 3169, "fields": {"state_transition": 748, "node_type": "S", "subcondition": 2, "parent": 3171}}, {"model": "template.logicnode", "pk": 3170, "fields": {"state_transition": 748, "node_type": "S", "subcondition": 12, "parent": 3171}}, {"model": "template.logicnode", "pk": 3171, "fields": {"state_transition": 748, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3172, "fields": {"state_transition": 749, "node_type": "N", "subcondition": null, "parent": 3177}}, {"model": "template.logicnode", "pk": 3173, "fields": {"state_transition": 749, "node_type": "S", "subcondition": 23, "parent": 3172}}, {"model": "template.logicnode", "pk": 3174, "fields": {"state_transition": 749, "node_type": "S", "subcondition": 11, "parent": 3177}}, {"model": "template.logicnode", "pk": 3175, "fields": {"state_transition": 749, "node_type": "S", "subcondition": 7, "parent": 3177}}, {"model": "template.logicnode", "pk": 3176, "fields": {"state_transition": 749, "node_type": "S", "subcondition": 2, "parent": 3177}}, {"model": "template.logicnode", "pk": 3177, "fields": {"state_transition": 749, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3178, "fields": {"state_transition": 750, "node_type": "N", "subcondition": null, "parent": 3183}}, {"model": "template.logicnode", "pk": 3179, "fields": {"state_transition": 750, "node_type": "S", "subcondition": 23, "parent": 3178}}, {"model": "template.logicnode", "pk": 3180, "fields": {"state_transition": 750, "node_type": "S", "subcondition": 11, "parent": 3183}}, {"model": "template.logicnode", "pk": 3181, "fields": {"state_transition": 750, "node_type": "S", "subcondition": 7, "parent": 3183}}, {"model": "template.logicnode", "pk": 3182, "fields": {"state_transition": 750, "node_type": "S", "subcondition": 12, "parent": 3183}}, {"model": "template.logicnode", "pk": 3183, "fields": {"state_transition": 750, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3184, "fields": {"state_transition": 751, "node_type": "N", "subcondition": null, "parent": 3188}}, {"model": "template.logicnode", "pk": 3185, "fields": {"state_transition": 751, "node_type": "S", "subcondition": 23, "parent": 3184}}, {"model": "template.logicnode", "pk": 3186, "fields": {"state_transition": 751, "node_type": "S", "subcondition": 11, "parent": 3188}}, {"model": "template.logicnode", "pk": 3187, "fields": {"state_transition": 751, "node_type": "S", "subcondition": 7, "parent": 3188}}, {"model": "template.logicnode", "pk": 3188, "fields": {"state_transition": 751, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3189, "fields": {"state_transition": 752, "node_type": "N", "subcondition": null, "parent": 3194}}, {"model": "template.logicnode", "pk": 3190, "fields": {"state_transition": 752, "node_type": "S", "subcondition": 23, "parent": 3189}}, {"model": "template.logicnode", "pk": 3191, "fields": {"state_transition": 752, "node_type": "S", "subcondition": 11, "parent": 3194}}, {"model": "template.logicnode", "pk": 3192, "fields": {"state_transition": 752, "node_type": "S", "subcondition": 2, "parent": 3194}}, {"model": "template.logicnode", "pk": 3193, "fields": {"state_transition": 752, "node_type": "S", "subcondition": 12, "parent": 3194}}, {"model": "template.logicnode", "pk": 3194, "fields": {"state_transition": 752, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3195, "fields": {"state_transition": 753, "node_type": "N", "subcondition": null, "parent": 3199}}, {"model": "template.logicnode", "pk": 3196, "fields": {"state_transition": 753, "node_type": "S", "subcondition": 23, "parent": 3195}}, {"model": "template.logicnode", "pk": 3197, "fields": {"state_transition": 753, "node_type": "S", "subcondition": 11, "parent": 3199}}, {"model": "template.logicnode", "pk": 3198, "fields": {"state_transition": 753, "node_type": "S", "subcondition": 2, "parent": 3199}}, {"model": "template.logicnode", "pk": 3199, "fields": {"state_transition": 753, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3200, "fields": {"state_transition": 754, "node_type": "N", "subcondition": null, "parent": 3204}}, {"model": "template.logicnode", "pk": 3201, "fields": {"state_transition": 754, "node_type": "S", "subcondition": 23, "parent": 3200}}, {"model": "template.logicnode", "pk": 3202, "fields": {"state_transition": 754, "node_type": "S", "subcondition": 11, "parent": 3204}}, {"model": "template.logicnode", "pk": 3203, "fields": {"state_transition": 754, "node_type": "S", "subcondition": 12, "parent": 3204}}, {"model": "template.logicnode", "pk": 3204, "fields": {"state_transition": 754, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3205, "fields": {"state_transition": 755, "node_type": "N", "subcondition": null, "parent": 3208}}, {"model": "template.logicnode", "pk": 3206, "fields": {"state_transition": 755, "node_type": "S", "subcondition": 23, "parent": 3205}}, {"model": "template.logicnode", "pk": 3207, "fields": {"state_transition": 755, "node_type": "S", "subcondition": 11, "parent": 3208}}, {"model": "template.logicnode", "pk": 3208, "fields": {"state_transition": 755, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3209, "fields": {"state_transition": 756, "node_type": "N", "subcondition": null, "parent": 3214}}, {"model": "template.logicnode", "pk": 3210, "fields": {"state_transition": 756, "node_type": "S", "subcondition": 23, "parent": 3209}}, {"model": "template.logicnode", "pk": 3211, "fields": {"state_transition": 756, "node_type": "S", "subcondition": 7, "parent": 3214}}, {"model": "template.logicnode", "pk": 3212, "fields": {"state_transition": 756, "node_type": "S", "subcondition": 2, "parent": 3214}}, {"model": "template.logicnode", "pk": 3213, "fields": {"state_transition": 756, "node_type": "S", "subcondition": 12, "parent": 3214}}, {"model": "template.logicnode", "pk": 3214, "fields": {"state_transition": 756, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3215, "fields": {"state_transition": 757, "node_type": "N", "subcondition": null, "parent": 3219}}, {"model": "template.logicnode", "pk": 3216, "fields": {"state_transition": 757, "node_type": "S", "subcondition": 23, "parent": 3215}}, {"model": "template.logicnode", "pk": 3217, "fields": {"state_transition": 757, "node_type": "S", "subcondition": 7, "parent": 3219}}, {"model": "template.logicnode", "pk": 3218, "fields": {"state_transition": 757, "node_type": "S", "subcondition": 2, "parent": 3219}}, {"model": "template.logicnode", "pk": 3219, "fields": {"state_transition": 757, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3220, "fields": {"state_transition": 758, "node_type": "N", "subcondition": null, "parent": 3224}}, {"model": "template.logicnode", "pk": 3221, "fields": {"state_transition": 758, "node_type": "S", "subcondition": 23, "parent": 3220}}, {"model": "template.logicnode", "pk": 3222, "fields": {"state_transition": 758, "node_type": "S", "subcondition": 7, "parent": 3224}}, {"model": "template.logicnode", "pk": 3223, "fields": {"state_transition": 758, "node_type": "S", "subcondition": 12, "parent": 3224}}, {"model": "template.logicnode", "pk": 3224, "fields": {"state_transition": 758, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3225, "fields": {"state_transition": 759, "node_type": "N", "subcondition": null, "parent": 3228}}, {"model": "template.logicnode", "pk": 3226, "fields": {"state_transition": 759, "node_type": "S", "subcondition": 23, "parent": 3225}}, {"model": "template.logicnode", "pk": 3227, "fields": {"state_transition": 759, "node_type": "S", "subcondition": 7, "parent": 3228}}, {"model": "template.logicnode", "pk": 3228, "fields": {"state_transition": 759, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3229, "fields": {"state_transition": 760, "node_type": "N", "subcondition": null, "parent": 3233}}, {"model": "template.logicnode", "pk": 3230, "fields": {"state_transition": 760, "node_type": "S", "subcondition": 23, "parent": 3229}}, {"model": "template.logicnode", "pk": 3231, "fields": {"state_transition": 760, "node_type": "S", "subcondition": 2, "parent": 3233}}, {"model": "template.logicnode", "pk": 3232, "fields": {"state_transition": 760, "node_type": "S", "subcondition": 12, "parent": 3233}}, {"model": "template.logicnode", "pk": 3233, "fields": {"state_transition": 760, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3234, "fields": {"state_transition": 761, "node_type": "N", "subcondition": null, "parent": 3237}}, {"model": "template.logicnode", "pk": 3235, "fields": {"state_transition": 761, "node_type": "S", "subcondition": 23, "parent": 3234}}, {"model": "template.logicnode", "pk": 3236, "fields": {"state_transition": 761, "node_type": "S", "subcondition": 2, "parent": 3237}}, {"model": "template.logicnode", "pk": 3237, "fields": {"state_transition": 761, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3238, "fields": {"state_transition": 762, "node_type": "N", "subcondition": null, "parent": 3241}}, {"model": "template.logicnode", "pk": 3239, "fields": {"state_transition": 762, "node_type": "S", "subcondition": 23, "parent": 3238}}, {"model": "template.logicnode", "pk": 3240, "fields": {"state_transition": 762, "node_type": "S", "subcondition": 12, "parent": 3241}}, {"model": "template.logicnode", "pk": 3241, "fields": {"state_transition": 762, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3242, "fields": {"state_transition": 763, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3243, "fields": {"state_transition": 763, "node_type": "S", "subcondition": 23, "parent": 3242}}, {"model": "template.logicnode", "pk": 3244, "fields": {"state_transition": 764, "node_type": "S", "subcondition": 23, "parent": 3248}}, {"model": "template.logicnode", "pk": 3245, "fields": {"state_transition": 764, "node_type": "S", "subcondition": 7, "parent": 3248}}, {"model": "template.logicnode", "pk": 3246, "fields": {"state_transition": 764, "node_type": "S", "subcondition": 2, "parent": 3248}}, {"model": "template.logicnode", "pk": 3247, "fields": {"state_transition": 764, "node_type": "S", "subcondition": 12, "parent": 3248}}, {"model": "template.logicnode", "pk": 3248, "fields": {"state_transition": 764, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3249, "fields": {"state_transition": 765, "node_type": "S", "subcondition": 23, "parent": 3252}}, {"model": "template.logicnode", "pk": 3250, "fields": {"state_transition": 765, "node_type": "S", "subcondition": 7, "parent": 3252}}, {"model": "template.logicnode", "pk": 3251, "fields": {"state_transition": 765, "node_type": "S", "subcondition": 2, "parent": 3252}}, {"model": "template.logicnode", "pk": 3252, "fields": {"state_transition": 765, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3253, "fields": {"state_transition": 766, "node_type": "S", "subcondition": 23, "parent": 3256}}, {"model": "template.logicnode", "pk": 3254, "fields": {"state_transition": 766, "node_type": "S", "subcondition": 7, "parent": 3256}}, {"model": "template.logicnode", "pk": 3255, "fields": {"state_transition": 766, "node_type": "S", "subcondition": 12, "parent": 3256}}, {"model": "template.logicnode", "pk": 3256, "fields": {"state_transition": 766, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3257, "fields": {"state_transition": 767, "node_type": "S", "subcondition": 23, "parent": 3259}}, {"model": "template.logicnode", "pk": 3258, "fields": {"state_transition": 767, "node_type": "S", "subcondition": 7, "parent": 3259}}, {"model": "template.logicnode", "pk": 3259, "fields": {"state_transition": 767, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3260, "fields": {"state_transition": 768, "node_type": "S", "subcondition": 23, "parent": 3263}}, {"model": "template.logicnode", "pk": 3261, "fields": {"state_transition": 768, "node_type": "S", "subcondition": 2, "parent": 3263}}, {"model": "template.logicnode", "pk": 3262, "fields": {"state_transition": 768, "node_type": "S", "subcondition": 12, "parent": 3263}}, {"model": "template.logicnode", "pk": 3263, "fields": {"state_transition": 768, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3264, "fields": {"state_transition": 769, "node_type": "S", "subcondition": 23, "parent": 3266}}, {"model": "template.logicnode", "pk": 3265, "fields": {"state_transition": 769, "node_type": "S", "subcondition": 2, "parent": 3266}}, {"model": "template.logicnode", "pk": 3266, "fields": {"state_transition": 769, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3267, "fields": {"state_transition": 770, "node_type": "S", "subcondition": 23, "parent": 3269}}, {"model": "template.logicnode", "pk": 3268, "fields": {"state_transition": 770, "node_type": "S", "subcondition": 12, "parent": 3269}}, {"model": "template.logicnode", "pk": 3269, "fields": {"state_transition": 770, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3270, "fields": {"state_transition": 771, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3271, "fields": {"state_transition": 772, "node_type": "N", "subcondition": null, "parent": 3277}}, {"model": "template.logicnode", "pk": 3272, "fields": {"state_transition": 772, "node_type": "S", "subcondition": 23, "parent": 3271}}, {"model": "template.logicnode", "pk": 3273, "fields": {"state_transition": 772, "node_type": "S", "subcondition": 11, "parent": 3277}}, {"model": "template.logicnode", "pk": 3274, "fields": {"state_transition": 772, "node_type": "S", "subcondition": 7, "parent": 3277}}, {"model": "template.logicnode", "pk": 3275, "fields": {"state_transition": 772, "node_type": "S", "subcondition": 2, "parent": 3277}}, {"model": "template.logicnode", "pk": 3276, "fields": {"state_transition": 772, "node_type": "S", "subcondition": 12, "parent": 3277}}, {"model": "template.logicnode", "pk": 3277, "fields": {"state_transition": 772, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3278, "fields": {"state_transition": 773, "node_type": "N", "subcondition": null, "parent": 3283}}, {"model": "template.logicnode", "pk": 3279, "fields": {"state_transition": 773, "node_type": "S", "subcondition": 23, "parent": 3278}}, {"model": "template.logicnode", "pk": 3280, "fields": {"state_transition": 773, "node_type": "S", "subcondition": 11, "parent": 3283}}, {"model": "template.logicnode", "pk": 3281, "fields": {"state_transition": 773, "node_type": "S", "subcondition": 7, "parent": 3283}}, {"model": "template.logicnode", "pk": 3282, "fields": {"state_transition": 773, "node_type": "S", "subcondition": 2, "parent": 3283}}, {"model": "template.logicnode", "pk": 3283, "fields": {"state_transition": 773, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3284, "fields": {"state_transition": 774, "node_type": "N", "subcondition": null, "parent": 3289}}, {"model": "template.logicnode", "pk": 3285, "fields": {"state_transition": 774, "node_type": "S", "subcondition": 23, "parent": 3284}}, {"model": "template.logicnode", "pk": 3286, "fields": {"state_transition": 774, "node_type": "S", "subcondition": 11, "parent": 3289}}, {"model": "template.logicnode", "pk": 3287, "fields": {"state_transition": 774, "node_type": "S", "subcondition": 7, "parent": 3289}}, {"model": "template.logicnode", "pk": 3288, "fields": {"state_transition": 774, "node_type": "S", "subcondition": 12, "parent": 3289}}, {"model": "template.logicnode", "pk": 3289, "fields": {"state_transition": 774, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3290, "fields": {"state_transition": 775, "node_type": "N", "subcondition": null, "parent": 3294}}, {"model": "template.logicnode", "pk": 3291, "fields": {"state_transition": 775, "node_type": "S", "subcondition": 23, "parent": 3290}}, {"model": "template.logicnode", "pk": 3292, "fields": {"state_transition": 775, "node_type": "S", "subcondition": 11, "parent": 3294}}, {"model": "template.logicnode", "pk": 3293, "fields": {"state_transition": 775, "node_type": "S", "subcondition": 7, "parent": 3294}}, {"model": "template.logicnode", "pk": 3294, "fields": {"state_transition": 775, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3295, "fields": {"state_transition": 776, "node_type": "N", "subcondition": null, "parent": 3300}}, {"model": "template.logicnode", "pk": 3296, "fields": {"state_transition": 776, "node_type": "S", "subcondition": 23, "parent": 3295}}, {"model": "template.logicnode", "pk": 3297, "fields": {"state_transition": 776, "node_type": "S", "subcondition": 11, "parent": 3300}}, {"model": "template.logicnode", "pk": 3298, "fields": {"state_transition": 776, "node_type": "S", "subcondition": 2, "parent": 3300}}, {"model": "template.logicnode", "pk": 3299, "fields": {"state_transition": 776, "node_type": "S", "subcondition": 12, "parent": 3300}}, {"model": "template.logicnode", "pk": 3300, "fields": {"state_transition": 776, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3301, "fields": {"state_transition": 777, "node_type": "N", "subcondition": null, "parent": 3305}}, {"model": "template.logicnode", "pk": 3302, "fields": {"state_transition": 777, "node_type": "S", "subcondition": 23, "parent": 3301}}, {"model": "template.logicnode", "pk": 3303, "fields": {"state_transition": 777, "node_type": "S", "subcondition": 11, "parent": 3305}}, {"model": "template.logicnode", "pk": 3304, "fields": {"state_transition": 777, "node_type": "S", "subcondition": 2, "parent": 3305}}, {"model": "template.logicnode", "pk": 3305, "fields": {"state_transition": 777, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3306, "fields": {"state_transition": 778, "node_type": "N", "subcondition": null, "parent": 3310}}, {"model": "template.logicnode", "pk": 3307, "fields": {"state_transition": 778, "node_type": "S", "subcondition": 23, "parent": 3306}}, {"model": "template.logicnode", "pk": 3308, "fields": {"state_transition": 778, "node_type": "S", "subcondition": 11, "parent": 3310}}, {"model": "template.logicnode", "pk": 3309, "fields": {"state_transition": 778, "node_type": "S", "subcondition": 12, "parent": 3310}}, {"model": "template.logicnode", "pk": 3310, "fields": {"state_transition": 778, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3311, "fields": {"state_transition": 779, "node_type": "N", "subcondition": null, "parent": 3314}}, {"model": "template.logicnode", "pk": 3312, "fields": {"state_transition": 779, "node_type": "S", "subcondition": 23, "parent": 3311}}, {"model": "template.logicnode", "pk": 3313, "fields": {"state_transition": 779, "node_type": "S", "subcondition": 11, "parent": 3314}}, {"model": "template.logicnode", "pk": 3314, "fields": {"state_transition": 779, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3315, "fields": {"state_transition": 780, "node_type": "N", "subcondition": null, "parent": 3320}}, {"model": "template.logicnode", "pk": 3316, "fields": {"state_transition": 780, "node_type": "S", "subcondition": 23, "parent": 3315}}, {"model": "template.logicnode", "pk": 3317, "fields": {"state_transition": 780, "node_type": "S", "subcondition": 7, "parent": 3320}}, {"model": "template.logicnode", "pk": 3318, "fields": {"state_transition": 780, "node_type": "S", "subcondition": 2, "parent": 3320}}, {"model": "template.logicnode", "pk": 3319, "fields": {"state_transition": 780, "node_type": "S", "subcondition": 12, "parent": 3320}}, {"model": "template.logicnode", "pk": 3320, "fields": {"state_transition": 780, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3321, "fields": {"state_transition": 781, "node_type": "N", "subcondition": null, "parent": 3325}}, {"model": "template.logicnode", "pk": 3322, "fields": {"state_transition": 781, "node_type": "S", "subcondition": 23, "parent": 3321}}, {"model": "template.logicnode", "pk": 3323, "fields": {"state_transition": 781, "node_type": "S", "subcondition": 7, "parent": 3325}}, {"model": "template.logicnode", "pk": 3324, "fields": {"state_transition": 781, "node_type": "S", "subcondition": 2, "parent": 3325}}, {"model": "template.logicnode", "pk": 3325, "fields": {"state_transition": 781, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3326, "fields": {"state_transition": 782, "node_type": "N", "subcondition": null, "parent": 3330}}, {"model": "template.logicnode", "pk": 3327, "fields": {"state_transition": 782, "node_type": "S", "subcondition": 23, "parent": 3326}}, {"model": "template.logicnode", "pk": 3328, "fields": {"state_transition": 782, "node_type": "S", "subcondition": 7, "parent": 3330}}, {"model": "template.logicnode", "pk": 3329, "fields": {"state_transition": 782, "node_type": "S", "subcondition": 12, "parent": 3330}}, {"model": "template.logicnode", "pk": 3330, "fields": {"state_transition": 782, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3331, "fields": {"state_transition": 783, "node_type": "N", "subcondition": null, "parent": 3334}}, {"model": "template.logicnode", "pk": 3332, "fields": {"state_transition": 783, "node_type": "S", "subcondition": 23, "parent": 3331}}, {"model": "template.logicnode", "pk": 3333, "fields": {"state_transition": 783, "node_type": "S", "subcondition": 7, "parent": 3334}}, {"model": "template.logicnode", "pk": 3334, "fields": {"state_transition": 783, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3335, "fields": {"state_transition": 784, "node_type": "N", "subcondition": null, "parent": 3339}}, {"model": "template.logicnode", "pk": 3336, "fields": {"state_transition": 784, "node_type": "S", "subcondition": 23, "parent": 3335}}, {"model": "template.logicnode", "pk": 3337, "fields": {"state_transition": 784, "node_type": "S", "subcondition": 2, "parent": 3339}}, {"model": "template.logicnode", "pk": 3338, "fields": {"state_transition": 784, "node_type": "S", "subcondition": 12, "parent": 3339}}, {"model": "template.logicnode", "pk": 3339, "fields": {"state_transition": 784, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3340, "fields": {"state_transition": 785, "node_type": "N", "subcondition": null, "parent": 3343}}, {"model": "template.logicnode", "pk": 3341, "fields": {"state_transition": 785, "node_type": "S", "subcondition": 23, "parent": 3340}}, {"model": "template.logicnode", "pk": 3342, "fields": {"state_transition": 785, "node_type": "S", "subcondition": 2, "parent": 3343}}, {"model": "template.logicnode", "pk": 3343, "fields": {"state_transition": 785, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3344, "fields": {"state_transition": 786, "node_type": "N", "subcondition": null, "parent": 3347}}, {"model": "template.logicnode", "pk": 3345, "fields": {"state_transition": 786, "node_type": "S", "subcondition": 23, "parent": 3344}}, {"model": "template.logicnode", "pk": 3346, "fields": {"state_transition": 786, "node_type": "S", "subcondition": 12, "parent": 3347}}, {"model": "template.logicnode", "pk": 3347, "fields": {"state_transition": 786, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3348, "fields": {"state_transition": 787, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3349, "fields": {"state_transition": 787, "node_type": "S", "subcondition": 23, "parent": 3348}}, {"model": "template.logicnode", "pk": 3350, "fields": {"state_transition": 788, "node_type": "S", "subcondition": 23, "parent": 3354}}, {"model": "template.logicnode", "pk": 3351, "fields": {"state_transition": 788, "node_type": "S", "subcondition": 7, "parent": 3354}}, {"model": "template.logicnode", "pk": 3352, "fields": {"state_transition": 788, "node_type": "S", "subcondition": 2, "parent": 3354}}, {"model": "template.logicnode", "pk": 3353, "fields": {"state_transition": 788, "node_type": "S", "subcondition": 12, "parent": 3354}}, {"model": "template.logicnode", "pk": 3354, "fields": {"state_transition": 788, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3355, "fields": {"state_transition": 789, "node_type": "S", "subcondition": 23, "parent": 3358}}, {"model": "template.logicnode", "pk": 3356, "fields": {"state_transition": 789, "node_type": "S", "subcondition": 7, "parent": 3358}}, {"model": "template.logicnode", "pk": 3357, "fields": {"state_transition": 789, "node_type": "S", "subcondition": 2, "parent": 3358}}, {"model": "template.logicnode", "pk": 3358, "fields": {"state_transition": 789, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3359, "fields": {"state_transition": 790, "node_type": "S", "subcondition": 23, "parent": 3362}}, {"model": "template.logicnode", "pk": 3360, "fields": {"state_transition": 790, "node_type": "S", "subcondition": 7, "parent": 3362}}, {"model": "template.logicnode", "pk": 3361, "fields": {"state_transition": 790, "node_type": "S", "subcondition": 12, "parent": 3362}}, {"model": "template.logicnode", "pk": 3362, "fields": {"state_transition": 790, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3363, "fields": {"state_transition": 791, "node_type": "S", "subcondition": 23, "parent": 3365}}, {"model": "template.logicnode", "pk": 3364, "fields": {"state_transition": 791, "node_type": "S", "subcondition": 7, "parent": 3365}}, {"model": "template.logicnode", "pk": 3365, "fields": {"state_transition": 791, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3366, "fields": {"state_transition": 792, "node_type": "S", "subcondition": 23, "parent": 3369}}, {"model": "template.logicnode", "pk": 3367, "fields": {"state_transition": 792, "node_type": "S", "subcondition": 2, "parent": 3369}}, {"model": "template.logicnode", "pk": 3368, "fields": {"state_transition": 792, "node_type": "S", "subcondition": 12, "parent": 3369}}, {"model": "template.logicnode", "pk": 3369, "fields": {"state_transition": 792, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3370, "fields": {"state_transition": 793, "node_type": "S", "subcondition": 23, "parent": 3372}}, {"model": "template.logicnode", "pk": 3371, "fields": {"state_transition": 793, "node_type": "S", "subcondition": 2, "parent": 3372}}, {"model": "template.logicnode", "pk": 3372, "fields": {"state_transition": 793, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3373, "fields": {"state_transition": 794, "node_type": "S", "subcondition": 23, "parent": 3375}}, {"model": "template.logicnode", "pk": 3374, "fields": {"state_transition": 794, "node_type": "S", "subcondition": 12, "parent": 3375}}, {"model": "template.logicnode", "pk": 3375, "fields": {"state_transition": 794, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3376, "fields": {"state_transition": 795, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3377, "fields": {"state_transition": 796, "node_type": "N", "subcondition": null, "parent": 3383}}, {"model": "template.logicnode", "pk": 3378, "fields": {"state_transition": 796, "node_type": "S", "subcondition": 23, "parent": 3377}}, {"model": "template.logicnode", "pk": 3379, "fields": {"state_transition": 796, "node_type": "S", "subcondition": 11, "parent": 3383}}, {"model": "template.logicnode", "pk": 3380, "fields": {"state_transition": 796, "node_type": "S", "subcondition": 7, "parent": 3383}}, {"model": "template.logicnode", "pk": 3381, "fields": {"state_transition": 796, "node_type": "S", "subcondition": 2, "parent": 3383}}, {"model": "template.logicnode", "pk": 3382, "fields": {"state_transition": 796, "node_type": "S", "subcondition": 12, "parent": 3383}}, {"model": "template.logicnode", "pk": 3383, "fields": {"state_transition": 796, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3384, "fields": {"state_transition": 797, "node_type": "N", "subcondition": null, "parent": 3389}}, {"model": "template.logicnode", "pk": 3385, "fields": {"state_transition": 797, "node_type": "S", "subcondition": 23, "parent": 3384}}, {"model": "template.logicnode", "pk": 3386, "fields": {"state_transition": 797, "node_type": "S", "subcondition": 11, "parent": 3389}}, {"model": "template.logicnode", "pk": 3387, "fields": {"state_transition": 797, "node_type": "S", "subcondition": 7, "parent": 3389}}, {"model": "template.logicnode", "pk": 3388, "fields": {"state_transition": 797, "node_type": "S", "subcondition": 2, "parent": 3389}}, {"model": "template.logicnode", "pk": 3389, "fields": {"state_transition": 797, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3390, "fields": {"state_transition": 798, "node_type": "N", "subcondition": null, "parent": 3395}}, {"model": "template.logicnode", "pk": 3391, "fields": {"state_transition": 798, "node_type": "S", "subcondition": 23, "parent": 3390}}, {"model": "template.logicnode", "pk": 3392, "fields": {"state_transition": 798, "node_type": "S", "subcondition": 11, "parent": 3395}}, {"model": "template.logicnode", "pk": 3393, "fields": {"state_transition": 798, "node_type": "S", "subcondition": 7, "parent": 3395}}, {"model": "template.logicnode", "pk": 3394, "fields": {"state_transition": 798, "node_type": "S", "subcondition": 12, "parent": 3395}}, {"model": "template.logicnode", "pk": 3395, "fields": {"state_transition": 798, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3396, "fields": {"state_transition": 799, "node_type": "N", "subcondition": null, "parent": 3400}}, {"model": "template.logicnode", "pk": 3397, "fields": {"state_transition": 799, "node_type": "S", "subcondition": 23, "parent": 3396}}, {"model": "template.logicnode", "pk": 3398, "fields": {"state_transition": 799, "node_type": "S", "subcondition": 11, "parent": 3400}}, {"model": "template.logicnode", "pk": 3399, "fields": {"state_transition": 799, "node_type": "S", "subcondition": 7, "parent": 3400}}, {"model": "template.logicnode", "pk": 3400, "fields": {"state_transition": 799, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3401, "fields": {"state_transition": 800, "node_type": "N", "subcondition": null, "parent": 3406}}, {"model": "template.logicnode", "pk": 3402, "fields": {"state_transition": 800, "node_type": "S", "subcondition": 23, "parent": 3401}}, {"model": "template.logicnode", "pk": 3403, "fields": {"state_transition": 800, "node_type": "S", "subcondition": 11, "parent": 3406}}, {"model": "template.logicnode", "pk": 3404, "fields": {"state_transition": 800, "node_type": "S", "subcondition": 2, "parent": 3406}}, {"model": "template.logicnode", "pk": 3405, "fields": {"state_transition": 800, "node_type": "S", "subcondition": 12, "parent": 3406}}, {"model": "template.logicnode", "pk": 3406, "fields": {"state_transition": 800, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3407, "fields": {"state_transition": 801, "node_type": "N", "subcondition": null, "parent": 3411}}, {"model": "template.logicnode", "pk": 3408, "fields": {"state_transition": 801, "node_type": "S", "subcondition": 23, "parent": 3407}}, {"model": "template.logicnode", "pk": 3409, "fields": {"state_transition": 801, "node_type": "S", "subcondition": 11, "parent": 3411}}, {"model": "template.logicnode", "pk": 3410, "fields": {"state_transition": 801, "node_type": "S", "subcondition": 2, "parent": 3411}}, {"model": "template.logicnode", "pk": 3411, "fields": {"state_transition": 801, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3412, "fields": {"state_transition": 802, "node_type": "N", "subcondition": null, "parent": 3416}}, {"model": "template.logicnode", "pk": 3413, "fields": {"state_transition": 802, "node_type": "S", "subcondition": 23, "parent": 3412}}, {"model": "template.logicnode", "pk": 3414, "fields": {"state_transition": 802, "node_type": "S", "subcondition": 11, "parent": 3416}}, {"model": "template.logicnode", "pk": 3415, "fields": {"state_transition": 802, "node_type": "S", "subcondition": 12, "parent": 3416}}, {"model": "template.logicnode", "pk": 3416, "fields": {"state_transition": 802, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3417, "fields": {"state_transition": 803, "node_type": "N", "subcondition": null, "parent": 3420}}, {"model": "template.logicnode", "pk": 3418, "fields": {"state_transition": 803, "node_type": "S", "subcondition": 23, "parent": 3417}}, {"model": "template.logicnode", "pk": 3419, "fields": {"state_transition": 803, "node_type": "S", "subcondition": 11, "parent": 3420}}, {"model": "template.logicnode", "pk": 3420, "fields": {"state_transition": 803, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3421, "fields": {"state_transition": 804, "node_type": "N", "subcondition": null, "parent": 3426}}, {"model": "template.logicnode", "pk": 3422, "fields": {"state_transition": 804, "node_type": "S", "subcondition": 23, "parent": 3421}}, {"model": "template.logicnode", "pk": 3423, "fields": {"state_transition": 804, "node_type": "S", "subcondition": 7, "parent": 3426}}, {"model": "template.logicnode", "pk": 3424, "fields": {"state_transition": 804, "node_type": "S", "subcondition": 2, "parent": 3426}}, {"model": "template.logicnode", "pk": 3425, "fields": {"state_transition": 804, "node_type": "S", "subcondition": 12, "parent": 3426}}, {"model": "template.logicnode", "pk": 3426, "fields": {"state_transition": 804, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3427, "fields": {"state_transition": 805, "node_type": "N", "subcondition": null, "parent": 3431}}, {"model": "template.logicnode", "pk": 3428, "fields": {"state_transition": 805, "node_type": "S", "subcondition": 23, "parent": 3427}}, {"model": "template.logicnode", "pk": 3429, "fields": {"state_transition": 805, "node_type": "S", "subcondition": 7, "parent": 3431}}, {"model": "template.logicnode", "pk": 3430, "fields": {"state_transition": 805, "node_type": "S", "subcondition": 2, "parent": 3431}}, {"model": "template.logicnode", "pk": 3431, "fields": {"state_transition": 805, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3432, "fields": {"state_transition": 806, "node_type": "N", "subcondition": null, "parent": 3436}}, {"model": "template.logicnode", "pk": 3433, "fields": {"state_transition": 806, "node_type": "S", "subcondition": 23, "parent": 3432}}, {"model": "template.logicnode", "pk": 3434, "fields": {"state_transition": 806, "node_type": "S", "subcondition": 7, "parent": 3436}}, {"model": "template.logicnode", "pk": 3435, "fields": {"state_transition": 806, "node_type": "S", "subcondition": 12, "parent": 3436}}, {"model": "template.logicnode", "pk": 3436, "fields": {"state_transition": 806, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3437, "fields": {"state_transition": 807, "node_type": "N", "subcondition": null, "parent": 3440}}, {"model": "template.logicnode", "pk": 3438, "fields": {"state_transition": 807, "node_type": "S", "subcondition": 23, "parent": 3437}}, {"model": "template.logicnode", "pk": 3439, "fields": {"state_transition": 807, "node_type": "S", "subcondition": 7, "parent": 3440}}, {"model": "template.logicnode", "pk": 3440, "fields": {"state_transition": 807, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3441, "fields": {"state_transition": 808, "node_type": "N", "subcondition": null, "parent": 3445}}, {"model": "template.logicnode", "pk": 3442, "fields": {"state_transition": 808, "node_type": "S", "subcondition": 23, "parent": 3441}}, {"model": "template.logicnode", "pk": 3443, "fields": {"state_transition": 808, "node_type": "S", "subcondition": 2, "parent": 3445}}, {"model": "template.logicnode", "pk": 3444, "fields": {"state_transition": 808, "node_type": "S", "subcondition": 12, "parent": 3445}}, {"model": "template.logicnode", "pk": 3445, "fields": {"state_transition": 808, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3446, "fields": {"state_transition": 809, "node_type": "N", "subcondition": null, "parent": 3449}}, {"model": "template.logicnode", "pk": 3447, "fields": {"state_transition": 809, "node_type": "S", "subcondition": 23, "parent": 3446}}, {"model": "template.logicnode", "pk": 3448, "fields": {"state_transition": 809, "node_type": "S", "subcondition": 2, "parent": 3449}}, {"model": "template.logicnode", "pk": 3449, "fields": {"state_transition": 809, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3450, "fields": {"state_transition": 810, "node_type": "N", "subcondition": null, "parent": 3453}}, {"model": "template.logicnode", "pk": 3451, "fields": {"state_transition": 810, "node_type": "S", "subcondition": 23, "parent": 3450}}, {"model": "template.logicnode", "pk": 3452, "fields": {"state_transition": 810, "node_type": "S", "subcondition": 12, "parent": 3453}}, {"model": "template.logicnode", "pk": 3453, "fields": {"state_transition": 810, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3454, "fields": {"state_transition": 811, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3455, "fields": {"state_transition": 811, "node_type": "S", "subcondition": 23, "parent": 3454}}, {"model": "template.logicnode", "pk": 3456, "fields": {"state_transition": 812, "node_type": "S", "subcondition": 23, "parent": 3460}}, {"model": "template.logicnode", "pk": 3457, "fields": {"state_transition": 812, "node_type": "S", "subcondition": 7, "parent": 3460}}, {"model": "template.logicnode", "pk": 3458, "fields": {"state_transition": 812, "node_type": "S", "subcondition": 2, "parent": 3460}}, {"model": "template.logicnode", "pk": 3459, "fields": {"state_transition": 812, "node_type": "S", "subcondition": 12, "parent": 3460}}, {"model": "template.logicnode", "pk": 3460, "fields": {"state_transition": 812, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3461, "fields": {"state_transition": 813, "node_type": "S", "subcondition": 23, "parent": 3464}}, {"model": "template.logicnode", "pk": 3462, "fields": {"state_transition": 813, "node_type": "S", "subcondition": 7, "parent": 3464}}, {"model": "template.logicnode", "pk": 3463, "fields": {"state_transition": 813, "node_type": "S", "subcondition": 2, "parent": 3464}}, {"model": "template.logicnode", "pk": 3464, "fields": {"state_transition": 813, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3465, "fields": {"state_transition": 814, "node_type": "S", "subcondition": 23, "parent": 3468}}, {"model": "template.logicnode", "pk": 3466, "fields": {"state_transition": 814, "node_type": "S", "subcondition": 7, "parent": 3468}}, {"model": "template.logicnode", "pk": 3467, "fields": {"state_transition": 814, "node_type": "S", "subcondition": 12, "parent": 3468}}, {"model": "template.logicnode", "pk": 3468, "fields": {"state_transition": 814, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3469, "fields": {"state_transition": 815, "node_type": "S", "subcondition": 23, "parent": 3471}}, {"model": "template.logicnode", "pk": 3470, "fields": {"state_transition": 815, "node_type": "S", "subcondition": 7, "parent": 3471}}, {"model": "template.logicnode", "pk": 3471, "fields": {"state_transition": 815, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3472, "fields": {"state_transition": 816, "node_type": "S", "subcondition": 23, "parent": 3475}}, {"model": "template.logicnode", "pk": 3473, "fields": {"state_transition": 816, "node_type": "S", "subcondition": 2, "parent": 3475}}, {"model": "template.logicnode", "pk": 3474, "fields": {"state_transition": 816, "node_type": "S", "subcondition": 12, "parent": 3475}}, {"model": "template.logicnode", "pk": 3475, "fields": {"state_transition": 816, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3476, "fields": {"state_transition": 817, "node_type": "S", "subcondition": 23, "parent": 3478}}, {"model": "template.logicnode", "pk": 3477, "fields": {"state_transition": 817, "node_type": "S", "subcondition": 2, "parent": 3478}}, {"model": "template.logicnode", "pk": 3478, "fields": {"state_transition": 817, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3479, "fields": {"state_transition": 818, "node_type": "S", "subcondition": 23, "parent": 3481}}, {"model": "template.logicnode", "pk": 3480, "fields": {"state_transition": 818, "node_type": "S", "subcondition": 12, "parent": 3481}}, {"model": "template.logicnode", "pk": 3481, "fields": {"state_transition": 818, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3482, "fields": {"state_transition": 819, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3483, "fields": {"state_transition": 820, "node_type": "N", "subcondition": null, "parent": 3489}}, {"model": "template.logicnode", "pk": 3484, "fields": {"state_transition": 820, "node_type": "S", "subcondition": 23, "parent": 3483}}, {"model": "template.logicnode", "pk": 3485, "fields": {"state_transition": 820, "node_type": "S", "subcondition": 11, "parent": 3489}}, {"model": "template.logicnode", "pk": 3486, "fields": {"state_transition": 820, "node_type": "S", "subcondition": 7, "parent": 3489}}, {"model": "template.logicnode", "pk": 3487, "fields": {"state_transition": 820, "node_type": "S", "subcondition": 2, "parent": 3489}}, {"model": "template.logicnode", "pk": 3488, "fields": {"state_transition": 820, "node_type": "S", "subcondition": 12, "parent": 3489}}, {"model": "template.logicnode", "pk": 3489, "fields": {"state_transition": 820, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3490, "fields": {"state_transition": 821, "node_type": "N", "subcondition": null, "parent": 3495}}, {"model": "template.logicnode", "pk": 3491, "fields": {"state_transition": 821, "node_type": "S", "subcondition": 23, "parent": 3490}}, {"model": "template.logicnode", "pk": 3492, "fields": {"state_transition": 821, "node_type": "S", "subcondition": 11, "parent": 3495}}, {"model": "template.logicnode", "pk": 3493, "fields": {"state_transition": 821, "node_type": "S", "subcondition": 7, "parent": 3495}}, {"model": "template.logicnode", "pk": 3494, "fields": {"state_transition": 821, "node_type": "S", "subcondition": 2, "parent": 3495}}, {"model": "template.logicnode", "pk": 3495, "fields": {"state_transition": 821, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3496, "fields": {"state_transition": 822, "node_type": "N", "subcondition": null, "parent": 3501}}, {"model": "template.logicnode", "pk": 3497, "fields": {"state_transition": 822, "node_type": "S", "subcondition": 23, "parent": 3496}}, {"model": "template.logicnode", "pk": 3498, "fields": {"state_transition": 822, "node_type": "S", "subcondition": 11, "parent": 3501}}, {"model": "template.logicnode", "pk": 3499, "fields": {"state_transition": 822, "node_type": "S", "subcondition": 7, "parent": 3501}}, {"model": "template.logicnode", "pk": 3500, "fields": {"state_transition": 822, "node_type": "S", "subcondition": 12, "parent": 3501}}, {"model": "template.logicnode", "pk": 3501, "fields": {"state_transition": 822, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3502, "fields": {"state_transition": 823, "node_type": "N", "subcondition": null, "parent": 3506}}, {"model": "template.logicnode", "pk": 3503, "fields": {"state_transition": 823, "node_type": "S", "subcondition": 23, "parent": 3502}}, {"model": "template.logicnode", "pk": 3504, "fields": {"state_transition": 823, "node_type": "S", "subcondition": 11, "parent": 3506}}, {"model": "template.logicnode", "pk": 3505, "fields": {"state_transition": 823, "node_type": "S", "subcondition": 7, "parent": 3506}}, {"model": "template.logicnode", "pk": 3506, "fields": {"state_transition": 823, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3507, "fields": {"state_transition": 824, "node_type": "N", "subcondition": null, "parent": 3512}}, {"model": "template.logicnode", "pk": 3508, "fields": {"state_transition": 824, "node_type": "S", "subcondition": 23, "parent": 3507}}, {"model": "template.logicnode", "pk": 3509, "fields": {"state_transition": 824, "node_type": "S", "subcondition": 11, "parent": 3512}}, {"model": "template.logicnode", "pk": 3510, "fields": {"state_transition": 824, "node_type": "S", "subcondition": 2, "parent": 3512}}, {"model": "template.logicnode", "pk": 3511, "fields": {"state_transition": 824, "node_type": "S", "subcondition": 12, "parent": 3512}}, {"model": "template.logicnode", "pk": 3512, "fields": {"state_transition": 824, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3513, "fields": {"state_transition": 825, "node_type": "N", "subcondition": null, "parent": 3517}}, {"model": "template.logicnode", "pk": 3514, "fields": {"state_transition": 825, "node_type": "S", "subcondition": 23, "parent": 3513}}, {"model": "template.logicnode", "pk": 3515, "fields": {"state_transition": 825, "node_type": "S", "subcondition": 11, "parent": 3517}}, {"model": "template.logicnode", "pk": 3516, "fields": {"state_transition": 825, "node_type": "S", "subcondition": 2, "parent": 3517}}, {"model": "template.logicnode", "pk": 3517, "fields": {"state_transition": 825, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3518, "fields": {"state_transition": 826, "node_type": "N", "subcondition": null, "parent": 3522}}, {"model": "template.logicnode", "pk": 3519, "fields": {"state_transition": 826, "node_type": "S", "subcondition": 23, "parent": 3518}}, {"model": "template.logicnode", "pk": 3520, "fields": {"state_transition": 826, "node_type": "S", "subcondition": 11, "parent": 3522}}, {"model": "template.logicnode", "pk": 3521, "fields": {"state_transition": 826, "node_type": "S", "subcondition": 12, "parent": 3522}}, {"model": "template.logicnode", "pk": 3522, "fields": {"state_transition": 826, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3523, "fields": {"state_transition": 827, "node_type": "N", "subcondition": null, "parent": 3526}}, {"model": "template.logicnode", "pk": 3524, "fields": {"state_transition": 827, "node_type": "S", "subcondition": 23, "parent": 3523}}, {"model": "template.logicnode", "pk": 3525, "fields": {"state_transition": 827, "node_type": "S", "subcondition": 11, "parent": 3526}}, {"model": "template.logicnode", "pk": 3526, "fields": {"state_transition": 827, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3527, "fields": {"state_transition": 828, "node_type": "N", "subcondition": null, "parent": 3532}}, {"model": "template.logicnode", "pk": 3528, "fields": {"state_transition": 828, "node_type": "S", "subcondition": 23, "parent": 3527}}, {"model": "template.logicnode", "pk": 3529, "fields": {"state_transition": 828, "node_type": "S", "subcondition": 7, "parent": 3532}}, {"model": "template.logicnode", "pk": 3530, "fields": {"state_transition": 828, "node_type": "S", "subcondition": 2, "parent": 3532}}, {"model": "template.logicnode", "pk": 3531, "fields": {"state_transition": 828, "node_type": "S", "subcondition": 12, "parent": 3532}}, {"model": "template.logicnode", "pk": 3532, "fields": {"state_transition": 828, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3533, "fields": {"state_transition": 829, "node_type": "N", "subcondition": null, "parent": 3537}}, {"model": "template.logicnode", "pk": 3534, "fields": {"state_transition": 829, "node_type": "S", "subcondition": 23, "parent": 3533}}, {"model": "template.logicnode", "pk": 3535, "fields": {"state_transition": 829, "node_type": "S", "subcondition": 7, "parent": 3537}}, {"model": "template.logicnode", "pk": 3536, "fields": {"state_transition": 829, "node_type": "S", "subcondition": 2, "parent": 3537}}, {"model": "template.logicnode", "pk": 3537, "fields": {"state_transition": 829, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3538, "fields": {"state_transition": 830, "node_type": "N", "subcondition": null, "parent": 3542}}, {"model": "template.logicnode", "pk": 3539, "fields": {"state_transition": 830, "node_type": "S", "subcondition": 23, "parent": 3538}}, {"model": "template.logicnode", "pk": 3540, "fields": {"state_transition": 830, "node_type": "S", "subcondition": 7, "parent": 3542}}, {"model": "template.logicnode", "pk": 3541, "fields": {"state_transition": 830, "node_type": "S", "subcondition": 12, "parent": 3542}}, {"model": "template.logicnode", "pk": 3542, "fields": {"state_transition": 830, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3543, "fields": {"state_transition": 831, "node_type": "N", "subcondition": null, "parent": 3546}}, {"model": "template.logicnode", "pk": 3544, "fields": {"state_transition": 831, "node_type": "S", "subcondition": 23, "parent": 3543}}, {"model": "template.logicnode", "pk": 3545, "fields": {"state_transition": 831, "node_type": "S", "subcondition": 7, "parent": 3546}}, {"model": "template.logicnode", "pk": 3546, "fields": {"state_transition": 831, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3547, "fields": {"state_transition": 832, "node_type": "N", "subcondition": null, "parent": 3551}}, {"model": "template.logicnode", "pk": 3548, "fields": {"state_transition": 832, "node_type": "S", "subcondition": 23, "parent": 3547}}, {"model": "template.logicnode", "pk": 3549, "fields": {"state_transition": 832, "node_type": "S", "subcondition": 2, "parent": 3551}}, {"model": "template.logicnode", "pk": 3550, "fields": {"state_transition": 832, "node_type": "S", "subcondition": 12, "parent": 3551}}, {"model": "template.logicnode", "pk": 3551, "fields": {"state_transition": 832, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3552, "fields": {"state_transition": 833, "node_type": "N", "subcondition": null, "parent": 3555}}, {"model": "template.logicnode", "pk": 3553, "fields": {"state_transition": 833, "node_type": "S", "subcondition": 23, "parent": 3552}}, {"model": "template.logicnode", "pk": 3554, "fields": {"state_transition": 833, "node_type": "S", "subcondition": 2, "parent": 3555}}, {"model": "template.logicnode", "pk": 3555, "fields": {"state_transition": 833, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3556, "fields": {"state_transition": 834, "node_type": "N", "subcondition": null, "parent": 3559}}, {"model": "template.logicnode", "pk": 3557, "fields": {"state_transition": 834, "node_type": "S", "subcondition": 23, "parent": 3556}}, {"model": "template.logicnode", "pk": 3558, "fields": {"state_transition": 834, "node_type": "S", "subcondition": 12, "parent": 3559}}, {"model": "template.logicnode", "pk": 3559, "fields": {"state_transition": 834, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3560, "fields": {"state_transition": 835, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3561, "fields": {"state_transition": 835, "node_type": "S", "subcondition": 23, "parent": 3560}}, {"model": "template.logicnode", "pk": 3562, "fields": {"state_transition": 836, "node_type": "S", "subcondition": 23, "parent": 3566}}, {"model": "template.logicnode", "pk": 3563, "fields": {"state_transition": 836, "node_type": "S", "subcondition": 7, "parent": 3566}}, {"model": "template.logicnode", "pk": 3564, "fields": {"state_transition": 836, "node_type": "S", "subcondition": 2, "parent": 3566}}, {"model": "template.logicnode", "pk": 3565, "fields": {"state_transition": 836, "node_type": "S", "subcondition": 12, "parent": 3566}}, {"model": "template.logicnode", "pk": 3566, "fields": {"state_transition": 836, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3567, "fields": {"state_transition": 837, "node_type": "S", "subcondition": 23, "parent": 3570}}, {"model": "template.logicnode", "pk": 3568, "fields": {"state_transition": 837, "node_type": "S", "subcondition": 7, "parent": 3570}}, {"model": "template.logicnode", "pk": 3569, "fields": {"state_transition": 837, "node_type": "S", "subcondition": 2, "parent": 3570}}, {"model": "template.logicnode", "pk": 3570, "fields": {"state_transition": 837, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3571, "fields": {"state_transition": 838, "node_type": "S", "subcondition": 23, "parent": 3574}}, {"model": "template.logicnode", "pk": 3572, "fields": {"state_transition": 838, "node_type": "S", "subcondition": 7, "parent": 3574}}, {"model": "template.logicnode", "pk": 3573, "fields": {"state_transition": 838, "node_type": "S", "subcondition": 12, "parent": 3574}}, {"model": "template.logicnode", "pk": 3574, "fields": {"state_transition": 838, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3575, "fields": {"state_transition": 839, "node_type": "S", "subcondition": 23, "parent": 3577}}, {"model": "template.logicnode", "pk": 3576, "fields": {"state_transition": 839, "node_type": "S", "subcondition": 7, "parent": 3577}}, {"model": "template.logicnode", "pk": 3577, "fields": {"state_transition": 839, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3578, "fields": {"state_transition": 840, "node_type": "S", "subcondition": 23, "parent": 3581}}, {"model": "template.logicnode", "pk": 3579, "fields": {"state_transition": 840, "node_type": "S", "subcondition": 2, "parent": 3581}}, {"model": "template.logicnode", "pk": 3580, "fields": {"state_transition": 840, "node_type": "S", "subcondition": 12, "parent": 3581}}, {"model": "template.logicnode", "pk": 3581, "fields": {"state_transition": 840, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3582, "fields": {"state_transition": 841, "node_type": "S", "subcondition": 23, "parent": 3584}}, {"model": "template.logicnode", "pk": 3583, "fields": {"state_transition": 841, "node_type": "S", "subcondition": 2, "parent": 3584}}, {"model": "template.logicnode", "pk": 3584, "fields": {"state_transition": 841, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3585, "fields": {"state_transition": 842, "node_type": "S", "subcondition": 23, "parent": 3587}}, {"model": "template.logicnode", "pk": 3586, "fields": {"state_transition": 842, "node_type": "S", "subcondition": 12, "parent": 3587}}, {"model": "template.logicnode", "pk": 3587, "fields": {"state_transition": 842, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3588, "fields": {"state_transition": 843, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3589, "fields": {"state_transition": 844, "node_type": "N", "subcondition": null, "parent": 3595}}, {"model": "template.logicnode", "pk": 3590, "fields": {"state_transition": 844, "node_type": "S", "subcondition": 23, "parent": 3589}}, {"model": "template.logicnode", "pk": 3591, "fields": {"state_transition": 844, "node_type": "S", "subcondition": 11, "parent": 3595}}, {"model": "template.logicnode", "pk": 3592, "fields": {"state_transition": 844, "node_type": "S", "subcondition": 7, "parent": 3595}}, {"model": "template.logicnode", "pk": 3593, "fields": {"state_transition": 844, "node_type": "S", "subcondition": 2, "parent": 3595}}, {"model": "template.logicnode", "pk": 3594, "fields": {"state_transition": 844, "node_type": "S", "subcondition": 12, "parent": 3595}}, {"model": "template.logicnode", "pk": 3595, "fields": {"state_transition": 844, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3596, "fields": {"state_transition": 845, "node_type": "N", "subcondition": null, "parent": 3601}}, {"model": "template.logicnode", "pk": 3597, "fields": {"state_transition": 845, "node_type": "S", "subcondition": 23, "parent": 3596}}, {"model": "template.logicnode", "pk": 3598, "fields": {"state_transition": 845, "node_type": "S", "subcondition": 11, "parent": 3601}}, {"model": "template.logicnode", "pk": 3599, "fields": {"state_transition": 845, "node_type": "S", "subcondition": 7, "parent": 3601}}, {"model": "template.logicnode", "pk": 3600, "fields": {"state_transition": 845, "node_type": "S", "subcondition": 2, "parent": 3601}}, {"model": "template.logicnode", "pk": 3601, "fields": {"state_transition": 845, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3602, "fields": {"state_transition": 846, "node_type": "N", "subcondition": null, "parent": 3607}}, {"model": "template.logicnode", "pk": 3603, "fields": {"state_transition": 846, "node_type": "S", "subcondition": 23, "parent": 3602}}, {"model": "template.logicnode", "pk": 3604, "fields": {"state_transition": 846, "node_type": "S", "subcondition": 11, "parent": 3607}}, {"model": "template.logicnode", "pk": 3605, "fields": {"state_transition": 846, "node_type": "S", "subcondition": 7, "parent": 3607}}, {"model": "template.logicnode", "pk": 3606, "fields": {"state_transition": 846, "node_type": "S", "subcondition": 12, "parent": 3607}}, {"model": "template.logicnode", "pk": 3607, "fields": {"state_transition": 846, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3608, "fields": {"state_transition": 847, "node_type": "N", "subcondition": null, "parent": 3612}}, {"model": "template.logicnode", "pk": 3609, "fields": {"state_transition": 847, "node_type": "S", "subcondition": 23, "parent": 3608}}, {"model": "template.logicnode", "pk": 3610, "fields": {"state_transition": 847, "node_type": "S", "subcondition": 11, "parent": 3612}}, {"model": "template.logicnode", "pk": 3611, "fields": {"state_transition": 847, "node_type": "S", "subcondition": 7, "parent": 3612}}, {"model": "template.logicnode", "pk": 3612, "fields": {"state_transition": 847, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3613, "fields": {"state_transition": 848, "node_type": "N", "subcondition": null, "parent": 3618}}, {"model": "template.logicnode", "pk": 3614, "fields": {"state_transition": 848, "node_type": "S", "subcondition": 23, "parent": 3613}}, {"model": "template.logicnode", "pk": 3615, "fields": {"state_transition": 848, "node_type": "S", "subcondition": 11, "parent": 3618}}, {"model": "template.logicnode", "pk": 3616, "fields": {"state_transition": 848, "node_type": "S", "subcondition": 2, "parent": 3618}}, {"model": "template.logicnode", "pk": 3617, "fields": {"state_transition": 848, "node_type": "S", "subcondition": 12, "parent": 3618}}, {"model": "template.logicnode", "pk": 3618, "fields": {"state_transition": 848, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3619, "fields": {"state_transition": 849, "node_type": "N", "subcondition": null, "parent": 3623}}, {"model": "template.logicnode", "pk": 3620, "fields": {"state_transition": 849, "node_type": "S", "subcondition": 23, "parent": 3619}}, {"model": "template.logicnode", "pk": 3621, "fields": {"state_transition": 849, "node_type": "S", "subcondition": 11, "parent": 3623}}, {"model": "template.logicnode", "pk": 3622, "fields": {"state_transition": 849, "node_type": "S", "subcondition": 2, "parent": 3623}}, {"model": "template.logicnode", "pk": 3623, "fields": {"state_transition": 849, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3624, "fields": {"state_transition": 850, "node_type": "N", "subcondition": null, "parent": 3628}}, {"model": "template.logicnode", "pk": 3625, "fields": {"state_transition": 850, "node_type": "S", "subcondition": 23, "parent": 3624}}, {"model": "template.logicnode", "pk": 3626, "fields": {"state_transition": 850, "node_type": "S", "subcondition": 11, "parent": 3628}}, {"model": "template.logicnode", "pk": 3627, "fields": {"state_transition": 850, "node_type": "S", "subcondition": 12, "parent": 3628}}, {"model": "template.logicnode", "pk": 3628, "fields": {"state_transition": 850, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3629, "fields": {"state_transition": 851, "node_type": "N", "subcondition": null, "parent": 3632}}, {"model": "template.logicnode", "pk": 3630, "fields": {"state_transition": 851, "node_type": "S", "subcondition": 23, "parent": 3629}}, {"model": "template.logicnode", "pk": 3631, "fields": {"state_transition": 851, "node_type": "S", "subcondition": 11, "parent": 3632}}, {"model": "template.logicnode", "pk": 3632, "fields": {"state_transition": 851, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3633, "fields": {"state_transition": 852, "node_type": "N", "subcondition": null, "parent": 3638}}, {"model": "template.logicnode", "pk": 3634, "fields": {"state_transition": 852, "node_type": "S", "subcondition": 23, "parent": 3633}}, {"model": "template.logicnode", "pk": 3635, "fields": {"state_transition": 852, "node_type": "S", "subcondition": 7, "parent": 3638}}, {"model": "template.logicnode", "pk": 3636, "fields": {"state_transition": 852, "node_type": "S", "subcondition": 2, "parent": 3638}}, {"model": "template.logicnode", "pk": 3637, "fields": {"state_transition": 852, "node_type": "S", "subcondition": 12, "parent": 3638}}, {"model": "template.logicnode", "pk": 3638, "fields": {"state_transition": 852, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3639, "fields": {"state_transition": 853, "node_type": "N", "subcondition": null, "parent": 3643}}, {"model": "template.logicnode", "pk": 3640, "fields": {"state_transition": 853, "node_type": "S", "subcondition": 23, "parent": 3639}}, {"model": "template.logicnode", "pk": 3641, "fields": {"state_transition": 853, "node_type": "S", "subcondition": 7, "parent": 3643}}, {"model": "template.logicnode", "pk": 3642, "fields": {"state_transition": 853, "node_type": "S", "subcondition": 2, "parent": 3643}}, {"model": "template.logicnode", "pk": 3643, "fields": {"state_transition": 853, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3644, "fields": {"state_transition": 854, "node_type": "N", "subcondition": null, "parent": 3648}}, {"model": "template.logicnode", "pk": 3645, "fields": {"state_transition": 854, "node_type": "S", "subcondition": 23, "parent": 3644}}, {"model": "template.logicnode", "pk": 3646, "fields": {"state_transition": 854, "node_type": "S", "subcondition": 7, "parent": 3648}}, {"model": "template.logicnode", "pk": 3647, "fields": {"state_transition": 854, "node_type": "S", "subcondition": 12, "parent": 3648}}, {"model": "template.logicnode", "pk": 3648, "fields": {"state_transition": 854, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3649, "fields": {"state_transition": 855, "node_type": "N", "subcondition": null, "parent": 3652}}, {"model": "template.logicnode", "pk": 3650, "fields": {"state_transition": 855, "node_type": "S", "subcondition": 23, "parent": 3649}}, {"model": "template.logicnode", "pk": 3651, "fields": {"state_transition": 855, "node_type": "S", "subcondition": 7, "parent": 3652}}, {"model": "template.logicnode", "pk": 3652, "fields": {"state_transition": 855, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3653, "fields": {"state_transition": 856, "node_type": "N", "subcondition": null, "parent": 3657}}, {"model": "template.logicnode", "pk": 3654, "fields": {"state_transition": 856, "node_type": "S", "subcondition": 23, "parent": 3653}}, {"model": "template.logicnode", "pk": 3655, "fields": {"state_transition": 856, "node_type": "S", "subcondition": 2, "parent": 3657}}, {"model": "template.logicnode", "pk": 3656, "fields": {"state_transition": 856, "node_type": "S", "subcondition": 12, "parent": 3657}}, {"model": "template.logicnode", "pk": 3657, "fields": {"state_transition": 856, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3658, "fields": {"state_transition": 857, "node_type": "N", "subcondition": null, "parent": 3661}}, {"model": "template.logicnode", "pk": 3659, "fields": {"state_transition": 857, "node_type": "S", "subcondition": 23, "parent": 3658}}, {"model": "template.logicnode", "pk": 3660, "fields": {"state_transition": 857, "node_type": "S", "subcondition": 2, "parent": 3661}}, {"model": "template.logicnode", "pk": 3661, "fields": {"state_transition": 857, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3662, "fields": {"state_transition": 858, "node_type": "N", "subcondition": null, "parent": 3665}}, {"model": "template.logicnode", "pk": 3663, "fields": {"state_transition": 858, "node_type": "S", "subcondition": 23, "parent": 3662}}, {"model": "template.logicnode", "pk": 3664, "fields": {"state_transition": 858, "node_type": "S", "subcondition": 12, "parent": 3665}}, {"model": "template.logicnode", "pk": 3665, "fields": {"state_transition": 858, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3666, "fields": {"state_transition": 859, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3667, "fields": {"state_transition": 859, "node_type": "S", "subcondition": 23, "parent": 3666}}, {"model": "template.logicnode", "pk": 3668, "fields": {"state_transition": 860, "node_type": "S", "subcondition": 23, "parent": 3672}}, {"model": "template.logicnode", "pk": 3669, "fields": {"state_transition": 860, "node_type": "S", "subcondition": 7, "parent": 3672}}, {"model": "template.logicnode", "pk": 3670, "fields": {"state_transition": 860, "node_type": "S", "subcondition": 2, "parent": 3672}}, {"model": "template.logicnode", "pk": 3671, "fields": {"state_transition": 860, "node_type": "S", "subcondition": 12, "parent": 3672}}, {"model": "template.logicnode", "pk": 3672, "fields": {"state_transition": 860, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3673, "fields": {"state_transition": 861, "node_type": "S", "subcondition": 23, "parent": 3676}}, {"model": "template.logicnode", "pk": 3674, "fields": {"state_transition": 861, "node_type": "S", "subcondition": 7, "parent": 3676}}, {"model": "template.logicnode", "pk": 3675, "fields": {"state_transition": 861, "node_type": "S", "subcondition": 2, "parent": 3676}}, {"model": "template.logicnode", "pk": 3676, "fields": {"state_transition": 861, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3677, "fields": {"state_transition": 862, "node_type": "S", "subcondition": 23, "parent": 3680}}, {"model": "template.logicnode", "pk": 3678, "fields": {"state_transition": 862, "node_type": "S", "subcondition": 7, "parent": 3680}}, {"model": "template.logicnode", "pk": 3679, "fields": {"state_transition": 862, "node_type": "S", "subcondition": 12, "parent": 3680}}, {"model": "template.logicnode", "pk": 3680, "fields": {"state_transition": 862, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3681, "fields": {"state_transition": 863, "node_type": "S", "subcondition": 23, "parent": 3683}}, {"model": "template.logicnode", "pk": 3682, "fields": {"state_transition": 863, "node_type": "S", "subcondition": 7, "parent": 3683}}, {"model": "template.logicnode", "pk": 3683, "fields": {"state_transition": 863, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3684, "fields": {"state_transition": 864, "node_type": "S", "subcondition": 23, "parent": 3687}}, {"model": "template.logicnode", "pk": 3685, "fields": {"state_transition": 864, "node_type": "S", "subcondition": 2, "parent": 3687}}, {"model": "template.logicnode", "pk": 3686, "fields": {"state_transition": 864, "node_type": "S", "subcondition": 12, "parent": 3687}}, {"model": "template.logicnode", "pk": 3687, "fields": {"state_transition": 864, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3688, "fields": {"state_transition": 865, "node_type": "S", "subcondition": 23, "parent": 3690}}, {"model": "template.logicnode", "pk": 3689, "fields": {"state_transition": 865, "node_type": "S", "subcondition": 2, "parent": 3690}}, {"model": "template.logicnode", "pk": 3690, "fields": {"state_transition": 865, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3691, "fields": {"state_transition": 866, "node_type": "S", "subcondition": 23, "parent": 3693}}, {"model": "template.logicnode", "pk": 3692, "fields": {"state_transition": 866, "node_type": "S", "subcondition": 12, "parent": 3693}}, {"model": "template.logicnode", "pk": 3693, "fields": {"state_transition": 866, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3694, "fields": {"state_transition": 867, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3695, "fields": {"state_transition": 868, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3696, "fields": {"state_transition": 869, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3697, "fields": {"state_transition": 870, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3698, "fields": {"state_transition": 870, "node_type": "S", "subcondition": 12, "parent": 3697}}, {"model": "template.logicnode", "pk": 3699, "fields": {"state_transition": 871, "node_type": "N", "subcondition": null, "parent": 3705}}, {"model": "template.logicnode", "pk": 3700, "fields": {"state_transition": 871, "node_type": "S", "subcondition": 23, "parent": 3699}}, {"model": "template.logicnode", "pk": 3701, "fields": {"state_transition": 871, "node_type": "S", "subcondition": 11, "parent": 3705}}, {"model": "template.logicnode", "pk": 3702, "fields": {"state_transition": 871, "node_type": "S", "subcondition": 7, "parent": 3705}}, {"model": "template.logicnode", "pk": 3703, "fields": {"state_transition": 871, "node_type": "S", "subcondition": 2, "parent": 3705}}, {"model": "template.logicnode", "pk": 3704, "fields": {"state_transition": 871, "node_type": "S", "subcondition": 12, "parent": 3705}}, {"model": "template.logicnode", "pk": 3705, "fields": {"state_transition": 871, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3706, "fields": {"state_transition": 872, "node_type": "N", "subcondition": null, "parent": 3711}}, {"model": "template.logicnode", "pk": 3707, "fields": {"state_transition": 872, "node_type": "S", "subcondition": 23, "parent": 3706}}, {"model": "template.logicnode", "pk": 3708, "fields": {"state_transition": 872, "node_type": "S", "subcondition": 11, "parent": 3711}}, {"model": "template.logicnode", "pk": 3709, "fields": {"state_transition": 872, "node_type": "S", "subcondition": 7, "parent": 3711}}, {"model": "template.logicnode", "pk": 3710, "fields": {"state_transition": 872, "node_type": "S", "subcondition": 2, "parent": 3711}}, {"model": "template.logicnode", "pk": 3711, "fields": {"state_transition": 872, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3712, "fields": {"state_transition": 873, "node_type": "N", "subcondition": null, "parent": 3717}}, {"model": "template.logicnode", "pk": 3713, "fields": {"state_transition": 873, "node_type": "S", "subcondition": 23, "parent": 3712}}, {"model": "template.logicnode", "pk": 3714, "fields": {"state_transition": 873, "node_type": "S", "subcondition": 11, "parent": 3717}}, {"model": "template.logicnode", "pk": 3715, "fields": {"state_transition": 873, "node_type": "S", "subcondition": 7, "parent": 3717}}, {"model": "template.logicnode", "pk": 3716, "fields": {"state_transition": 873, "node_type": "S", "subcondition": 12, "parent": 3717}}, {"model": "template.logicnode", "pk": 3717, "fields": {"state_transition": 873, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3718, "fields": {"state_transition": 874, "node_type": "N", "subcondition": null, "parent": 3722}}, {"model": "template.logicnode", "pk": 3719, "fields": {"state_transition": 874, "node_type": "S", "subcondition": 23, "parent": 3718}}, {"model": "template.logicnode", "pk": 3720, "fields": {"state_transition": 874, "node_type": "S", "subcondition": 11, "parent": 3722}}, {"model": "template.logicnode", "pk": 3721, "fields": {"state_transition": 874, "node_type": "S", "subcondition": 7, "parent": 3722}}, {"model": "template.logicnode", "pk": 3722, "fields": {"state_transition": 874, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3723, "fields": {"state_transition": 875, "node_type": "N", "subcondition": null, "parent": 3728}}, {"model": "template.logicnode", "pk": 3724, "fields": {"state_transition": 875, "node_type": "S", "subcondition": 23, "parent": 3723}}, {"model": "template.logicnode", "pk": 3725, "fields": {"state_transition": 875, "node_type": "S", "subcondition": 11, "parent": 3728}}, {"model": "template.logicnode", "pk": 3726, "fields": {"state_transition": 875, "node_type": "S", "subcondition": 2, "parent": 3728}}, {"model": "template.logicnode", "pk": 3727, "fields": {"state_transition": 875, "node_type": "S", "subcondition": 12, "parent": 3728}}, {"model": "template.logicnode", "pk": 3728, "fields": {"state_transition": 875, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3729, "fields": {"state_transition": 876, "node_type": "N", "subcondition": null, "parent": 3733}}, {"model": "template.logicnode", "pk": 3730, "fields": {"state_transition": 876, "node_type": "S", "subcondition": 23, "parent": 3729}}, {"model": "template.logicnode", "pk": 3731, "fields": {"state_transition": 876, "node_type": "S", "subcondition": 11, "parent": 3733}}, {"model": "template.logicnode", "pk": 3732, "fields": {"state_transition": 876, "node_type": "S", "subcondition": 2, "parent": 3733}}, {"model": "template.logicnode", "pk": 3733, "fields": {"state_transition": 876, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3734, "fields": {"state_transition": 877, "node_type": "N", "subcondition": null, "parent": 3738}}, {"model": "template.logicnode", "pk": 3735, "fields": {"state_transition": 877, "node_type": "S", "subcondition": 23, "parent": 3734}}, {"model": "template.logicnode", "pk": 3736, "fields": {"state_transition": 877, "node_type": "S", "subcondition": 11, "parent": 3738}}, {"model": "template.logicnode", "pk": 3737, "fields": {"state_transition": 877, "node_type": "S", "subcondition": 12, "parent": 3738}}, {"model": "template.logicnode", "pk": 3738, "fields": {"state_transition": 877, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3739, "fields": {"state_transition": 878, "node_type": "N", "subcondition": null, "parent": 3742}}, {"model": "template.logicnode", "pk": 3740, "fields": {"state_transition": 878, "node_type": "S", "subcondition": 23, "parent": 3739}}, {"model": "template.logicnode", "pk": 3741, "fields": {"state_transition": 878, "node_type": "S", "subcondition": 11, "parent": 3742}}, {"model": "template.logicnode", "pk": 3742, "fields": {"state_transition": 878, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3743, "fields": {"state_transition": 879, "node_type": "N", "subcondition": null, "parent": 3748}}, {"model": "template.logicnode", "pk": 3744, "fields": {"state_transition": 879, "node_type": "S", "subcondition": 23, "parent": 3743}}, {"model": "template.logicnode", "pk": 3745, "fields": {"state_transition": 879, "node_type": "S", "subcondition": 7, "parent": 3748}}, {"model": "template.logicnode", "pk": 3746, "fields": {"state_transition": 879, "node_type": "S", "subcondition": 2, "parent": 3748}}, {"model": "template.logicnode", "pk": 3747, "fields": {"state_transition": 879, "node_type": "S", "subcondition": 12, "parent": 3748}}, {"model": "template.logicnode", "pk": 3748, "fields": {"state_transition": 879, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3749, "fields": {"state_transition": 880, "node_type": "N", "subcondition": null, "parent": 3753}}, {"model": "template.logicnode", "pk": 3750, "fields": {"state_transition": 880, "node_type": "S", "subcondition": 23, "parent": 3749}}, {"model": "template.logicnode", "pk": 3751, "fields": {"state_transition": 880, "node_type": "S", "subcondition": 7, "parent": 3753}}, {"model": "template.logicnode", "pk": 3752, "fields": {"state_transition": 880, "node_type": "S", "subcondition": 2, "parent": 3753}}, {"model": "template.logicnode", "pk": 3753, "fields": {"state_transition": 880, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3754, "fields": {"state_transition": 881, "node_type": "N", "subcondition": null, "parent": 3758}}, {"model": "template.logicnode", "pk": 3755, "fields": {"state_transition": 881, "node_type": "S", "subcondition": 23, "parent": 3754}}, {"model": "template.logicnode", "pk": 3756, "fields": {"state_transition": 881, "node_type": "S", "subcondition": 7, "parent": 3758}}, {"model": "template.logicnode", "pk": 3757, "fields": {"state_transition": 881, "node_type": "S", "subcondition": 12, "parent": 3758}}, {"model": "template.logicnode", "pk": 3758, "fields": {"state_transition": 881, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3759, "fields": {"state_transition": 882, "node_type": "N", "subcondition": null, "parent": 3762}}, {"model": "template.logicnode", "pk": 3760, "fields": {"state_transition": 882, "node_type": "S", "subcondition": 23, "parent": 3759}}, {"model": "template.logicnode", "pk": 3761, "fields": {"state_transition": 882, "node_type": "S", "subcondition": 7, "parent": 3762}}, {"model": "template.logicnode", "pk": 3762, "fields": {"state_transition": 882, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3763, "fields": {"state_transition": 883, "node_type": "N", "subcondition": null, "parent": 3767}}, {"model": "template.logicnode", "pk": 3764, "fields": {"state_transition": 883, "node_type": "S", "subcondition": 23, "parent": 3763}}, {"model": "template.logicnode", "pk": 3765, "fields": {"state_transition": 883, "node_type": "S", "subcondition": 2, "parent": 3767}}, {"model": "template.logicnode", "pk": 3766, "fields": {"state_transition": 883, "node_type": "S", "subcondition": 12, "parent": 3767}}, {"model": "template.logicnode", "pk": 3767, "fields": {"state_transition": 883, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3768, "fields": {"state_transition": 884, "node_type": "N", "subcondition": null, "parent": 3771}}, {"model": "template.logicnode", "pk": 3769, "fields": {"state_transition": 884, "node_type": "S", "subcondition": 23, "parent": 3768}}, {"model": "template.logicnode", "pk": 3770, "fields": {"state_transition": 884, "node_type": "S", "subcondition": 2, "parent": 3771}}, {"model": "template.logicnode", "pk": 3771, "fields": {"state_transition": 884, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3772, "fields": {"state_transition": 885, "node_type": "N", "subcondition": null, "parent": 3775}}, {"model": "template.logicnode", "pk": 3773, "fields": {"state_transition": 885, "node_type": "S", "subcondition": 23, "parent": 3772}}, {"model": "template.logicnode", "pk": 3774, "fields": {"state_transition": 885, "node_type": "S", "subcondition": 12, "parent": 3775}}, {"model": "template.logicnode", "pk": 3775, "fields": {"state_transition": 885, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3776, "fields": {"state_transition": 886, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3777, "fields": {"state_transition": 886, "node_type": "S", "subcondition": 23, "parent": 3776}}, {"model": "template.logicnode", "pk": 3778, "fields": {"state_transition": 887, "node_type": "S", "subcondition": 23, "parent": 3782}}, {"model": "template.logicnode", "pk": 3779, "fields": {"state_transition": 887, "node_type": "S", "subcondition": 7, "parent": 3782}}, {"model": "template.logicnode", "pk": 3780, "fields": {"state_transition": 887, "node_type": "S", "subcondition": 2, "parent": 3782}}, {"model": "template.logicnode", "pk": 3781, "fields": {"state_transition": 887, "node_type": "S", "subcondition": 12, "parent": 3782}}, {"model": "template.logicnode", "pk": 3782, "fields": {"state_transition": 887, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3783, "fields": {"state_transition": 888, "node_type": "S", "subcondition": 23, "parent": 3786}}, {"model": "template.logicnode", "pk": 3784, "fields": {"state_transition": 888, "node_type": "S", "subcondition": 7, "parent": 3786}}, {"model": "template.logicnode", "pk": 3785, "fields": {"state_transition": 888, "node_type": "S", "subcondition": 2, "parent": 3786}}, {"model": "template.logicnode", "pk": 3786, "fields": {"state_transition": 888, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3787, "fields": {"state_transition": 889, "node_type": "S", "subcondition": 23, "parent": 3790}}, {"model": "template.logicnode", "pk": 3788, "fields": {"state_transition": 889, "node_type": "S", "subcondition": 7, "parent": 3790}}, {"model": "template.logicnode", "pk": 3789, "fields": {"state_transition": 889, "node_type": "S", "subcondition": 12, "parent": 3790}}, {"model": "template.logicnode", "pk": 3790, "fields": {"state_transition": 889, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3791, "fields": {"state_transition": 890, "node_type": "S", "subcondition": 23, "parent": 3793}}, {"model": "template.logicnode", "pk": 3792, "fields": {"state_transition": 890, "node_type": "S", "subcondition": 7, "parent": 3793}}, {"model": "template.logicnode", "pk": 3793, "fields": {"state_transition": 890, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3794, "fields": {"state_transition": 891, "node_type": "S", "subcondition": 23, "parent": 3797}}, {"model": "template.logicnode", "pk": 3795, "fields": {"state_transition": 891, "node_type": "S", "subcondition": 2, "parent": 3797}}, {"model": "template.logicnode", "pk": 3796, "fields": {"state_transition": 891, "node_type": "S", "subcondition": 12, "parent": 3797}}, {"model": "template.logicnode", "pk": 3797, "fields": {"state_transition": 891, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3798, "fields": {"state_transition": 892, "node_type": "S", "subcondition": 23, "parent": 3800}}, {"model": "template.logicnode", "pk": 3799, "fields": {"state_transition": 892, "node_type": "S", "subcondition": 2, "parent": 3800}}, {"model": "template.logicnode", "pk": 3800, "fields": {"state_transition": 892, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3801, "fields": {"state_transition": 893, "node_type": "S", "subcondition": 23, "parent": 3803}}, {"model": "template.logicnode", "pk": 3802, "fields": {"state_transition": 893, "node_type": "S", "subcondition": 12, "parent": 3803}}, {"model": "template.logicnode", "pk": 3803, "fields": {"state_transition": 893, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3804, "fields": {"state_transition": 894, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3805, "fields": {"state_transition": 895, "node_type": "N", "subcondition": null, "parent": 3811}}, {"model": "template.logicnode", "pk": 3806, "fields": {"state_transition": 895, "node_type": "S", "subcondition": 23, "parent": 3805}}, {"model": "template.logicnode", "pk": 3807, "fields": {"state_transition": 895, "node_type": "S", "subcondition": 11, "parent": 3811}}, {"model": "template.logicnode", "pk": 3808, "fields": {"state_transition": 895, "node_type": "S", "subcondition": 7, "parent": 3811}}, {"model": "template.logicnode", "pk": 3809, "fields": {"state_transition": 895, "node_type": "S", "subcondition": 2, "parent": 3811}}, {"model": "template.logicnode", "pk": 3810, "fields": {"state_transition": 895, "node_type": "S", "subcondition": 12, "parent": 3811}}, {"model": "template.logicnode", "pk": 3811, "fields": {"state_transition": 895, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3812, "fields": {"state_transition": 896, "node_type": "N", "subcondition": null, "parent": 3817}}, {"model": "template.logicnode", "pk": 3813, "fields": {"state_transition": 896, "node_type": "S", "subcondition": 23, "parent": 3812}}, {"model": "template.logicnode", "pk": 3814, "fields": {"state_transition": 896, "node_type": "S", "subcondition": 11, "parent": 3817}}, {"model": "template.logicnode", "pk": 3815, "fields": {"state_transition": 896, "node_type": "S", "subcondition": 7, "parent": 3817}}, {"model": "template.logicnode", "pk": 3816, "fields": {"state_transition": 896, "node_type": "S", "subcondition": 2, "parent": 3817}}, {"model": "template.logicnode", "pk": 3817, "fields": {"state_transition": 896, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3818, "fields": {"state_transition": 897, "node_type": "N", "subcondition": null, "parent": 3823}}, {"model": "template.logicnode", "pk": 3819, "fields": {"state_transition": 897, "node_type": "S", "subcondition": 23, "parent": 3818}}, {"model": "template.logicnode", "pk": 3820, "fields": {"state_transition": 897, "node_type": "S", "subcondition": 11, "parent": 3823}}, {"model": "template.logicnode", "pk": 3821, "fields": {"state_transition": 897, "node_type": "S", "subcondition": 7, "parent": 3823}}, {"model": "template.logicnode", "pk": 3822, "fields": {"state_transition": 897, "node_type": "S", "subcondition": 12, "parent": 3823}}, {"model": "template.logicnode", "pk": 3823, "fields": {"state_transition": 897, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3824, "fields": {"state_transition": 898, "node_type": "N", "subcondition": null, "parent": 3828}}, {"model": "template.logicnode", "pk": 3825, "fields": {"state_transition": 898, "node_type": "S", "subcondition": 23, "parent": 3824}}, {"model": "template.logicnode", "pk": 3826, "fields": {"state_transition": 898, "node_type": "S", "subcondition": 11, "parent": 3828}}, {"model": "template.logicnode", "pk": 3827, "fields": {"state_transition": 898, "node_type": "S", "subcondition": 7, "parent": 3828}}, {"model": "template.logicnode", "pk": 3828, "fields": {"state_transition": 898, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3829, "fields": {"state_transition": 899, "node_type": "N", "subcondition": null, "parent": 3834}}, {"model": "template.logicnode", "pk": 3830, "fields": {"state_transition": 899, "node_type": "S", "subcondition": 23, "parent": 3829}}, {"model": "template.logicnode", "pk": 3831, "fields": {"state_transition": 899, "node_type": "S", "subcondition": 11, "parent": 3834}}, {"model": "template.logicnode", "pk": 3832, "fields": {"state_transition": 899, "node_type": "S", "subcondition": 2, "parent": 3834}}, {"model": "template.logicnode", "pk": 3833, "fields": {"state_transition": 899, "node_type": "S", "subcondition": 12, "parent": 3834}}, {"model": "template.logicnode", "pk": 3834, "fields": {"state_transition": 899, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3835, "fields": {"state_transition": 900, "node_type": "N", "subcondition": null, "parent": 3839}}, {"model": "template.logicnode", "pk": 3836, "fields": {"state_transition": 900, "node_type": "S", "subcondition": 23, "parent": 3835}}, {"model": "template.logicnode", "pk": 3837, "fields": {"state_transition": 900, "node_type": "S", "subcondition": 11, "parent": 3839}}, {"model": "template.logicnode", "pk": 3838, "fields": {"state_transition": 900, "node_type": "S", "subcondition": 2, "parent": 3839}}, {"model": "template.logicnode", "pk": 3839, "fields": {"state_transition": 900, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3840, "fields": {"state_transition": 901, "node_type": "N", "subcondition": null, "parent": 3844}}, {"model": "template.logicnode", "pk": 3841, "fields": {"state_transition": 901, "node_type": "S", "subcondition": 23, "parent": 3840}}, {"model": "template.logicnode", "pk": 3842, "fields": {"state_transition": 901, "node_type": "S", "subcondition": 11, "parent": 3844}}, {"model": "template.logicnode", "pk": 3843, "fields": {"state_transition": 901, "node_type": "S", "subcondition": 12, "parent": 3844}}, {"model": "template.logicnode", "pk": 3844, "fields": {"state_transition": 901, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3845, "fields": {"state_transition": 902, "node_type": "N", "subcondition": null, "parent": 3848}}, {"model": "template.logicnode", "pk": 3846, "fields": {"state_transition": 902, "node_type": "S", "subcondition": 23, "parent": 3845}}, {"model": "template.logicnode", "pk": 3847, "fields": {"state_transition": 902, "node_type": "S", "subcondition": 11, "parent": 3848}}, {"model": "template.logicnode", "pk": 3848, "fields": {"state_transition": 902, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3849, "fields": {"state_transition": 903, "node_type": "N", "subcondition": null, "parent": 3854}}, {"model": "template.logicnode", "pk": 3850, "fields": {"state_transition": 903, "node_type": "S", "subcondition": 23, "parent": 3849}}, {"model": "template.logicnode", "pk": 3851, "fields": {"state_transition": 903, "node_type": "S", "subcondition": 7, "parent": 3854}}, {"model": "template.logicnode", "pk": 3852, "fields": {"state_transition": 903, "node_type": "S", "subcondition": 2, "parent": 3854}}, {"model": "template.logicnode", "pk": 3853, "fields": {"state_transition": 903, "node_type": "S", "subcondition": 12, "parent": 3854}}, {"model": "template.logicnode", "pk": 3854, "fields": {"state_transition": 903, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3855, "fields": {"state_transition": 904, "node_type": "N", "subcondition": null, "parent": 3859}}, {"model": "template.logicnode", "pk": 3856, "fields": {"state_transition": 904, "node_type": "S", "subcondition": 23, "parent": 3855}}, {"model": "template.logicnode", "pk": 3857, "fields": {"state_transition": 904, "node_type": "S", "subcondition": 7, "parent": 3859}}, {"model": "template.logicnode", "pk": 3858, "fields": {"state_transition": 904, "node_type": "S", "subcondition": 2, "parent": 3859}}, {"model": "template.logicnode", "pk": 3859, "fields": {"state_transition": 904, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3860, "fields": {"state_transition": 905, "node_type": "N", "subcondition": null, "parent": 3864}}, {"model": "template.logicnode", "pk": 3861, "fields": {"state_transition": 905, "node_type": "S", "subcondition": 23, "parent": 3860}}, {"model": "template.logicnode", "pk": 3862, "fields": {"state_transition": 905, "node_type": "S", "subcondition": 7, "parent": 3864}}, {"model": "template.logicnode", "pk": 3863, "fields": {"state_transition": 905, "node_type": "S", "subcondition": 12, "parent": 3864}}, {"model": "template.logicnode", "pk": 3864, "fields": {"state_transition": 905, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3865, "fields": {"state_transition": 906, "node_type": "N", "subcondition": null, "parent": 3868}}, {"model": "template.logicnode", "pk": 3866, "fields": {"state_transition": 906, "node_type": "S", "subcondition": 23, "parent": 3865}}, {"model": "template.logicnode", "pk": 3867, "fields": {"state_transition": 906, "node_type": "S", "subcondition": 7, "parent": 3868}}, {"model": "template.logicnode", "pk": 3868, "fields": {"state_transition": 906, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3869, "fields": {"state_transition": 907, "node_type": "N", "subcondition": null, "parent": 3873}}, {"model": "template.logicnode", "pk": 3870, "fields": {"state_transition": 907, "node_type": "S", "subcondition": 23, "parent": 3869}}, {"model": "template.logicnode", "pk": 3871, "fields": {"state_transition": 907, "node_type": "S", "subcondition": 2, "parent": 3873}}, {"model": "template.logicnode", "pk": 3872, "fields": {"state_transition": 907, "node_type": "S", "subcondition": 12, "parent": 3873}}, {"model": "template.logicnode", "pk": 3873, "fields": {"state_transition": 907, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3874, "fields": {"state_transition": 908, "node_type": "N", "subcondition": null, "parent": 3877}}, {"model": "template.logicnode", "pk": 3875, "fields": {"state_transition": 908, "node_type": "S", "subcondition": 23, "parent": 3874}}, {"model": "template.logicnode", "pk": 3876, "fields": {"state_transition": 908, "node_type": "S", "subcondition": 2, "parent": 3877}}, {"model": "template.logicnode", "pk": 3877, "fields": {"state_transition": 908, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3878, "fields": {"state_transition": 909, "node_type": "N", "subcondition": null, "parent": 3881}}, {"model": "template.logicnode", "pk": 3879, "fields": {"state_transition": 909, "node_type": "S", "subcondition": 23, "parent": 3878}}, {"model": "template.logicnode", "pk": 3880, "fields": {"state_transition": 909, "node_type": "S", "subcondition": 12, "parent": 3881}}, {"model": "template.logicnode", "pk": 3881, "fields": {"state_transition": 909, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3882, "fields": {"state_transition": 910, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3883, "fields": {"state_transition": 910, "node_type": "S", "subcondition": 23, "parent": 3882}}, {"model": "template.logicnode", "pk": 3884, "fields": {"state_transition": 911, "node_type": "S", "subcondition": 23, "parent": 3888}}, {"model": "template.logicnode", "pk": 3885, "fields": {"state_transition": 911, "node_type": "S", "subcondition": 7, "parent": 3888}}, {"model": "template.logicnode", "pk": 3886, "fields": {"state_transition": 911, "node_type": "S", "subcondition": 2, "parent": 3888}}, {"model": "template.logicnode", "pk": 3887, "fields": {"state_transition": 911, "node_type": "S", "subcondition": 12, "parent": 3888}}, {"model": "template.logicnode", "pk": 3888, "fields": {"state_transition": 911, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3889, "fields": {"state_transition": 912, "node_type": "S", "subcondition": 23, "parent": 3892}}, {"model": "template.logicnode", "pk": 3890, "fields": {"state_transition": 912, "node_type": "S", "subcondition": 7, "parent": 3892}}, {"model": "template.logicnode", "pk": 3891, "fields": {"state_transition": 912, "node_type": "S", "subcondition": 2, "parent": 3892}}, {"model": "template.logicnode", "pk": 3892, "fields": {"state_transition": 912, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3893, "fields": {"state_transition": 913, "node_type": "S", "subcondition": 23, "parent": 3896}}, {"model": "template.logicnode", "pk": 3894, "fields": {"state_transition": 913, "node_type": "S", "subcondition": 7, "parent": 3896}}, {"model": "template.logicnode", "pk": 3895, "fields": {"state_transition": 913, "node_type": "S", "subcondition": 12, "parent": 3896}}, {"model": "template.logicnode", "pk": 3896, "fields": {"state_transition": 913, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3897, "fields": {"state_transition": 914, "node_type": "S", "subcondition": 23, "parent": 3899}}, {"model": "template.logicnode", "pk": 3898, "fields": {"state_transition": 914, "node_type": "S", "subcondition": 7, "parent": 3899}}, {"model": "template.logicnode", "pk": 3899, "fields": {"state_transition": 914, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3900, "fields": {"state_transition": 915, "node_type": "S", "subcondition": 23, "parent": 3903}}, {"model": "template.logicnode", "pk": 3901, "fields": {"state_transition": 915, "node_type": "S", "subcondition": 2, "parent": 3903}}, {"model": "template.logicnode", "pk": 3902, "fields": {"state_transition": 915, "node_type": "S", "subcondition": 12, "parent": 3903}}, {"model": "template.logicnode", "pk": 3903, "fields": {"state_transition": 915, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3904, "fields": {"state_transition": 916, "node_type": "S", "subcondition": 23, "parent": 3906}}, {"model": "template.logicnode", "pk": 3905, "fields": {"state_transition": 916, "node_type": "S", "subcondition": 2, "parent": 3906}}, {"model": "template.logicnode", "pk": 3906, "fields": {"state_transition": 916, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3907, "fields": {"state_transition": 917, "node_type": "S", "subcondition": 23, "parent": 3909}}, {"model": "template.logicnode", "pk": 3908, "fields": {"state_transition": 917, "node_type": "S", "subcondition": 12, "parent": 3909}}, {"model": "template.logicnode", "pk": 3909, "fields": {"state_transition": 917, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3910, "fields": {"state_transition": 918, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3911, "fields": {"state_transition": 919, "node_type": "N", "subcondition": null, "parent": 3917}}, {"model": "template.logicnode", "pk": 3912, "fields": {"state_transition": 919, "node_type": "S", "subcondition": 23, "parent": 3911}}, {"model": "template.logicnode", "pk": 3913, "fields": {"state_transition": 919, "node_type": "S", "subcondition": 11, "parent": 3917}}, {"model": "template.logicnode", "pk": 3914, "fields": {"state_transition": 919, "node_type": "S", "subcondition": 7, "parent": 3917}}, {"model": "template.logicnode", "pk": 3915, "fields": {"state_transition": 919, "node_type": "S", "subcondition": 2, "parent": 3917}}, {"model": "template.logicnode", "pk": 3916, "fields": {"state_transition": 919, "node_type": "S", "subcondition": 12, "parent": 3917}}, {"model": "template.logicnode", "pk": 3917, "fields": {"state_transition": 919, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3918, "fields": {"state_transition": 920, "node_type": "N", "subcondition": null, "parent": 3923}}, {"model": "template.logicnode", "pk": 3919, "fields": {"state_transition": 920, "node_type": "S", "subcondition": 23, "parent": 3918}}, {"model": "template.logicnode", "pk": 3920, "fields": {"state_transition": 920, "node_type": "S", "subcondition": 11, "parent": 3923}}, {"model": "template.logicnode", "pk": 3921, "fields": {"state_transition": 920, "node_type": "S", "subcondition": 7, "parent": 3923}}, {"model": "template.logicnode", "pk": 3922, "fields": {"state_transition": 920, "node_type": "S", "subcondition": 2, "parent": 3923}}, {"model": "template.logicnode", "pk": 3923, "fields": {"state_transition": 920, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3924, "fields": {"state_transition": 921, "node_type": "N", "subcondition": null, "parent": 3929}}, {"model": "template.logicnode", "pk": 3925, "fields": {"state_transition": 921, "node_type": "S", "subcondition": 23, "parent": 3924}}, {"model": "template.logicnode", "pk": 3926, "fields": {"state_transition": 921, "node_type": "S", "subcondition": 11, "parent": 3929}}, {"model": "template.logicnode", "pk": 3927, "fields": {"state_transition": 921, "node_type": "S", "subcondition": 7, "parent": 3929}}, {"model": "template.logicnode", "pk": 3928, "fields": {"state_transition": 921, "node_type": "S", "subcondition": 12, "parent": 3929}}, {"model": "template.logicnode", "pk": 3929, "fields": {"state_transition": 921, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3930, "fields": {"state_transition": 922, "node_type": "N", "subcondition": null, "parent": 3934}}, {"model": "template.logicnode", "pk": 3931, "fields": {"state_transition": 922, "node_type": "S", "subcondition": 23, "parent": 3930}}, {"model": "template.logicnode", "pk": 3932, "fields": {"state_transition": 922, "node_type": "S", "subcondition": 11, "parent": 3934}}, {"model": "template.logicnode", "pk": 3933, "fields": {"state_transition": 922, "node_type": "S", "subcondition": 7, "parent": 3934}}, {"model": "template.logicnode", "pk": 3934, "fields": {"state_transition": 922, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3935, "fields": {"state_transition": 923, "node_type": "N", "subcondition": null, "parent": 3940}}, {"model": "template.logicnode", "pk": 3936, "fields": {"state_transition": 923, "node_type": "S", "subcondition": 23, "parent": 3935}}, {"model": "template.logicnode", "pk": 3937, "fields": {"state_transition": 923, "node_type": "S", "subcondition": 11, "parent": 3940}}, {"model": "template.logicnode", "pk": 3938, "fields": {"state_transition": 923, "node_type": "S", "subcondition": 2, "parent": 3940}}, {"model": "template.logicnode", "pk": 3939, "fields": {"state_transition": 923, "node_type": "S", "subcondition": 12, "parent": 3940}}, {"model": "template.logicnode", "pk": 3940, "fields": {"state_transition": 923, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3941, "fields": {"state_transition": 924, "node_type": "N", "subcondition": null, "parent": 3945}}, {"model": "template.logicnode", "pk": 3942, "fields": {"state_transition": 924, "node_type": "S", "subcondition": 23, "parent": 3941}}, {"model": "template.logicnode", "pk": 3943, "fields": {"state_transition": 924, "node_type": "S", "subcondition": 11, "parent": 3945}}, {"model": "template.logicnode", "pk": 3944, "fields": {"state_transition": 924, "node_type": "S", "subcondition": 2, "parent": 3945}}, {"model": "template.logicnode", "pk": 3945, "fields": {"state_transition": 924, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3946, "fields": {"state_transition": 925, "node_type": "N", "subcondition": null, "parent": 3950}}, {"model": "template.logicnode", "pk": 3947, "fields": {"state_transition": 925, "node_type": "S", "subcondition": 23, "parent": 3946}}, {"model": "template.logicnode", "pk": 3948, "fields": {"state_transition": 925, "node_type": "S", "subcondition": 11, "parent": 3950}}, {"model": "template.logicnode", "pk": 3949, "fields": {"state_transition": 925, "node_type": "S", "subcondition": 12, "parent": 3950}}, {"model": "template.logicnode", "pk": 3950, "fields": {"state_transition": 925, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3951, "fields": {"state_transition": 926, "node_type": "N", "subcondition": null, "parent": 3954}}, {"model": "template.logicnode", "pk": 3952, "fields": {"state_transition": 926, "node_type": "S", "subcondition": 23, "parent": 3951}}, {"model": "template.logicnode", "pk": 3953, "fields": {"state_transition": 926, "node_type": "S", "subcondition": 11, "parent": 3954}}, {"model": "template.logicnode", "pk": 3954, "fields": {"state_transition": 926, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3955, "fields": {"state_transition": 927, "node_type": "N", "subcondition": null, "parent": 3960}}, {"model": "template.logicnode", "pk": 3956, "fields": {"state_transition": 927, "node_type": "S", "subcondition": 23, "parent": 3955}}, {"model": "template.logicnode", "pk": 3957, "fields": {"state_transition": 927, "node_type": "S", "subcondition": 7, "parent": 3960}}, {"model": "template.logicnode", "pk": 3958, "fields": {"state_transition": 927, "node_type": "S", "subcondition": 2, "parent": 3960}}, {"model": "template.logicnode", "pk": 3959, "fields": {"state_transition": 927, "node_type": "S", "subcondition": 12, "parent": 3960}}, {"model": "template.logicnode", "pk": 3960, "fields": {"state_transition": 927, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3961, "fields": {"state_transition": 928, "node_type": "N", "subcondition": null, "parent": 3965}}, {"model": "template.logicnode", "pk": 3962, "fields": {"state_transition": 928, "node_type": "S", "subcondition": 23, "parent": 3961}}, {"model": "template.logicnode", "pk": 3963, "fields": {"state_transition": 928, "node_type": "S", "subcondition": 7, "parent": 3965}}, {"model": "template.logicnode", "pk": 3964, "fields": {"state_transition": 928, "node_type": "S", "subcondition": 2, "parent": 3965}}, {"model": "template.logicnode", "pk": 3965, "fields": {"state_transition": 928, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3966, "fields": {"state_transition": 929, "node_type": "N", "subcondition": null, "parent": 3970}}, {"model": "template.logicnode", "pk": 3967, "fields": {"state_transition": 929, "node_type": "S", "subcondition": 23, "parent": 3966}}, {"model": "template.logicnode", "pk": 3968, "fields": {"state_transition": 929, "node_type": "S", "subcondition": 7, "parent": 3970}}, {"model": "template.logicnode", "pk": 3969, "fields": {"state_transition": 929, "node_type": "S", "subcondition": 12, "parent": 3970}}, {"model": "template.logicnode", "pk": 3970, "fields": {"state_transition": 929, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3971, "fields": {"state_transition": 930, "node_type": "N", "subcondition": null, "parent": 3974}}, {"model": "template.logicnode", "pk": 3972, "fields": {"state_transition": 930, "node_type": "S", "subcondition": 23, "parent": 3971}}, {"model": "template.logicnode", "pk": 3973, "fields": {"state_transition": 930, "node_type": "S", "subcondition": 7, "parent": 3974}}, {"model": "template.logicnode", "pk": 3974, "fields": {"state_transition": 930, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3975, "fields": {"state_transition": 931, "node_type": "N", "subcondition": null, "parent": 3979}}, {"model": "template.logicnode", "pk": 3976, "fields": {"state_transition": 931, "node_type": "S", "subcondition": 23, "parent": 3975}}, {"model": "template.logicnode", "pk": 3977, "fields": {"state_transition": 931, "node_type": "S", "subcondition": 2, "parent": 3979}}, {"model": "template.logicnode", "pk": 3978, "fields": {"state_transition": 931, "node_type": "S", "subcondition": 12, "parent": 3979}}, {"model": "template.logicnode", "pk": 3979, "fields": {"state_transition": 931, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3980, "fields": {"state_transition": 932, "node_type": "N", "subcondition": null, "parent": 3983}}, {"model": "template.logicnode", "pk": 3981, "fields": {"state_transition": 932, "node_type": "S", "subcondition": 23, "parent": 3980}}, {"model": "template.logicnode", "pk": 3982, "fields": {"state_transition": 932, "node_type": "S", "subcondition": 2, "parent": 3983}}, {"model": "template.logicnode", "pk": 3983, "fields": {"state_transition": 932, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3984, "fields": {"state_transition": 933, "node_type": "N", "subcondition": null, "parent": 3987}}, {"model": "template.logicnode", "pk": 3985, "fields": {"state_transition": 933, "node_type": "S", "subcondition": 23, "parent": 3984}}, {"model": "template.logicnode", "pk": 3986, "fields": {"state_transition": 933, "node_type": "S", "subcondition": 12, "parent": 3987}}, {"model": "template.logicnode", "pk": 3987, "fields": {"state_transition": 933, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3988, "fields": {"state_transition": 934, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3989, "fields": {"state_transition": 934, "node_type": "S", "subcondition": 23, "parent": 3988}}, {"model": "template.logicnode", "pk": 3990, "fields": {"state_transition": 935, "node_type": "S", "subcondition": 23, "parent": 3994}}, {"model": "template.logicnode", "pk": 3991, "fields": {"state_transition": 935, "node_type": "S", "subcondition": 7, "parent": 3994}}, {"model": "template.logicnode", "pk": 3992, "fields": {"state_transition": 935, "node_type": "S", "subcondition": 2, "parent": 3994}}, {"model": "template.logicnode", "pk": 3993, "fields": {"state_transition": 935, "node_type": "S", "subcondition": 12, "parent": 3994}}, {"model": "template.logicnode", "pk": 3994, "fields": {"state_transition": 935, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3995, "fields": {"state_transition": 936, "node_type": "S", "subcondition": 23, "parent": 3998}}, {"model": "template.logicnode", "pk": 3996, "fields": {"state_transition": 936, "node_type": "S", "subcondition": 7, "parent": 3998}}, {"model": "template.logicnode", "pk": 3997, "fields": {"state_transition": 936, "node_type": "S", "subcondition": 2, "parent": 3998}}, {"model": "template.logicnode", "pk": 3998, "fields": {"state_transition": 936, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3999, "fields": {"state_transition": 937, "node_type": "S", "subcondition": 23, "parent": 4002}}, {"model": "template.logicnode", "pk": 4000, "fields": {"state_transition": 937, "node_type": "S", "subcondition": 7, "parent": 4002}}, {"model": "template.logicnode", "pk": 4001, "fields": {"state_transition": 937, "node_type": "S", "subcondition": 12, "parent": 4002}}, {"model": "template.logicnode", "pk": 4002, "fields": {"state_transition": 937, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4003, "fields": {"state_transition": 938, "node_type": "S", "subcondition": 23, "parent": 4005}}, {"model": "template.logicnode", "pk": 4004, "fields": {"state_transition": 938, "node_type": "S", "subcondition": 7, "parent": 4005}}, {"model": "template.logicnode", "pk": 4005, "fields": {"state_transition": 938, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4006, "fields": {"state_transition": 939, "node_type": "S", "subcondition": 23, "parent": 4009}}, {"model": "template.logicnode", "pk": 4007, "fields": {"state_transition": 939, "node_type": "S", "subcondition": 2, "parent": 4009}}, {"model": "template.logicnode", "pk": 4008, "fields": {"state_transition": 939, "node_type": "S", "subcondition": 12, "parent": 4009}}, {"model": "template.logicnode", "pk": 4009, "fields": {"state_transition": 939, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4010, "fields": {"state_transition": 940, "node_type": "S", "subcondition": 23, "parent": 4012}}, {"model": "template.logicnode", "pk": 4011, "fields": {"state_transition": 940, "node_type": "S", "subcondition": 2, "parent": 4012}}, {"model": "template.logicnode", "pk": 4012, "fields": {"state_transition": 940, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4013, "fields": {"state_transition": 941, "node_type": "S", "subcondition": 23, "parent": 4015}}, {"model": "template.logicnode", "pk": 4014, "fields": {"state_transition": 941, "node_type": "S", "subcondition": 12, "parent": 4015}}, {"model": "template.logicnode", "pk": 4015, "fields": {"state_transition": 941, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4016, "fields": {"state_transition": 942, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4017, "fields": {"state_transition": 943, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4018, "fields": {"state_transition": 943, "node_type": "S", "subcondition": 12, "parent": 4017}}, {"model": "template.logicnode", "pk": 4019, "fields": {"state_transition": 944, "node_type": "N", "subcondition": null, "parent": 4025}}, {"model": "template.logicnode", "pk": 4020, "fields": {"state_transition": 944, "node_type": "S", "subcondition": 23, "parent": 4019}}, {"model": "template.logicnode", "pk": 4021, "fields": {"state_transition": 944, "node_type": "S", "subcondition": 11, "parent": 4025}}, {"model": "template.logicnode", "pk": 4022, "fields": {"state_transition": 944, "node_type": "S", "subcondition": 7, "parent": 4025}}, {"model": "template.logicnode", "pk": 4023, "fields": {"state_transition": 944, "node_type": "S", "subcondition": 2, "parent": 4025}}, {"model": "template.logicnode", "pk": 4024, "fields": {"state_transition": 944, "node_type": "S", "subcondition": 12, "parent": 4025}}, {"model": "template.logicnode", "pk": 4025, "fields": {"state_transition": 944, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4026, "fields": {"state_transition": 945, "node_type": "N", "subcondition": null, "parent": 4031}}, {"model": "template.logicnode", "pk": 4027, "fields": {"state_transition": 945, "node_type": "S", "subcondition": 23, "parent": 4026}}, {"model": "template.logicnode", "pk": 4028, "fields": {"state_transition": 945, "node_type": "S", "subcondition": 11, "parent": 4031}}, {"model": "template.logicnode", "pk": 4029, "fields": {"state_transition": 945, "node_type": "S", "subcondition": 7, "parent": 4031}}, {"model": "template.logicnode", "pk": 4030, "fields": {"state_transition": 945, "node_type": "S", "subcondition": 2, "parent": 4031}}, {"model": "template.logicnode", "pk": 4031, "fields": {"state_transition": 945, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4032, "fields": {"state_transition": 946, "node_type": "N", "subcondition": null, "parent": 4037}}, {"model": "template.logicnode", "pk": 4033, "fields": {"state_transition": 946, "node_type": "S", "subcondition": 23, "parent": 4032}}, {"model": "template.logicnode", "pk": 4034, "fields": {"state_transition": 946, "node_type": "S", "subcondition": 11, "parent": 4037}}, {"model": "template.logicnode", "pk": 4035, "fields": {"state_transition": 946, "node_type": "S", "subcondition": 7, "parent": 4037}}, {"model": "template.logicnode", "pk": 4036, "fields": {"state_transition": 946, "node_type": "S", "subcondition": 12, "parent": 4037}}, {"model": "template.logicnode", "pk": 4037, "fields": {"state_transition": 946, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4038, "fields": {"state_transition": 947, "node_type": "N", "subcondition": null, "parent": 4042}}, {"model": "template.logicnode", "pk": 4039, "fields": {"state_transition": 947, "node_type": "S", "subcondition": 23, "parent": 4038}}, {"model": "template.logicnode", "pk": 4040, "fields": {"state_transition": 947, "node_type": "S", "subcondition": 11, "parent": 4042}}, {"model": "template.logicnode", "pk": 4041, "fields": {"state_transition": 947, "node_type": "S", "subcondition": 7, "parent": 4042}}, {"model": "template.logicnode", "pk": 4042, "fields": {"state_transition": 947, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4043, "fields": {"state_transition": 948, "node_type": "N", "subcondition": null, "parent": 4048}}, {"model": "template.logicnode", "pk": 4044, "fields": {"state_transition": 948, "node_type": "S", "subcondition": 23, "parent": 4043}}, {"model": "template.logicnode", "pk": 4045, "fields": {"state_transition": 948, "node_type": "S", "subcondition": 11, "parent": 4048}}, {"model": "template.logicnode", "pk": 4046, "fields": {"state_transition": 948, "node_type": "S", "subcondition": 2, "parent": 4048}}, {"model": "template.logicnode", "pk": 4047, "fields": {"state_transition": 948, "node_type": "S", "subcondition": 12, "parent": 4048}}, {"model": "template.logicnode", "pk": 4048, "fields": {"state_transition": 948, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4049, "fields": {"state_transition": 949, "node_type": "N", "subcondition": null, "parent": 4053}}, {"model": "template.logicnode", "pk": 4050, "fields": {"state_transition": 949, "node_type": "S", "subcondition": 23, "parent": 4049}}, {"model": "template.logicnode", "pk": 4051, "fields": {"state_transition": 949, "node_type": "S", "subcondition": 11, "parent": 4053}}, {"model": "template.logicnode", "pk": 4052, "fields": {"state_transition": 949, "node_type": "S", "subcondition": 2, "parent": 4053}}, {"model": "template.logicnode", "pk": 4053, "fields": {"state_transition": 949, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4054, "fields": {"state_transition": 950, "node_type": "N", "subcondition": null, "parent": 4058}}, {"model": "template.logicnode", "pk": 4055, "fields": {"state_transition": 950, "node_type": "S", "subcondition": 23, "parent": 4054}}, {"model": "template.logicnode", "pk": 4056, "fields": {"state_transition": 950, "node_type": "S", "subcondition": 11, "parent": 4058}}, {"model": "template.logicnode", "pk": 4057, "fields": {"state_transition": 950, "node_type": "S", "subcondition": 12, "parent": 4058}}, {"model": "template.logicnode", "pk": 4058, "fields": {"state_transition": 950, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4059, "fields": {"state_transition": 951, "node_type": "N", "subcondition": null, "parent": 4062}}, {"model": "template.logicnode", "pk": 4060, "fields": {"state_transition": 951, "node_type": "S", "subcondition": 23, "parent": 4059}}, {"model": "template.logicnode", "pk": 4061, "fields": {"state_transition": 951, "node_type": "S", "subcondition": 11, "parent": 4062}}, {"model": "template.logicnode", "pk": 4062, "fields": {"state_transition": 951, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4063, "fields": {"state_transition": 952, "node_type": "N", "subcondition": null, "parent": 4068}}, {"model": "template.logicnode", "pk": 4064, "fields": {"state_transition": 952, "node_type": "S", "subcondition": 23, "parent": 4063}}, {"model": "template.logicnode", "pk": 4065, "fields": {"state_transition": 952, "node_type": "S", "subcondition": 7, "parent": 4068}}, {"model": "template.logicnode", "pk": 4066, "fields": {"state_transition": 952, "node_type": "S", "subcondition": 2, "parent": 4068}}, {"model": "template.logicnode", "pk": 4067, "fields": {"state_transition": 952, "node_type": "S", "subcondition": 12, "parent": 4068}}, {"model": "template.logicnode", "pk": 4068, "fields": {"state_transition": 952, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4069, "fields": {"state_transition": 953, "node_type": "N", "subcondition": null, "parent": 4073}}, {"model": "template.logicnode", "pk": 4070, "fields": {"state_transition": 953, "node_type": "S", "subcondition": 23, "parent": 4069}}, {"model": "template.logicnode", "pk": 4071, "fields": {"state_transition": 953, "node_type": "S", "subcondition": 7, "parent": 4073}}, {"model": "template.logicnode", "pk": 4072, "fields": {"state_transition": 953, "node_type": "S", "subcondition": 2, "parent": 4073}}, {"model": "template.logicnode", "pk": 4073, "fields": {"state_transition": 953, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4074, "fields": {"state_transition": 954, "node_type": "N", "subcondition": null, "parent": 4078}}, {"model": "template.logicnode", "pk": 4075, "fields": {"state_transition": 954, "node_type": "S", "subcondition": 23, "parent": 4074}}, {"model": "template.logicnode", "pk": 4076, "fields": {"state_transition": 954, "node_type": "S", "subcondition": 7, "parent": 4078}}, {"model": "template.logicnode", "pk": 4077, "fields": {"state_transition": 954, "node_type": "S", "subcondition": 12, "parent": 4078}}, {"model": "template.logicnode", "pk": 4078, "fields": {"state_transition": 954, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4079, "fields": {"state_transition": 955, "node_type": "N", "subcondition": null, "parent": 4082}}, {"model": "template.logicnode", "pk": 4080, "fields": {"state_transition": 955, "node_type": "S", "subcondition": 23, "parent": 4079}}, {"model": "template.logicnode", "pk": 4081, "fields": {"state_transition": 955, "node_type": "S", "subcondition": 7, "parent": 4082}}, {"model": "template.logicnode", "pk": 4082, "fields": {"state_transition": 955, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4083, "fields": {"state_transition": 956, "node_type": "N", "subcondition": null, "parent": 4087}}, {"model": "template.logicnode", "pk": 4084, "fields": {"state_transition": 956, "node_type": "S", "subcondition": 23, "parent": 4083}}, {"model": "template.logicnode", "pk": 4085, "fields": {"state_transition": 956, "node_type": "S", "subcondition": 2, "parent": 4087}}, {"model": "template.logicnode", "pk": 4086, "fields": {"state_transition": 956, "node_type": "S", "subcondition": 12, "parent": 4087}}, {"model": "template.logicnode", "pk": 4087, "fields": {"state_transition": 956, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4088, "fields": {"state_transition": 957, "node_type": "N", "subcondition": null, "parent": 4091}}, {"model": "template.logicnode", "pk": 4089, "fields": {"state_transition": 957, "node_type": "S", "subcondition": 23, "parent": 4088}}, {"model": "template.logicnode", "pk": 4090, "fields": {"state_transition": 957, "node_type": "S", "subcondition": 2, "parent": 4091}}, {"model": "template.logicnode", "pk": 4091, "fields": {"state_transition": 957, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4092, "fields": {"state_transition": 958, "node_type": "N", "subcondition": null, "parent": 4095}}, {"model": "template.logicnode", "pk": 4093, "fields": {"state_transition": 958, "node_type": "S", "subcondition": 23, "parent": 4092}}, {"model": "template.logicnode", "pk": 4094, "fields": {"state_transition": 958, "node_type": "S", "subcondition": 12, "parent": 4095}}, {"model": "template.logicnode", "pk": 4095, "fields": {"state_transition": 958, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4096, "fields": {"state_transition": 959, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4097, "fields": {"state_transition": 959, "node_type": "S", "subcondition": 23, "parent": 4096}}, {"model": "template.logicnode", "pk": 4098, "fields": {"state_transition": 960, "node_type": "S", "subcondition": 23, "parent": 4102}}, {"model": "template.logicnode", "pk": 4099, "fields": {"state_transition": 960, "node_type": "S", "subcondition": 7, "parent": 4102}}, {"model": "template.logicnode", "pk": 4100, "fields": {"state_transition": 960, "node_type": "S", "subcondition": 2, "parent": 4102}}, {"model": "template.logicnode", "pk": 4101, "fields": {"state_transition": 960, "node_type": "S", "subcondition": 12, "parent": 4102}}, {"model": "template.logicnode", "pk": 4102, "fields": {"state_transition": 960, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4103, "fields": {"state_transition": 961, "node_type": "S", "subcondition": 23, "parent": 4106}}, {"model": "template.logicnode", "pk": 4104, "fields": {"state_transition": 961, "node_type": "S", "subcondition": 7, "parent": 4106}}, {"model": "template.logicnode", "pk": 4105, "fields": {"state_transition": 961, "node_type": "S", "subcondition": 2, "parent": 4106}}, {"model": "template.logicnode", "pk": 4106, "fields": {"state_transition": 961, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4107, "fields": {"state_transition": 962, "node_type": "S", "subcondition": 23, "parent": 4110}}, {"model": "template.logicnode", "pk": 4108, "fields": {"state_transition": 962, "node_type": "S", "subcondition": 7, "parent": 4110}}, {"model": "template.logicnode", "pk": 4109, "fields": {"state_transition": 962, "node_type": "S", "subcondition": 12, "parent": 4110}}, {"model": "template.logicnode", "pk": 4110, "fields": {"state_transition": 962, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4111, "fields": {"state_transition": 963, "node_type": "S", "subcondition": 23, "parent": 4113}}, {"model": "template.logicnode", "pk": 4112, "fields": {"state_transition": 963, "node_type": "S", "subcondition": 7, "parent": 4113}}, {"model": "template.logicnode", "pk": 4113, "fields": {"state_transition": 963, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4114, "fields": {"state_transition": 964, "node_type": "S", "subcondition": 23, "parent": 4117}}, {"model": "template.logicnode", "pk": 4115, "fields": {"state_transition": 964, "node_type": "S", "subcondition": 2, "parent": 4117}}, {"model": "template.logicnode", "pk": 4116, "fields": {"state_transition": 964, "node_type": "S", "subcondition": 12, "parent": 4117}}, {"model": "template.logicnode", "pk": 4117, "fields": {"state_transition": 964, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4118, "fields": {"state_transition": 965, "node_type": "S", "subcondition": 23, "parent": 4120}}, {"model": "template.logicnode", "pk": 4119, "fields": {"state_transition": 965, "node_type": "S", "subcondition": 2, "parent": 4120}}, {"model": "template.logicnode", "pk": 4120, "fields": {"state_transition": 965, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4121, "fields": {"state_transition": 966, "node_type": "S", "subcondition": 23, "parent": 4123}}, {"model": "template.logicnode", "pk": 4122, "fields": {"state_transition": 966, "node_type": "S", "subcondition": 12, "parent": 4123}}, {"model": "template.logicnode", "pk": 4123, "fields": {"state_transition": 966, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4124, "fields": {"state_transition": 967, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4125, "fields": {"state_transition": 968, "node_type": "N", "subcondition": null, "parent": 4131}}, {"model": "template.logicnode", "pk": 4126, "fields": {"state_transition": 968, "node_type": "S", "subcondition": 23, "parent": 4125}}, {"model": "template.logicnode", "pk": 4127, "fields": {"state_transition": 968, "node_type": "S", "subcondition": 11, "parent": 4131}}, {"model": "template.logicnode", "pk": 4128, "fields": {"state_transition": 968, "node_type": "S", "subcondition": 7, "parent": 4131}}, {"model": "template.logicnode", "pk": 4129, "fields": {"state_transition": 968, "node_type": "S", "subcondition": 2, "parent": 4131}}, {"model": "template.logicnode", "pk": 4130, "fields": {"state_transition": 968, "node_type": "S", "subcondition": 12, "parent": 4131}}, {"model": "template.logicnode", "pk": 4131, "fields": {"state_transition": 968, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4132, "fields": {"state_transition": 969, "node_type": "N", "subcondition": null, "parent": 4137}}, {"model": "template.logicnode", "pk": 4133, "fields": {"state_transition": 969, "node_type": "S", "subcondition": 23, "parent": 4132}}, {"model": "template.logicnode", "pk": 4134, "fields": {"state_transition": 969, "node_type": "S", "subcondition": 11, "parent": 4137}}, {"model": "template.logicnode", "pk": 4135, "fields": {"state_transition": 969, "node_type": "S", "subcondition": 7, "parent": 4137}}, {"model": "template.logicnode", "pk": 4136, "fields": {"state_transition": 969, "node_type": "S", "subcondition": 2, "parent": 4137}}, {"model": "template.logicnode", "pk": 4137, "fields": {"state_transition": 969, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4138, "fields": {"state_transition": 970, "node_type": "N", "subcondition": null, "parent": 4143}}, {"model": "template.logicnode", "pk": 4139, "fields": {"state_transition": 970, "node_type": "S", "subcondition": 23, "parent": 4138}}, {"model": "template.logicnode", "pk": 4140, "fields": {"state_transition": 970, "node_type": "S", "subcondition": 11, "parent": 4143}}, {"model": "template.logicnode", "pk": 4141, "fields": {"state_transition": 970, "node_type": "S", "subcondition": 7, "parent": 4143}}, {"model": "template.logicnode", "pk": 4142, "fields": {"state_transition": 970, "node_type": "S", "subcondition": 12, "parent": 4143}}, {"model": "template.logicnode", "pk": 4143, "fields": {"state_transition": 970, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4144, "fields": {"state_transition": 971, "node_type": "N", "subcondition": null, "parent": 4148}}, {"model": "template.logicnode", "pk": 4145, "fields": {"state_transition": 971, "node_type": "S", "subcondition": 23, "parent": 4144}}, {"model": "template.logicnode", "pk": 4146, "fields": {"state_transition": 971, "node_type": "S", "subcondition": 11, "parent": 4148}}, {"model": "template.logicnode", "pk": 4147, "fields": {"state_transition": 971, "node_type": "S", "subcondition": 7, "parent": 4148}}, {"model": "template.logicnode", "pk": 4148, "fields": {"state_transition": 971, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4149, "fields": {"state_transition": 972, "node_type": "N", "subcondition": null, "parent": 4154}}, {"model": "template.logicnode", "pk": 4150, "fields": {"state_transition": 972, "node_type": "S", "subcondition": 23, "parent": 4149}}, {"model": "template.logicnode", "pk": 4151, "fields": {"state_transition": 972, "node_type": "S", "subcondition": 11, "parent": 4154}}, {"model": "template.logicnode", "pk": 4152, "fields": {"state_transition": 972, "node_type": "S", "subcondition": 2, "parent": 4154}}, {"model": "template.logicnode", "pk": 4153, "fields": {"state_transition": 972, "node_type": "S", "subcondition": 12, "parent": 4154}}, {"model": "template.logicnode", "pk": 4154, "fields": {"state_transition": 972, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4155, "fields": {"state_transition": 973, "node_type": "N", "subcondition": null, "parent": 4159}}, {"model": "template.logicnode", "pk": 4156, "fields": {"state_transition": 973, "node_type": "S", "subcondition": 23, "parent": 4155}}, {"model": "template.logicnode", "pk": 4157, "fields": {"state_transition": 973, "node_type": "S", "subcondition": 11, "parent": 4159}}, {"model": "template.logicnode", "pk": 4158, "fields": {"state_transition": 973, "node_type": "S", "subcondition": 2, "parent": 4159}}, {"model": "template.logicnode", "pk": 4159, "fields": {"state_transition": 973, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4160, "fields": {"state_transition": 974, "node_type": "N", "subcondition": null, "parent": 4164}}, {"model": "template.logicnode", "pk": 4161, "fields": {"state_transition": 974, "node_type": "S", "subcondition": 23, "parent": 4160}}, {"model": "template.logicnode", "pk": 4162, "fields": {"state_transition": 974, "node_type": "S", "subcondition": 11, "parent": 4164}}, {"model": "template.logicnode", "pk": 4163, "fields": {"state_transition": 974, "node_type": "S", "subcondition": 12, "parent": 4164}}, {"model": "template.logicnode", "pk": 4164, "fields": {"state_transition": 974, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4165, "fields": {"state_transition": 975, "node_type": "N", "subcondition": null, "parent": 4168}}, {"model": "template.logicnode", "pk": 4166, "fields": {"state_transition": 975, "node_type": "S", "subcondition": 23, "parent": 4165}}, {"model": "template.logicnode", "pk": 4167, "fields": {"state_transition": 975, "node_type": "S", "subcondition": 11, "parent": 4168}}, {"model": "template.logicnode", "pk": 4168, "fields": {"state_transition": 975, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4169, "fields": {"state_transition": 976, "node_type": "N", "subcondition": null, "parent": 4174}}, {"model": "template.logicnode", "pk": 4170, "fields": {"state_transition": 976, "node_type": "S", "subcondition": 23, "parent": 4169}}, {"model": "template.logicnode", "pk": 4171, "fields": {"state_transition": 976, "node_type": "S", "subcondition": 7, "parent": 4174}}, {"model": "template.logicnode", "pk": 4172, "fields": {"state_transition": 976, "node_type": "S", "subcondition": 2, "parent": 4174}}, {"model": "template.logicnode", "pk": 4173, "fields": {"state_transition": 976, "node_type": "S", "subcondition": 12, "parent": 4174}}, {"model": "template.logicnode", "pk": 4174, "fields": {"state_transition": 976, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4175, "fields": {"state_transition": 977, "node_type": "N", "subcondition": null, "parent": 4179}}, {"model": "template.logicnode", "pk": 4176, "fields": {"state_transition": 977, "node_type": "S", "subcondition": 23, "parent": 4175}}, {"model": "template.logicnode", "pk": 4177, "fields": {"state_transition": 977, "node_type": "S", "subcondition": 7, "parent": 4179}}, {"model": "template.logicnode", "pk": 4178, "fields": {"state_transition": 977, "node_type": "S", "subcondition": 2, "parent": 4179}}, {"model": "template.logicnode", "pk": 4179, "fields": {"state_transition": 977, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4180, "fields": {"state_transition": 978, "node_type": "N", "subcondition": null, "parent": 4184}}, {"model": "template.logicnode", "pk": 4181, "fields": {"state_transition": 978, "node_type": "S", "subcondition": 23, "parent": 4180}}, {"model": "template.logicnode", "pk": 4182, "fields": {"state_transition": 978, "node_type": "S", "subcondition": 7, "parent": 4184}}, {"model": "template.logicnode", "pk": 4183, "fields": {"state_transition": 978, "node_type": "S", "subcondition": 12, "parent": 4184}}, {"model": "template.logicnode", "pk": 4184, "fields": {"state_transition": 978, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4185, "fields": {"state_transition": 979, "node_type": "N", "subcondition": null, "parent": 4188}}, {"model": "template.logicnode", "pk": 4186, "fields": {"state_transition": 979, "node_type": "S", "subcondition": 23, "parent": 4185}}, {"model": "template.logicnode", "pk": 4187, "fields": {"state_transition": 979, "node_type": "S", "subcondition": 7, "parent": 4188}}, {"model": "template.logicnode", "pk": 4188, "fields": {"state_transition": 979, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4189, "fields": {"state_transition": 980, "node_type": "N", "subcondition": null, "parent": 4193}}, {"model": "template.logicnode", "pk": 4190, "fields": {"state_transition": 980, "node_type": "S", "subcondition": 23, "parent": 4189}}, {"model": "template.logicnode", "pk": 4191, "fields": {"state_transition": 980, "node_type": "S", "subcondition": 2, "parent": 4193}}, {"model": "template.logicnode", "pk": 4192, "fields": {"state_transition": 980, "node_type": "S", "subcondition": 12, "parent": 4193}}, {"model": "template.logicnode", "pk": 4193, "fields": {"state_transition": 980, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4194, "fields": {"state_transition": 981, "node_type": "N", "subcondition": null, "parent": 4197}}, {"model": "template.logicnode", "pk": 4195, "fields": {"state_transition": 981, "node_type": "S", "subcondition": 23, "parent": 4194}}, {"model": "template.logicnode", "pk": 4196, "fields": {"state_transition": 981, "node_type": "S", "subcondition": 2, "parent": 4197}}, {"model": "template.logicnode", "pk": 4197, "fields": {"state_transition": 981, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4198, "fields": {"state_transition": 982, "node_type": "N", "subcondition": null, "parent": 4201}}, {"model": "template.logicnode", "pk": 4199, "fields": {"state_transition": 982, "node_type": "S", "subcondition": 23, "parent": 4198}}, {"model": "template.logicnode", "pk": 4200, "fields": {"state_transition": 982, "node_type": "S", "subcondition": 12, "parent": 4201}}, {"model": "template.logicnode", "pk": 4201, "fields": {"state_transition": 982, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4202, "fields": {"state_transition": 983, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4203, "fields": {"state_transition": 983, "node_type": "S", "subcondition": 23, "parent": 4202}}, {"model": "template.logicnode", "pk": 4204, "fields": {"state_transition": 984, "node_type": "S", "subcondition": 23, "parent": 4208}}, {"model": "template.logicnode", "pk": 4205, "fields": {"state_transition": 984, "node_type": "S", "subcondition": 7, "parent": 4208}}, {"model": "template.logicnode", "pk": 4206, "fields": {"state_transition": 984, "node_type": "S", "subcondition": 2, "parent": 4208}}, {"model": "template.logicnode", "pk": 4207, "fields": {"state_transition": 984, "node_type": "S", "subcondition": 12, "parent": 4208}}, {"model": "template.logicnode", "pk": 4208, "fields": {"state_transition": 984, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4209, "fields": {"state_transition": 985, "node_type": "S", "subcondition": 23, "parent": 4212}}, {"model": "template.logicnode", "pk": 4210, "fields": {"state_transition": 985, "node_type": "S", "subcondition": 7, "parent": 4212}}, {"model": "template.logicnode", "pk": 4211, "fields": {"state_transition": 985, "node_type": "S", "subcondition": 2, "parent": 4212}}, {"model": "template.logicnode", "pk": 4212, "fields": {"state_transition": 985, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4213, "fields": {"state_transition": 986, "node_type": "S", "subcondition": 23, "parent": 4216}}, {"model": "template.logicnode", "pk": 4214, "fields": {"state_transition": 986, "node_type": "S", "subcondition": 7, "parent": 4216}}, {"model": "template.logicnode", "pk": 4215, "fields": {"state_transition": 986, "node_type": "S", "subcondition": 12, "parent": 4216}}, {"model": "template.logicnode", "pk": 4216, "fields": {"state_transition": 986, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4217, "fields": {"state_transition": 987, "node_type": "S", "subcondition": 23, "parent": 4219}}, {"model": "template.logicnode", "pk": 4218, "fields": {"state_transition": 987, "node_type": "S", "subcondition": 7, "parent": 4219}}, {"model": "template.logicnode", "pk": 4219, "fields": {"state_transition": 987, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4220, "fields": {"state_transition": 988, "node_type": "S", "subcondition": 23, "parent": 4223}}, {"model": "template.logicnode", "pk": 4221, "fields": {"state_transition": 988, "node_type": "S", "subcondition": 2, "parent": 4223}}, {"model": "template.logicnode", "pk": 4222, "fields": {"state_transition": 988, "node_type": "S", "subcondition": 12, "parent": 4223}}, {"model": "template.logicnode", "pk": 4223, "fields": {"state_transition": 988, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4224, "fields": {"state_transition": 989, "node_type": "S", "subcondition": 23, "parent": 4226}}, {"model": "template.logicnode", "pk": 4225, "fields": {"state_transition": 989, "node_type": "S", "subcondition": 2, "parent": 4226}}, {"model": "template.logicnode", "pk": 4226, "fields": {"state_transition": 989, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4227, "fields": {"state_transition": 990, "node_type": "S", "subcondition": 23, "parent": 4229}}, {"model": "template.logicnode", "pk": 4228, "fields": {"state_transition": 990, "node_type": "S", "subcondition": 12, "parent": 4229}}, {"model": "template.logicnode", "pk": 4229, "fields": {"state_transition": 990, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4230, "fields": {"state_transition": 991, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4231, "fields": {"state_transition": 992, "node_type": "N", "subcondition": null, "parent": 4237}}, {"model": "template.logicnode", "pk": 4232, "fields": {"state_transition": 992, "node_type": "S", "subcondition": 23, "parent": 4231}}, {"model": "template.logicnode", "pk": 4233, "fields": {"state_transition": 992, "node_type": "S", "subcondition": 11, "parent": 4237}}, {"model": "template.logicnode", "pk": 4234, "fields": {"state_transition": 992, "node_type": "S", "subcondition": 7, "parent": 4237}}, {"model": "template.logicnode", "pk": 4235, "fields": {"state_transition": 992, "node_type": "S", "subcondition": 2, "parent": 4237}}, {"model": "template.logicnode", "pk": 4236, "fields": {"state_transition": 992, "node_type": "S", "subcondition": 12, "parent": 4237}}, {"model": "template.logicnode", "pk": 4237, "fields": {"state_transition": 992, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4238, "fields": {"state_transition": 993, "node_type": "N", "subcondition": null, "parent": 4243}}, {"model": "template.logicnode", "pk": 4239, "fields": {"state_transition": 993, "node_type": "S", "subcondition": 23, "parent": 4238}}, {"model": "template.logicnode", "pk": 4240, "fields": {"state_transition": 993, "node_type": "S", "subcondition": 11, "parent": 4243}}, {"model": "template.logicnode", "pk": 4241, "fields": {"state_transition": 993, "node_type": "S", "subcondition": 7, "parent": 4243}}, {"model": "template.logicnode", "pk": 4242, "fields": {"state_transition": 993, "node_type": "S", "subcondition": 2, "parent": 4243}}, {"model": "template.logicnode", "pk": 4243, "fields": {"state_transition": 993, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4244, "fields": {"state_transition": 994, "node_type": "N", "subcondition": null, "parent": 4249}}, {"model": "template.logicnode", "pk": 4245, "fields": {"state_transition": 994, "node_type": "S", "subcondition": 23, "parent": 4244}}, {"model": "template.logicnode", "pk": 4246, "fields": {"state_transition": 994, "node_type": "S", "subcondition": 11, "parent": 4249}}, {"model": "template.logicnode", "pk": 4247, "fields": {"state_transition": 994, "node_type": "S", "subcondition": 7, "parent": 4249}}, {"model": "template.logicnode", "pk": 4248, "fields": {"state_transition": 994, "node_type": "S", "subcondition": 12, "parent": 4249}}, {"model": "template.logicnode", "pk": 4249, "fields": {"state_transition": 994, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4250, "fields": {"state_transition": 995, "node_type": "N", "subcondition": null, "parent": 4254}}, {"model": "template.logicnode", "pk": 4251, "fields": {"state_transition": 995, "node_type": "S", "subcondition": 23, "parent": 4250}}, {"model": "template.logicnode", "pk": 4252, "fields": {"state_transition": 995, "node_type": "S", "subcondition": 11, "parent": 4254}}, {"model": "template.logicnode", "pk": 4253, "fields": {"state_transition": 995, "node_type": "S", "subcondition": 7, "parent": 4254}}, {"model": "template.logicnode", "pk": 4254, "fields": {"state_transition": 995, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4255, "fields": {"state_transition": 996, "node_type": "N", "subcondition": null, "parent": 4260}}, {"model": "template.logicnode", "pk": 4256, "fields": {"state_transition": 996, "node_type": "S", "subcondition": 23, "parent": 4255}}, {"model": "template.logicnode", "pk": 4257, "fields": {"state_transition": 996, "node_type": "S", "subcondition": 11, "parent": 4260}}, {"model": "template.logicnode", "pk": 4258, "fields": {"state_transition": 996, "node_type": "S", "subcondition": 2, "parent": 4260}}, {"model": "template.logicnode", "pk": 4259, "fields": {"state_transition": 996, "node_type": "S", "subcondition": 12, "parent": 4260}}, {"model": "template.logicnode", "pk": 4260, "fields": {"state_transition": 996, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4261, "fields": {"state_transition": 997, "node_type": "N", "subcondition": null, "parent": 4265}}, {"model": "template.logicnode", "pk": 4262, "fields": {"state_transition": 997, "node_type": "S", "subcondition": 23, "parent": 4261}}, {"model": "template.logicnode", "pk": 4263, "fields": {"state_transition": 997, "node_type": "S", "subcondition": 11, "parent": 4265}}, {"model": "template.logicnode", "pk": 4264, "fields": {"state_transition": 997, "node_type": "S", "subcondition": 2, "parent": 4265}}, {"model": "template.logicnode", "pk": 4265, "fields": {"state_transition": 997, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4266, "fields": {"state_transition": 998, "node_type": "N", "subcondition": null, "parent": 4270}}, {"model": "template.logicnode", "pk": 4267, "fields": {"state_transition": 998, "node_type": "S", "subcondition": 23, "parent": 4266}}, {"model": "template.logicnode", "pk": 4268, "fields": {"state_transition": 998, "node_type": "S", "subcondition": 11, "parent": 4270}}, {"model": "template.logicnode", "pk": 4269, "fields": {"state_transition": 998, "node_type": "S", "subcondition": 12, "parent": 4270}}, {"model": "template.logicnode", "pk": 4270, "fields": {"state_transition": 998, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4271, "fields": {"state_transition": 999, "node_type": "N", "subcondition": null, "parent": 4274}}, {"model": "template.logicnode", "pk": 4272, "fields": {"state_transition": 999, "node_type": "S", "subcondition": 23, "parent": 4271}}, {"model": "template.logicnode", "pk": 4273, "fields": {"state_transition": 999, "node_type": "S", "subcondition": 11, "parent": 4274}}, {"model": "template.logicnode", "pk": 4274, "fields": {"state_transition": 999, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4275, "fields": {"state_transition": 1000, "node_type": "N", "subcondition": null, "parent": 4280}}, {"model": "template.logicnode", "pk": 4276, "fields": {"state_transition": 1000, "node_type": "S", "subcondition": 23, "parent": 4275}}, {"model": "template.logicnode", "pk": 4277, "fields": {"state_transition": 1000, "node_type": "S", "subcondition": 7, "parent": 4280}}, {"model": "template.logicnode", "pk": 4278, "fields": {"state_transition": 1000, "node_type": "S", "subcondition": 2, "parent": 4280}}, {"model": "template.logicnode", "pk": 4279, "fields": {"state_transition": 1000, "node_type": "S", "subcondition": 12, "parent": 4280}}, {"model": "template.logicnode", "pk": 4280, "fields": {"state_transition": 1000, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4281, "fields": {"state_transition": 1001, "node_type": "N", "subcondition": null, "parent": 4285}}, {"model": "template.logicnode", "pk": 4282, "fields": {"state_transition": 1001, "node_type": "S", "subcondition": 23, "parent": 4281}}, {"model": "template.logicnode", "pk": 4283, "fields": {"state_transition": 1001, "node_type": "S", "subcondition": 7, "parent": 4285}}, {"model": "template.logicnode", "pk": 4284, "fields": {"state_transition": 1001, "node_type": "S", "subcondition": 2, "parent": 4285}}, {"model": "template.logicnode", "pk": 4285, "fields": {"state_transition": 1001, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4286, "fields": {"state_transition": 1002, "node_type": "N", "subcondition": null, "parent": 4290}}, {"model": "template.logicnode", "pk": 4287, "fields": {"state_transition": 1002, "node_type": "S", "subcondition": 23, "parent": 4286}}, {"model": "template.logicnode", "pk": 4288, "fields": {"state_transition": 1002, "node_type": "S", "subcondition": 7, "parent": 4290}}, {"model": "template.logicnode", "pk": 4289, "fields": {"state_transition": 1002, "node_type": "S", "subcondition": 12, "parent": 4290}}, {"model": "template.logicnode", "pk": 4290, "fields": {"state_transition": 1002, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4291, "fields": {"state_transition": 1003, "node_type": "N", "subcondition": null, "parent": 4294}}, {"model": "template.logicnode", "pk": 4292, "fields": {"state_transition": 1003, "node_type": "S", "subcondition": 23, "parent": 4291}}, {"model": "template.logicnode", "pk": 4293, "fields": {"state_transition": 1003, "node_type": "S", "subcondition": 7, "parent": 4294}}, {"model": "template.logicnode", "pk": 4294, "fields": {"state_transition": 1003, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4295, "fields": {"state_transition": 1004, "node_type": "N", "subcondition": null, "parent": 4299}}, {"model": "template.logicnode", "pk": 4296, "fields": {"state_transition": 1004, "node_type": "S", "subcondition": 23, "parent": 4295}}, {"model": "template.logicnode", "pk": 4297, "fields": {"state_transition": 1004, "node_type": "S", "subcondition": 2, "parent": 4299}}, {"model": "template.logicnode", "pk": 4298, "fields": {"state_transition": 1004, "node_type": "S", "subcondition": 12, "parent": 4299}}, {"model": "template.logicnode", "pk": 4299, "fields": {"state_transition": 1004, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4300, "fields": {"state_transition": 1005, "node_type": "N", "subcondition": null, "parent": 4303}}, {"model": "template.logicnode", "pk": 4301, "fields": {"state_transition": 1005, "node_type": "S", "subcondition": 23, "parent": 4300}}, {"model": "template.logicnode", "pk": 4302, "fields": {"state_transition": 1005, "node_type": "S", "subcondition": 2, "parent": 4303}}, {"model": "template.logicnode", "pk": 4303, "fields": {"state_transition": 1005, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4304, "fields": {"state_transition": 1006, "node_type": "N", "subcondition": null, "parent": 4307}}, {"model": "template.logicnode", "pk": 4305, "fields": {"state_transition": 1006, "node_type": "S", "subcondition": 23, "parent": 4304}}, {"model": "template.logicnode", "pk": 4306, "fields": {"state_transition": 1006, "node_type": "S", "subcondition": 12, "parent": 4307}}, {"model": "template.logicnode", "pk": 4307, "fields": {"state_transition": 1006, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4308, "fields": {"state_transition": 1007, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4309, "fields": {"state_transition": 1007, "node_type": "S", "subcondition": 23, "parent": 4308}}, {"model": "template.logicnode", "pk": 4310, "fields": {"state_transition": 1008, "node_type": "S", "subcondition": 23, "parent": 4314}}, {"model": "template.logicnode", "pk": 4311, "fields": {"state_transition": 1008, "node_type": "S", "subcondition": 7, "parent": 4314}}, {"model": "template.logicnode", "pk": 4312, "fields": {"state_transition": 1008, "node_type": "S", "subcondition": 2, "parent": 4314}}, {"model": "template.logicnode", "pk": 4313, "fields": {"state_transition": 1008, "node_type": "S", "subcondition": 12, "parent": 4314}}, {"model": "template.logicnode", "pk": 4314, "fields": {"state_transition": 1008, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4315, "fields": {"state_transition": 1009, "node_type": "S", "subcondition": 23, "parent": 4318}}, {"model": "template.logicnode", "pk": 4316, "fields": {"state_transition": 1009, "node_type": "S", "subcondition": 7, "parent": 4318}}, {"model": "template.logicnode", "pk": 4317, "fields": {"state_transition": 1009, "node_type": "S", "subcondition": 2, "parent": 4318}}, {"model": "template.logicnode", "pk": 4318, "fields": {"state_transition": 1009, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4319, "fields": {"state_transition": 1010, "node_type": "S", "subcondition": 23, "parent": 4322}}, {"model": "template.logicnode", "pk": 4320, "fields": {"state_transition": 1010, "node_type": "S", "subcondition": 7, "parent": 4322}}, {"model": "template.logicnode", "pk": 4321, "fields": {"state_transition": 1010, "node_type": "S", "subcondition": 12, "parent": 4322}}, {"model": "template.logicnode", "pk": 4322, "fields": {"state_transition": 1010, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4323, "fields": {"state_transition": 1011, "node_type": "S", "subcondition": 23, "parent": 4325}}, {"model": "template.logicnode", "pk": 4324, "fields": {"state_transition": 1011, "node_type": "S", "subcondition": 7, "parent": 4325}}, {"model": "template.logicnode", "pk": 4325, "fields": {"state_transition": 1011, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4326, "fields": {"state_transition": 1012, "node_type": "S", "subcondition": 23, "parent": 4329}}, {"model": "template.logicnode", "pk": 4327, "fields": {"state_transition": 1012, "node_type": "S", "subcondition": 2, "parent": 4329}}, {"model": "template.logicnode", "pk": 4328, "fields": {"state_transition": 1012, "node_type": "S", "subcondition": 12, "parent": 4329}}, {"model": "template.logicnode", "pk": 4329, "fields": {"state_transition": 1012, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4330, "fields": {"state_transition": 1013, "node_type": "S", "subcondition": 23, "parent": 4332}}, {"model": "template.logicnode", "pk": 4331, "fields": {"state_transition": 1013, "node_type": "S", "subcondition": 2, "parent": 4332}}, {"model": "template.logicnode", "pk": 4332, "fields": {"state_transition": 1013, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4333, "fields": {"state_transition": 1014, "node_type": "S", "subcondition": 23, "parent": 4335}}, {"model": "template.logicnode", "pk": 4334, "fields": {"state_transition": 1014, "node_type": "S", "subcondition": 12, "parent": 4335}}, {"model": "template.logicnode", "pk": 4335, "fields": {"state_transition": 1014, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4336, "fields": {"state_transition": 1015, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4337, "fields": {"state_transition": 1016, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4338, "fields": {"state_transition": 1017, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4339, "fields": {"state_transition": 1018, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4340, "fields": {"state_transition": 1019, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4341, "fields": {"state_transition": 1020, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4342, "fields": {"state_transition": 1021, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4343, "fields": {"state_transition": 1022, "node_type": "N", "subcondition": null, "parent": 4348}}, {"model": "template.logicnode", "pk": 4344, "fields": {"state_transition": 1022, "node_type": "S", "subcondition": 23, "parent": 4343}}, {"model": "template.logicnode", "pk": 4345, "fields": {"state_transition": 1022, "node_type": "S", "subcondition": 11, "parent": 4348}}, {"model": "template.logicnode", "pk": 4346, "fields": {"state_transition": 1022, "node_type": "S", "subcondition": 13, "parent": 4348}}, {"model": "template.logicnode", "pk": 4347, "fields": {"state_transition": 1022, "node_type": "S", "subcondition": 8, "parent": 4348}}, {"model": "template.logicnode", "pk": 4348, "fields": {"state_transition": 1022, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4349, "fields": {"state_transition": 1023, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4350, "fields": {"state_transition": 1024, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4351, "fields": {"state_transition": 1025, "node_type": "N", "subcondition": null, "parent": 4355}}, {"model": "template.logicnode", "pk": 4352, "fields": {"state_transition": 1025, "node_type": "S", "subcondition": 23, "parent": 4351}}, {"model": "template.logicnode", "pk": 4353, "fields": {"state_transition": 1025, "node_type": "S", "subcondition": 11, "parent": 4355}}, {"model": "template.logicnode", "pk": 4354, "fields": {"state_transition": 1025, "node_type": "S", "subcondition": 13, "parent": 4355}}, {"model": "template.logicnode", "pk": 4355, "fields": {"state_transition": 1025, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4356, "fields": {"state_transition": 1026, "node_type": "N", "subcondition": null, "parent": 4360}}, {"model": "template.logicnode", "pk": 4357, "fields": {"state_transition": 1026, "node_type": "S", "subcondition": 23, "parent": 4356}}, {"model": "template.logicnode", "pk": 4358, "fields": {"state_transition": 1026, "node_type": "S", "subcondition": 11, "parent": 4360}}, {"model": "template.logicnode", "pk": 4359, "fields": {"state_transition": 1026, "node_type": "S", "subcondition": 8, "parent": 4360}}, {"model": "template.logicnode", "pk": 4360, "fields": {"state_transition": 1026, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4361, "fields": {"state_transition": 1027, "node_type": "N", "subcondition": null, "parent": 4364}}, {"model": "template.logicnode", "pk": 4362, "fields": {"state_transition": 1027, "node_type": "S", "subcondition": 23, "parent": 4361}}, {"model": "template.logicnode", "pk": 4363, "fields": {"state_transition": 1027, "node_type": "S", "subcondition": 11, "parent": 4364}}, {"model": "template.logicnode", "pk": 4364, "fields": {"state_transition": 1027, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4365, "fields": {"state_transition": 1028, "node_type": "N", "subcondition": null, "parent": 4369}}, {"model": "template.logicnode", "pk": 4366, "fields": {"state_transition": 1028, "node_type": "S", "subcondition": 23, "parent": 4365}}, {"model": "template.logicnode", "pk": 4367, "fields": {"state_transition": 1028, "node_type": "S", "subcondition": 13, "parent": 4369}}, {"model": "template.logicnode", "pk": 4368, "fields": {"state_transition": 1028, "node_type": "S", "subcondition": 8, "parent": 4369}}, {"model": "template.logicnode", "pk": 4369, "fields": {"state_transition": 1028, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4370, "fields": {"state_transition": 1029, "node_type": "N", "subcondition": null, "parent": 4373}}, {"model": "template.logicnode", "pk": 4371, "fields": {"state_transition": 1029, "node_type": "S", "subcondition": 23, "parent": 4370}}, {"model": "template.logicnode", "pk": 4372, "fields": {"state_transition": 1029, "node_type": "S", "subcondition": 13, "parent": 4373}}, {"model": "template.logicnode", "pk": 4373, "fields": {"state_transition": 1029, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4374, "fields": {"state_transition": 1030, "node_type": "N", "subcondition": null, "parent": 4377}}, {"model": "template.logicnode", "pk": 4375, "fields": {"state_transition": 1030, "node_type": "S", "subcondition": 23, "parent": 4374}}, {"model": "template.logicnode", "pk": 4376, "fields": {"state_transition": 1030, "node_type": "S", "subcondition": 8, "parent": 4377}}, {"model": "template.logicnode", "pk": 4377, "fields": {"state_transition": 1030, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4378, "fields": {"state_transition": 1031, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4379, "fields": {"state_transition": 1031, "node_type": "S", "subcondition": 23, "parent": 4378}}, {"model": "template.logicnode", "pk": 4380, "fields": {"state_transition": 1032, "node_type": "S", "subcondition": 23, "parent": 4382}}, {"model": "template.logicnode", "pk": 4381, "fields": {"state_transition": 1032, "node_type": "S", "subcondition": 8, "parent": 4382}}, {"model": "template.logicnode", "pk": 4382, "fields": {"state_transition": 1032, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4383, "fields": {"state_transition": 1033, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4384, "fields": {"state_transition": 1034, "node_type": "N", "subcondition": null, "parent": 4389}}, {"model": "template.logicnode", "pk": 4385, "fields": {"state_transition": 1034, "node_type": "S", "subcondition": 23, "parent": 4384}}, {"model": "template.logicnode", "pk": 4386, "fields": {"state_transition": 1034, "node_type": "S", "subcondition": 11, "parent": 4389}}, {"model": "template.logicnode", "pk": 4387, "fields": {"state_transition": 1034, "node_type": "S", "subcondition": 13, "parent": 4389}}, {"model": "template.logicnode", "pk": 4388, "fields": {"state_transition": 1034, "node_type": "S", "subcondition": 8, "parent": 4389}}, {"model": "template.logicnode", "pk": 4389, "fields": {"state_transition": 1034, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4390, "fields": {"state_transition": 1035, "node_type": "N", "subcondition": null, "parent": 4394}}, {"model": "template.logicnode", "pk": 4391, "fields": {"state_transition": 1035, "node_type": "S", "subcondition": 23, "parent": 4390}}, {"model": "template.logicnode", "pk": 4392, "fields": {"state_transition": 1035, "node_type": "S", "subcondition": 11, "parent": 4394}}, {"model": "template.logicnode", "pk": 4393, "fields": {"state_transition": 1035, "node_type": "S", "subcondition": 13, "parent": 4394}}, {"model": "template.logicnode", "pk": 4394, "fields": {"state_transition": 1035, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4395, "fields": {"state_transition": 1036, "node_type": "N", "subcondition": null, "parent": 4399}}, {"model": "template.logicnode", "pk": 4396, "fields": {"state_transition": 1036, "node_type": "S", "subcondition": 23, "parent": 4395}}, {"model": "template.logicnode", "pk": 4397, "fields": {"state_transition": 1036, "node_type": "S", "subcondition": 11, "parent": 4399}}, {"model": "template.logicnode", "pk": 4398, "fields": {"state_transition": 1036, "node_type": "S", "subcondition": 8, "parent": 4399}}, {"model": "template.logicnode", "pk": 4399, "fields": {"state_transition": 1036, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4400, "fields": {"state_transition": 1037, "node_type": "N", "subcondition": null, "parent": 4403}}, {"model": "template.logicnode", "pk": 4401, "fields": {"state_transition": 1037, "node_type": "S", "subcondition": 23, "parent": 4400}}, {"model": "template.logicnode", "pk": 4402, "fields": {"state_transition": 1037, "node_type": "S", "subcondition": 11, "parent": 4403}}, {"model": "template.logicnode", "pk": 4403, "fields": {"state_transition": 1037, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4404, "fields": {"state_transition": 1038, "node_type": "N", "subcondition": null, "parent": 4408}}, {"model": "template.logicnode", "pk": 4405, "fields": {"state_transition": 1038, "node_type": "S", "subcondition": 23, "parent": 4404}}, {"model": "template.logicnode", "pk": 4406, "fields": {"state_transition": 1038, "node_type": "S", "subcondition": 13, "parent": 4408}}, {"model": "template.logicnode", "pk": 4407, "fields": {"state_transition": 1038, "node_type": "S", "subcondition": 8, "parent": 4408}}, {"model": "template.logicnode", "pk": 4408, "fields": {"state_transition": 1038, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4409, "fields": {"state_transition": 1039, "node_type": "N", "subcondition": null, "parent": 4412}}, {"model": "template.logicnode", "pk": 4410, "fields": {"state_transition": 1039, "node_type": "S", "subcondition": 23, "parent": 4409}}, {"model": "template.logicnode", "pk": 4411, "fields": {"state_transition": 1039, "node_type": "S", "subcondition": 13, "parent": 4412}}, {"model": "template.logicnode", "pk": 4412, "fields": {"state_transition": 1039, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4413, "fields": {"state_transition": 1040, "node_type": "N", "subcondition": null, "parent": 4416}}, {"model": "template.logicnode", "pk": 4414, "fields": {"state_transition": 1040, "node_type": "S", "subcondition": 23, "parent": 4413}}, {"model": "template.logicnode", "pk": 4415, "fields": {"state_transition": 1040, "node_type": "S", "subcondition": 8, "parent": 4416}}, {"model": "template.logicnode", "pk": 4416, "fields": {"state_transition": 1040, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4417, "fields": {"state_transition": 1041, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4418, "fields": {"state_transition": 1041, "node_type": "S", "subcondition": 23, "parent": 4417}}, {"model": "template.logicnode", "pk": 4419, "fields": {"state_transition": 1042, "node_type": "S", "subcondition": 23, "parent": 4421}}, {"model": "template.logicnode", "pk": 4420, "fields": {"state_transition": 1042, "node_type": "S", "subcondition": 8, "parent": 4421}}, {"model": "template.logicnode", "pk": 4421, "fields": {"state_transition": 1042, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4422, "fields": {"state_transition": 1043, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4423, "fields": {"state_transition": 1044, "node_type": "N", "subcondition": null, "parent": 4428}}, {"model": "template.logicnode", "pk": 4424, "fields": {"state_transition": 1044, "node_type": "S", "subcondition": 23, "parent": 4423}}, {"model": "template.logicnode", "pk": 4425, "fields": {"state_transition": 1044, "node_type": "S", "subcondition": 11, "parent": 4428}}, {"model": "template.logicnode", "pk": 4426, "fields": {"state_transition": 1044, "node_type": "S", "subcondition": 13, "parent": 4428}}, {"model": "template.logicnode", "pk": 4427, "fields": {"state_transition": 1044, "node_type": "S", "subcondition": 8, "parent": 4428}}, {"model": "template.logicnode", "pk": 4428, "fields": {"state_transition": 1044, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4429, "fields": {"state_transition": 1045, "node_type": "N", "subcondition": null, "parent": 4433}}, {"model": "template.logicnode", "pk": 4430, "fields": {"state_transition": 1045, "node_type": "S", "subcondition": 23, "parent": 4429}}, {"model": "template.logicnode", "pk": 4431, "fields": {"state_transition": 1045, "node_type": "S", "subcondition": 11, "parent": 4433}}, {"model": "template.logicnode", "pk": 4432, "fields": {"state_transition": 1045, "node_type": "S", "subcondition": 13, "parent": 4433}}, {"model": "template.logicnode", "pk": 4433, "fields": {"state_transition": 1045, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4434, "fields": {"state_transition": 1046, "node_type": "N", "subcondition": null, "parent": 4438}}, {"model": "template.logicnode", "pk": 4435, "fields": {"state_transition": 1046, "node_type": "S", "subcondition": 23, "parent": 4434}}, {"model": "template.logicnode", "pk": 4436, "fields": {"state_transition": 1046, "node_type": "S", "subcondition": 11, "parent": 4438}}, {"model": "template.logicnode", "pk": 4437, "fields": {"state_transition": 1046, "node_type": "S", "subcondition": 8, "parent": 4438}}, {"model": "template.logicnode", "pk": 4438, "fields": {"state_transition": 1046, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4439, "fields": {"state_transition": 1047, "node_type": "N", "subcondition": null, "parent": 4442}}, {"model": "template.logicnode", "pk": 4440, "fields": {"state_transition": 1047, "node_type": "S", "subcondition": 23, "parent": 4439}}, {"model": "template.logicnode", "pk": 4441, "fields": {"state_transition": 1047, "node_type": "S", "subcondition": 11, "parent": 4442}}, {"model": "template.logicnode", "pk": 4442, "fields": {"state_transition": 1047, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4443, "fields": {"state_transition": 1048, "node_type": "N", "subcondition": null, "parent": 4447}}, {"model": "template.logicnode", "pk": 4444, "fields": {"state_transition": 1048, "node_type": "S", "subcondition": 23, "parent": 4443}}, {"model": "template.logicnode", "pk": 4445, "fields": {"state_transition": 1048, "node_type": "S", "subcondition": 13, "parent": 4447}}, {"model": "template.logicnode", "pk": 4446, "fields": {"state_transition": 1048, "node_type": "S", "subcondition": 8, "parent": 4447}}, {"model": "template.logicnode", "pk": 4447, "fields": {"state_transition": 1048, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4448, "fields": {"state_transition": 1049, "node_type": "N", "subcondition": null, "parent": 4451}}, {"model": "template.logicnode", "pk": 4449, "fields": {"state_transition": 1049, "node_type": "S", "subcondition": 23, "parent": 4448}}, {"model": "template.logicnode", "pk": 4450, "fields": {"state_transition": 1049, "node_type": "S", "subcondition": 13, "parent": 4451}}, {"model": "template.logicnode", "pk": 4451, "fields": {"state_transition": 1049, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4452, "fields": {"state_transition": 1050, "node_type": "N", "subcondition": null, "parent": 4455}}, {"model": "template.logicnode", "pk": 4453, "fields": {"state_transition": 1050, "node_type": "S", "subcondition": 23, "parent": 4452}}, {"model": "template.logicnode", "pk": 4454, "fields": {"state_transition": 1050, "node_type": "S", "subcondition": 8, "parent": 4455}}, {"model": "template.logicnode", "pk": 4455, "fields": {"state_transition": 1050, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4456, "fields": {"state_transition": 1051, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4457, "fields": {"state_transition": 1051, "node_type": "S", "subcondition": 23, "parent": 4456}}, {"model": "template.logicnode", "pk": 4458, "fields": {"state_transition": 1052, "node_type": "S", "subcondition": 23, "parent": 4460}}, {"model": "template.logicnode", "pk": 4459, "fields": {"state_transition": 1052, "node_type": "S", "subcondition": 8, "parent": 4460}}, {"model": "template.logicnode", "pk": 4460, "fields": {"state_transition": 1052, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4461, "fields": {"state_transition": 1053, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4462, "fields": {"state_transition": 1054, "node_type": "N", "subcondition": null, "parent": 4467}}, {"model": "template.logicnode", "pk": 4463, "fields": {"state_transition": 1054, "node_type": "S", "subcondition": 23, "parent": 4462}}, {"model": "template.logicnode", "pk": 4464, "fields": {"state_transition": 1054, "node_type": "S", "subcondition": 11, "parent": 4467}}, {"model": "template.logicnode", "pk": 4465, "fields": {"state_transition": 1054, "node_type": "S", "subcondition": 13, "parent": 4467}}, {"model": "template.logicnode", "pk": 4466, "fields": {"state_transition": 1054, "node_type": "S", "subcondition": 8, "parent": 4467}}, {"model": "template.logicnode", "pk": 4467, "fields": {"state_transition": 1054, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4468, "fields": {"state_transition": 1055, "node_type": "N", "subcondition": null, "parent": 4472}}, {"model": "template.logicnode", "pk": 4469, "fields": {"state_transition": 1055, "node_type": "S", "subcondition": 23, "parent": 4468}}, {"model": "template.logicnode", "pk": 4470, "fields": {"state_transition": 1055, "node_type": "S", "subcondition": 11, "parent": 4472}}, {"model": "template.logicnode", "pk": 4471, "fields": {"state_transition": 1055, "node_type": "S", "subcondition": 13, "parent": 4472}}, {"model": "template.logicnode", "pk": 4472, "fields": {"state_transition": 1055, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4473, "fields": {"state_transition": 1056, "node_type": "N", "subcondition": null, "parent": 4477}}, {"model": "template.logicnode", "pk": 4474, "fields": {"state_transition": 1056, "node_type": "S", "subcondition": 23, "parent": 4473}}, {"model": "template.logicnode", "pk": 4475, "fields": {"state_transition": 1056, "node_type": "S", "subcondition": 11, "parent": 4477}}, {"model": "template.logicnode", "pk": 4476, "fields": {"state_transition": 1056, "node_type": "S", "subcondition": 8, "parent": 4477}}, {"model": "template.logicnode", "pk": 4477, "fields": {"state_transition": 1056, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4478, "fields": {"state_transition": 1057, "node_type": "N", "subcondition": null, "parent": 4481}}, {"model": "template.logicnode", "pk": 4479, "fields": {"state_transition": 1057, "node_type": "S", "subcondition": 23, "parent": 4478}}, {"model": "template.logicnode", "pk": 4480, "fields": {"state_transition": 1057, "node_type": "S", "subcondition": 11, "parent": 4481}}, {"model": "template.logicnode", "pk": 4481, "fields": {"state_transition": 1057, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4482, "fields": {"state_transition": 1058, "node_type": "N", "subcondition": null, "parent": 4486}}, {"model": "template.logicnode", "pk": 4483, "fields": {"state_transition": 1058, "node_type": "S", "subcondition": 23, "parent": 4482}}, {"model": "template.logicnode", "pk": 4484, "fields": {"state_transition": 1058, "node_type": "S", "subcondition": 13, "parent": 4486}}, {"model": "template.logicnode", "pk": 4485, "fields": {"state_transition": 1058, "node_type": "S", "subcondition": 8, "parent": 4486}}, {"model": "template.logicnode", "pk": 4486, "fields": {"state_transition": 1058, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4487, "fields": {"state_transition": 1059, "node_type": "N", "subcondition": null, "parent": 4490}}, {"model": "template.logicnode", "pk": 4488, "fields": {"state_transition": 1059, "node_type": "S", "subcondition": 23, "parent": 4487}}, {"model": "template.logicnode", "pk": 4489, "fields": {"state_transition": 1059, "node_type": "S", "subcondition": 13, "parent": 4490}}, {"model": "template.logicnode", "pk": 4490, "fields": {"state_transition": 1059, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4491, "fields": {"state_transition": 1060, "node_type": "N", "subcondition": null, "parent": 4494}}, {"model": "template.logicnode", "pk": 4492, "fields": {"state_transition": 1060, "node_type": "S", "subcondition": 23, "parent": 4491}}, {"model": "template.logicnode", "pk": 4493, "fields": {"state_transition": 1060, "node_type": "S", "subcondition": 8, "parent": 4494}}, {"model": "template.logicnode", "pk": 4494, "fields": {"state_transition": 1060, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4495, "fields": {"state_transition": 1061, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4496, "fields": {"state_transition": 1061, "node_type": "S", "subcondition": 23, "parent": 4495}}, {"model": "template.logicnode", "pk": 4497, "fields": {"state_transition": 1062, "node_type": "S", "subcondition": 23, "parent": 4499}}, {"model": "template.logicnode", "pk": 4498, "fields": {"state_transition": 1062, "node_type": "S", "subcondition": 8, "parent": 4499}}, {"model": "template.logicnode", "pk": 4499, "fields": {"state_transition": 1062, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4500, "fields": {"state_transition": 1063, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4501, "fields": {"state_transition": 1064, "node_type": "N", "subcondition": null, "parent": 4506}}, {"model": "template.logicnode", "pk": 4502, "fields": {"state_transition": 1064, "node_type": "S", "subcondition": 23, "parent": 4501}}, {"model": "template.logicnode", "pk": 4503, "fields": {"state_transition": 1064, "node_type": "S", "subcondition": 11, "parent": 4506}}, {"model": "template.logicnode", "pk": 4504, "fields": {"state_transition": 1064, "node_type": "S", "subcondition": 13, "parent": 4506}}, {"model": "template.logicnode", "pk": 4505, "fields": {"state_transition": 1064, "node_type": "S", "subcondition": 8, "parent": 4506}}, {"model": "template.logicnode", "pk": 4506, "fields": {"state_transition": 1064, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4507, "fields": {"state_transition": 1065, "node_type": "N", "subcondition": null, "parent": 4511}}, {"model": "template.logicnode", "pk": 4508, "fields": {"state_transition": 1065, "node_type": "S", "subcondition": 23, "parent": 4507}}, {"model": "template.logicnode", "pk": 4509, "fields": {"state_transition": 1065, "node_type": "S", "subcondition": 11, "parent": 4511}}, {"model": "template.logicnode", "pk": 4510, "fields": {"state_transition": 1065, "node_type": "S", "subcondition": 13, "parent": 4511}}, {"model": "template.logicnode", "pk": 4511, "fields": {"state_transition": 1065, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4512, "fields": {"state_transition": 1066, "node_type": "N", "subcondition": null, "parent": 4516}}, {"model": "template.logicnode", "pk": 4513, "fields": {"state_transition": 1066, "node_type": "S", "subcondition": 23, "parent": 4512}}, {"model": "template.logicnode", "pk": 4514, "fields": {"state_transition": 1066, "node_type": "S", "subcondition": 11, "parent": 4516}}, {"model": "template.logicnode", "pk": 4515, "fields": {"state_transition": 1066, "node_type": "S", "subcondition": 8, "parent": 4516}}, {"model": "template.logicnode", "pk": 4516, "fields": {"state_transition": 1066, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4517, "fields": {"state_transition": 1067, "node_type": "N", "subcondition": null, "parent": 4520}}, {"model": "template.logicnode", "pk": 4518, "fields": {"state_transition": 1067, "node_type": "S", "subcondition": 23, "parent": 4517}}, {"model": "template.logicnode", "pk": 4519, "fields": {"state_transition": 1067, "node_type": "S", "subcondition": 11, "parent": 4520}}, {"model": "template.logicnode", "pk": 4520, "fields": {"state_transition": 1067, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4521, "fields": {"state_transition": 1068, "node_type": "N", "subcondition": null, "parent": 4525}}, {"model": "template.logicnode", "pk": 4522, "fields": {"state_transition": 1068, "node_type": "S", "subcondition": 23, "parent": 4521}}, {"model": "template.logicnode", "pk": 4523, "fields": {"state_transition": 1068, "node_type": "S", "subcondition": 13, "parent": 4525}}, {"model": "template.logicnode", "pk": 4524, "fields": {"state_transition": 1068, "node_type": "S", "subcondition": 8, "parent": 4525}}, {"model": "template.logicnode", "pk": 4525, "fields": {"state_transition": 1068, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4526, "fields": {"state_transition": 1069, "node_type": "N", "subcondition": null, "parent": 4529}}, {"model": "template.logicnode", "pk": 4527, "fields": {"state_transition": 1069, "node_type": "S", "subcondition": 23, "parent": 4526}}, {"model": "template.logicnode", "pk": 4528, "fields": {"state_transition": 1069, "node_type": "S", "subcondition": 13, "parent": 4529}}, {"model": "template.logicnode", "pk": 4529, "fields": {"state_transition": 1069, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4530, "fields": {"state_transition": 1070, "node_type": "N", "subcondition": null, "parent": 4533}}, {"model": "template.logicnode", "pk": 4531, "fields": {"state_transition": 1070, "node_type": "S", "subcondition": 23, "parent": 4530}}, {"model": "template.logicnode", "pk": 4532, "fields": {"state_transition": 1070, "node_type": "S", "subcondition": 8, "parent": 4533}}, {"model": "template.logicnode", "pk": 4533, "fields": {"state_transition": 1070, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4534, "fields": {"state_transition": 1071, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4535, "fields": {"state_transition": 1071, "node_type": "S", "subcondition": 23, "parent": 4534}}, {"model": "template.logicnode", "pk": 4536, "fields": {"state_transition": 1072, "node_type": "S", "subcondition": 23, "parent": 4538}}, {"model": "template.logicnode", "pk": 4537, "fields": {"state_transition": 1072, "node_type": "S", "subcondition": 8, "parent": 4538}}, {"model": "template.logicnode", "pk": 4538, "fields": {"state_transition": 1072, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4539, "fields": {"state_transition": 1073, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4540, "fields": {"state_transition": 1074, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4541, "fields": {"state_transition": 1075, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4542, "fields": {"state_transition": 1076, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4543, "fields": {"state_transition": 1077, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4544, "fields": {"state_transition": 1078, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4545, "fields": {"state_transition": 1079, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4546, "fields": {"state_transition": 1080, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4547, "fields": {"state_transition": 1081, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4548, "fields": {"state_transition": 1082, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4549, "fields": {"state_transition": 1082, "node_type": "S", "subcondition": 24, "parent": 4548}}, {"model": "template.logicnode", "pk": 4550, "fields": {"state_transition": 1083, "node_type": "N", "subcondition": null, "parent": 4554}}, {"model": "template.logicnode", "pk": 4551, "fields": {"state_transition": 1083, "node_type": "S", "subcondition": 23, "parent": 4550}}, {"model": "template.logicnode", "pk": 4552, "fields": {"state_transition": 1083, "node_type": "S", "subcondition": 3, "parent": 4554}}, {"model": "template.logicnode", "pk": 4553, "fields": {"state_transition": 1083, "node_type": "S", "subcondition": 19, "parent": 4554}}, {"model": "template.logicnode", "pk": 4554, "fields": {"state_transition": 1083, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4555, "fields": {"state_transition": 1084, "node_type": "N", "subcondition": null, "parent": 4559}}, {"model": "template.logicnode", "pk": 4556, "fields": {"state_transition": 1084, "node_type": "S", "subcondition": 23, "parent": 4555}}, {"model": "template.logicnode", "pk": 4557, "fields": {"state_transition": 1084, "node_type": "S", "subcondition": 3, "parent": 4559}}, {"model": "template.logicnode", "pk": 4558, "fields": {"state_transition": 1084, "node_type": "S", "subcondition": 20, "parent": 4559}}, {"model": "template.logicnode", "pk": 4559, "fields": {"state_transition": 1084, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4560, "fields": {"state_transition": 1085, "node_type": "N", "subcondition": null, "parent": 4564}}, {"model": "template.logicnode", "pk": 4561, "fields": {"state_transition": 1085, "node_type": "S", "subcondition": 23, "parent": 4560}}, {"model": "template.logicnode", "pk": 4562, "fields": {"state_transition": 1085, "node_type": "S", "subcondition": 3, "parent": 4564}}, {"model": "template.logicnode", "pk": 4563, "fields": {"state_transition": 1085, "node_type": "S", "subcondition": 21, "parent": 4564}}, {"model": "template.logicnode", "pk": 4564, "fields": {"state_transition": 1085, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4565, "fields": {"state_transition": 1086, "node_type": "N", "subcondition": null, "parent": 4569}}, {"model": "template.logicnode", "pk": 4566, "fields": {"state_transition": 1086, "node_type": "S", "subcondition": 23, "parent": 4565}}, {"model": "template.logicnode", "pk": 4567, "fields": {"state_transition": 1086, "node_type": "S", "subcondition": 3, "parent": 4569}}, {"model": "template.logicnode", "pk": 4568, "fields": {"state_transition": 1086, "node_type": "S", "subcondition": 22, "parent": 4569}}, {"model": "template.logicnode", "pk": 4569, "fields": {"state_transition": 1086, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4570, "fields": {"state_transition": 1087, "node_type": "N", "subcondition": null, "parent": 4574}}, {"model": "template.logicnode", "pk": 4571, "fields": {"state_transition": 1087, "node_type": "S", "subcondition": 23, "parent": 4570}}, {"model": "template.logicnode", "pk": 4572, "fields": {"state_transition": 1087, "node_type": "S", "subcondition": 4, "parent": 4574}}, {"model": "template.logicnode", "pk": 4573, "fields": {"state_transition": 1087, "node_type": "S", "subcondition": 19, "parent": 4574}}, {"model": "template.logicnode", "pk": 4574, "fields": {"state_transition": 1087, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4575, "fields": {"state_transition": 1088, "node_type": "N", "subcondition": null, "parent": 4579}}, {"model": "template.logicnode", "pk": 4576, "fields": {"state_transition": 1088, "node_type": "S", "subcondition": 23, "parent": 4575}}, {"model": "template.logicnode", "pk": 4577, "fields": {"state_transition": 1088, "node_type": "S", "subcondition": 4, "parent": 4579}}, {"model": "template.logicnode", "pk": 4578, "fields": {"state_transition": 1088, "node_type": "S", "subcondition": 20, "parent": 4579}}, {"model": "template.logicnode", "pk": 4579, "fields": {"state_transition": 1088, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4580, "fields": {"state_transition": 1089, "node_type": "N", "subcondition": null, "parent": 4584}}, {"model": "template.logicnode", "pk": 4581, "fields": {"state_transition": 1089, "node_type": "S", "subcondition": 23, "parent": 4580}}, {"model": "template.logicnode", "pk": 4582, "fields": {"state_transition": 1089, "node_type": "S", "subcondition": 4, "parent": 4584}}, {"model": "template.logicnode", "pk": 4583, "fields": {"state_transition": 1089, "node_type": "S", "subcondition": 21, "parent": 4584}}, {"model": "template.logicnode", "pk": 4584, "fields": {"state_transition": 1089, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4585, "fields": {"state_transition": 1090, "node_type": "N", "subcondition": null, "parent": 4589}}, {"model": "template.logicnode", "pk": 4586, "fields": {"state_transition": 1090, "node_type": "S", "subcondition": 23, "parent": 4585}}, {"model": "template.logicnode", "pk": 4587, "fields": {"state_transition": 1090, "node_type": "S", "subcondition": 4, "parent": 4589}}, {"model": "template.logicnode", "pk": 4588, "fields": {"state_transition": 1090, "node_type": "S", "subcondition": 22, "parent": 4589}}, {"model": "template.logicnode", "pk": 4589, "fields": {"state_transition": 1090, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4590, "fields": {"state_transition": 1091, "node_type": "N", "subcondition": null, "parent": 4594}}, {"model": "template.logicnode", "pk": 4591, "fields": {"state_transition": 1091, "node_type": "S", "subcondition": 23, "parent": 4590}}, {"model": "template.logicnode", "pk": 4592, "fields": {"state_transition": 1091, "node_type": "S", "subcondition": 5, "parent": 4594}}, {"model": "template.logicnode", "pk": 4593, "fields": {"state_transition": 1091, "node_type": "S", "subcondition": 19, "parent": 4594}}, {"model": "template.logicnode", "pk": 4594, "fields": {"state_transition": 1091, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4595, "fields": {"state_transition": 1092, "node_type": "N", "subcondition": null, "parent": 4599}}, {"model": "template.logicnode", "pk": 4596, "fields": {"state_transition": 1092, "node_type": "S", "subcondition": 23, "parent": 4595}}, {"model": "template.logicnode", "pk": 4597, "fields": {"state_transition": 1092, "node_type": "S", "subcondition": 5, "parent": 4599}}, {"model": "template.logicnode", "pk": 4598, "fields": {"state_transition": 1092, "node_type": "S", "subcondition": 20, "parent": 4599}}, {"model": "template.logicnode", "pk": 4599, "fields": {"state_transition": 1092, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4600, "fields": {"state_transition": 1093, "node_type": "N", "subcondition": null, "parent": 4604}}, {"model": "template.logicnode", "pk": 4601, "fields": {"state_transition": 1093, "node_type": "S", "subcondition": 23, "parent": 4600}}, {"model": "template.logicnode", "pk": 4602, "fields": {"state_transition": 1093, "node_type": "S", "subcondition": 5, "parent": 4604}}, {"model": "template.logicnode", "pk": 4603, "fields": {"state_transition": 1093, "node_type": "S", "subcondition": 21, "parent": 4604}}, {"model": "template.logicnode", "pk": 4604, "fields": {"state_transition": 1093, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4605, "fields": {"state_transition": 1094, "node_type": "N", "subcondition": null, "parent": 4609}}, {"model": "template.logicnode", "pk": 4606, "fields": {"state_transition": 1094, "node_type": "S", "subcondition": 23, "parent": 4605}}, {"model": "template.logicnode", "pk": 4607, "fields": {"state_transition": 1094, "node_type": "S", "subcondition": 5, "parent": 4609}}, {"model": "template.logicnode", "pk": 4608, "fields": {"state_transition": 1094, "node_type": "S", "subcondition": 22, "parent": 4609}}, {"model": "template.logicnode", "pk": 4609, "fields": {"state_transition": 1094, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4610, "fields": {"state_transition": 1095, "node_type": "N", "subcondition": null, "parent": 4614}}, {"model": "template.logicnode", "pk": 4611, "fields": {"state_transition": 1095, "node_type": "S", "subcondition": 23, "parent": 4610}}, {"model": "template.logicnode", "pk": 4612, "fields": {"state_transition": 1095, "node_type": "S", "subcondition": 6, "parent": 4614}}, {"model": "template.logicnode", "pk": 4613, "fields": {"state_transition": 1095, "node_type": "S", "subcondition": 19, "parent": 4614}}, {"model": "template.logicnode", "pk": 4614, "fields": {"state_transition": 1095, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4615, "fields": {"state_transition": 1096, "node_type": "N", "subcondition": null, "parent": 4619}}, {"model": "template.logicnode", "pk": 4616, "fields": {"state_transition": 1096, "node_type": "S", "subcondition": 23, "parent": 4615}}, {"model": "template.logicnode", "pk": 4617, "fields": {"state_transition": 1096, "node_type": "S", "subcondition": 6, "parent": 4619}}, {"model": "template.logicnode", "pk": 4618, "fields": {"state_transition": 1096, "node_type": "S", "subcondition": 20, "parent": 4619}}, {"model": "template.logicnode", "pk": 4619, "fields": {"state_transition": 1096, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4620, "fields": {"state_transition": 1097, "node_type": "N", "subcondition": null, "parent": 4624}}, {"model": "template.logicnode", "pk": 4621, "fields": {"state_transition": 1097, "node_type": "S", "subcondition": 23, "parent": 4620}}, {"model": "template.logicnode", "pk": 4622, "fields": {"state_transition": 1097, "node_type": "S", "subcondition": 6, "parent": 4624}}, {"model": "template.logicnode", "pk": 4623, "fields": {"state_transition": 1097, "node_type": "S", "subcondition": 21, "parent": 4624}}, {"model": "template.logicnode", "pk": 4624, "fields": {"state_transition": 1097, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4625, "fields": {"state_transition": 1098, "node_type": "N", "subcondition": null, "parent": 4629}}, {"model": "template.logicnode", "pk": 4626, "fields": {"state_transition": 1098, "node_type": "S", "subcondition": 23, "parent": 4625}}, {"model": "template.logicnode", "pk": 4627, "fields": {"state_transition": 1098, "node_type": "S", "subcondition": 6, "parent": 4629}}, {"model": "template.logicnode", "pk": 4628, "fields": {"state_transition": 1098, "node_type": "S", "subcondition": 22, "parent": 4629}}, {"model": "template.logicnode", "pk": 4629, "fields": {"state_transition": 1098, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4630, "fields": {"state_transition": 1099, "node_type": "S", "subcondition": 23, "parent": 4633}}, {"model": "template.logicnode", "pk": 4631, "fields": {"state_transition": 1099, "node_type": "S", "subcondition": 3, "parent": 4633}}, {"model": "template.logicnode", "pk": 4632, "fields": {"state_transition": 1099, "node_type": "S", "subcondition": 19, "parent": 4633}}, {"model": "template.logicnode", "pk": 4633, "fields": {"state_transition": 1099, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4634, "fields": {"state_transition": 1100, "node_type": "S", "subcondition": 23, "parent": 4637}}, {"model": "template.logicnode", "pk": 4635, "fields": {"state_transition": 1100, "node_type": "S", "subcondition": 3, "parent": 4637}}, {"model": "template.logicnode", "pk": 4636, "fields": {"state_transition": 1100, "node_type": "S", "subcondition": 20, "parent": 4637}}, {"model": "template.logicnode", "pk": 4637, "fields": {"state_transition": 1100, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4638, "fields": {"state_transition": 1101, "node_type": "S", "subcondition": 23, "parent": 4641}}, {"model": "template.logicnode", "pk": 4639, "fields": {"state_transition": 1101, "node_type": "S", "subcondition": 3, "parent": 4641}}, {"model": "template.logicnode", "pk": 4640, "fields": {"state_transition": 1101, "node_type": "S", "subcondition": 21, "parent": 4641}}, {"model": "template.logicnode", "pk": 4641, "fields": {"state_transition": 1101, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4642, "fields": {"state_transition": 1102, "node_type": "S", "subcondition": 23, "parent": 4645}}, {"model": "template.logicnode", "pk": 4643, "fields": {"state_transition": 1102, "node_type": "S", "subcondition": 3, "parent": 4645}}, {"model": "template.logicnode", "pk": 4644, "fields": {"state_transition": 1102, "node_type": "S", "subcondition": 22, "parent": 4645}}, {"model": "template.logicnode", "pk": 4645, "fields": {"state_transition": 1102, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4646, "fields": {"state_transition": 1103, "node_type": "S", "subcondition": 23, "parent": 4649}}, {"model": "template.logicnode", "pk": 4647, "fields": {"state_transition": 1103, "node_type": "S", "subcondition": 4, "parent": 4649}}, {"model": "template.logicnode", "pk": 4648, "fields": {"state_transition": 1103, "node_type": "S", "subcondition": 19, "parent": 4649}}, {"model": "template.logicnode", "pk": 4649, "fields": {"state_transition": 1103, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4650, "fields": {"state_transition": 1104, "node_type": "S", "subcondition": 23, "parent": 4653}}, {"model": "template.logicnode", "pk": 4651, "fields": {"state_transition": 1104, "node_type": "S", "subcondition": 4, "parent": 4653}}, {"model": "template.logicnode", "pk": 4652, "fields": {"state_transition": 1104, "node_type": "S", "subcondition": 20, "parent": 4653}}, {"model": "template.logicnode", "pk": 4653, "fields": {"state_transition": 1104, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4654, "fields": {"state_transition": 1105, "node_type": "S", "subcondition": 23, "parent": 4657}}, {"model": "template.logicnode", "pk": 4655, "fields": {"state_transition": 1105, "node_type": "S", "subcondition": 4, "parent": 4657}}, {"model": "template.logicnode", "pk": 4656, "fields": {"state_transition": 1105, "node_type": "S", "subcondition": 21, "parent": 4657}}, {"model": "template.logicnode", "pk": 4657, "fields": {"state_transition": 1105, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4658, "fields": {"state_transition": 1106, "node_type": "S", "subcondition": 23, "parent": 4661}}, {"model": "template.logicnode", "pk": 4659, "fields": {"state_transition": 1106, "node_type": "S", "subcondition": 4, "parent": 4661}}, {"model": "template.logicnode", "pk": 4660, "fields": {"state_transition": 1106, "node_type": "S", "subcondition": 22, "parent": 4661}}, {"model": "template.logicnode", "pk": 4661, "fields": {"state_transition": 1106, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4662, "fields": {"state_transition": 1107, "node_type": "S", "subcondition": 23, "parent": 4665}}, {"model": "template.logicnode", "pk": 4663, "fields": {"state_transition": 1107, "node_type": "S", "subcondition": 5, "parent": 4665}}, {"model": "template.logicnode", "pk": 4664, "fields": {"state_transition": 1107, "node_type": "S", "subcondition": 19, "parent": 4665}}, {"model": "template.logicnode", "pk": 4665, "fields": {"state_transition": 1107, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4666, "fields": {"state_transition": 1108, "node_type": "S", "subcondition": 23, "parent": 4669}}, {"model": "template.logicnode", "pk": 4667, "fields": {"state_transition": 1108, "node_type": "S", "subcondition": 5, "parent": 4669}}, {"model": "template.logicnode", "pk": 4668, "fields": {"state_transition": 1108, "node_type": "S", "subcondition": 20, "parent": 4669}}, {"model": "template.logicnode", "pk": 4669, "fields": {"state_transition": 1108, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4670, "fields": {"state_transition": 1109, "node_type": "S", "subcondition": 23, "parent": 4673}}, {"model": "template.logicnode", "pk": 4671, "fields": {"state_transition": 1109, "node_type": "S", "subcondition": 5, "parent": 4673}}, {"model": "template.logicnode", "pk": 4672, "fields": {"state_transition": 1109, "node_type": "S", "subcondition": 21, "parent": 4673}}, {"model": "template.logicnode", "pk": 4673, "fields": {"state_transition": 1109, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4674, "fields": {"state_transition": 1110, "node_type": "S", "subcondition": 23, "parent": 4677}}, {"model": "template.logicnode", "pk": 4675, "fields": {"state_transition": 1110, "node_type": "S", "subcondition": 5, "parent": 4677}}, {"model": "template.logicnode", "pk": 4676, "fields": {"state_transition": 1110, "node_type": "S", "subcondition": 22, "parent": 4677}}, {"model": "template.logicnode", "pk": 4677, "fields": {"state_transition": 1110, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4678, "fields": {"state_transition": 1111, "node_type": "S", "subcondition": 23, "parent": 4681}}, {"model": "template.logicnode", "pk": 4679, "fields": {"state_transition": 1111, "node_type": "S", "subcondition": 6, "parent": 4681}}, {"model": "template.logicnode", "pk": 4680, "fields": {"state_transition": 1111, "node_type": "S", "subcondition": 19, "parent": 4681}}, {"model": "template.logicnode", "pk": 4681, "fields": {"state_transition": 1111, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4682, "fields": {"state_transition": 1112, "node_type": "S", "subcondition": 23, "parent": 4685}}, {"model": "template.logicnode", "pk": 4683, "fields": {"state_transition": 1112, "node_type": "S", "subcondition": 6, "parent": 4685}}, {"model": "template.logicnode", "pk": 4684, "fields": {"state_transition": 1112, "node_type": "S", "subcondition": 20, "parent": 4685}}, {"model": "template.logicnode", "pk": 4685, "fields": {"state_transition": 1112, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4686, "fields": {"state_transition": 1113, "node_type": "S", "subcondition": 23, "parent": 4689}}, {"model": "template.logicnode", "pk": 4687, "fields": {"state_transition": 1113, "node_type": "S", "subcondition": 6, "parent": 4689}}, {"model": "template.logicnode", "pk": 4688, "fields": {"state_transition": 1113, "node_type": "S", "subcondition": 21, "parent": 4689}}, {"model": "template.logicnode", "pk": 4689, "fields": {"state_transition": 1113, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4690, "fields": {"state_transition": 1114, "node_type": "S", "subcondition": 23, "parent": 4693}}, {"model": "template.logicnode", "pk": 4691, "fields": {"state_transition": 1114, "node_type": "S", "subcondition": 6, "parent": 4693}}, {"model": "template.logicnode", "pk": 4692, "fields": {"state_transition": 1114, "node_type": "S", "subcondition": 22, "parent": 4693}}, {"model": "template.logicnode", "pk": 4693, "fields": {"state_transition": 1114, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4694, "fields": {"state_transition": 1115, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4695, "fields": {"state_transition": 1115, "node_type": "S", "subcondition": 24, "parent": 4694}}, {"model": "template.logicnode", "pk": 4696, "fields": {"state_transition": 1116, "node_type": "N", "subcondition": null, "parent": 4700}}, {"model": "template.logicnode", "pk": 4697, "fields": {"state_transition": 1116, "node_type": "S", "subcondition": 23, "parent": 4696}}, {"model": "template.logicnode", "pk": 4698, "fields": {"state_transition": 1116, "node_type": "S", "subcondition": 3, "parent": 4700}}, {"model": "template.logicnode", "pk": 4699, "fields": {"state_transition": 1116, "node_type": "S", "subcondition": 19, "parent": 4700}}, {"model": "template.logicnode", "pk": 4700, "fields": {"state_transition": 1116, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4701, "fields": {"state_transition": 1117, "node_type": "N", "subcondition": null, "parent": 4705}}, {"model": "template.logicnode", "pk": 4702, "fields": {"state_transition": 1117, "node_type": "S", "subcondition": 23, "parent": 4701}}, {"model": "template.logicnode", "pk": 4703, "fields": {"state_transition": 1117, "node_type": "S", "subcondition": 3, "parent": 4705}}, {"model": "template.logicnode", "pk": 4704, "fields": {"state_transition": 1117, "node_type": "S", "subcondition": 20, "parent": 4705}}, {"model": "template.logicnode", "pk": 4705, "fields": {"state_transition": 1117, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4706, "fields": {"state_transition": 1118, "node_type": "N", "subcondition": null, "parent": 4710}}, {"model": "template.logicnode", "pk": 4707, "fields": {"state_transition": 1118, "node_type": "S", "subcondition": 23, "parent": 4706}}, {"model": "template.logicnode", "pk": 4708, "fields": {"state_transition": 1118, "node_type": "S", "subcondition": 3, "parent": 4710}}, {"model": "template.logicnode", "pk": 4709, "fields": {"state_transition": 1118, "node_type": "S", "subcondition": 21, "parent": 4710}}, {"model": "template.logicnode", "pk": 4710, "fields": {"state_transition": 1118, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4711, "fields": {"state_transition": 1119, "node_type": "N", "subcondition": null, "parent": 4715}}, {"model": "template.logicnode", "pk": 4712, "fields": {"state_transition": 1119, "node_type": "S", "subcondition": 23, "parent": 4711}}, {"model": "template.logicnode", "pk": 4713, "fields": {"state_transition": 1119, "node_type": "S", "subcondition": 3, "parent": 4715}}, {"model": "template.logicnode", "pk": 4714, "fields": {"state_transition": 1119, "node_type": "S", "subcondition": 22, "parent": 4715}}, {"model": "template.logicnode", "pk": 4715, "fields": {"state_transition": 1119, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4716, "fields": {"state_transition": 1120, "node_type": "N", "subcondition": null, "parent": 4720}}, {"model": "template.logicnode", "pk": 4717, "fields": {"state_transition": 1120, "node_type": "S", "subcondition": 23, "parent": 4716}}, {"model": "template.logicnode", "pk": 4718, "fields": {"state_transition": 1120, "node_type": "S", "subcondition": 4, "parent": 4720}}, {"model": "template.logicnode", "pk": 4719, "fields": {"state_transition": 1120, "node_type": "S", "subcondition": 19, "parent": 4720}}, {"model": "template.logicnode", "pk": 4720, "fields": {"state_transition": 1120, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4721, "fields": {"state_transition": 1121, "node_type": "N", "subcondition": null, "parent": 4725}}, {"model": "template.logicnode", "pk": 4722, "fields": {"state_transition": 1121, "node_type": "S", "subcondition": 23, "parent": 4721}}, {"model": "template.logicnode", "pk": 4723, "fields": {"state_transition": 1121, "node_type": "S", "subcondition": 4, "parent": 4725}}, {"model": "template.logicnode", "pk": 4724, "fields": {"state_transition": 1121, "node_type": "S", "subcondition": 20, "parent": 4725}}, {"model": "template.logicnode", "pk": 4725, "fields": {"state_transition": 1121, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4726, "fields": {"state_transition": 1122, "node_type": "N", "subcondition": null, "parent": 4730}}, {"model": "template.logicnode", "pk": 4727, "fields": {"state_transition": 1122, "node_type": "S", "subcondition": 23, "parent": 4726}}, {"model": "template.logicnode", "pk": 4728, "fields": {"state_transition": 1122, "node_type": "S", "subcondition": 4, "parent": 4730}}, {"model": "template.logicnode", "pk": 4729, "fields": {"state_transition": 1122, "node_type": "S", "subcondition": 21, "parent": 4730}}, {"model": "template.logicnode", "pk": 4730, "fields": {"state_transition": 1122, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4731, "fields": {"state_transition": 1123, "node_type": "N", "subcondition": null, "parent": 4735}}, {"model": "template.logicnode", "pk": 4732, "fields": {"state_transition": 1123, "node_type": "S", "subcondition": 23, "parent": 4731}}, {"model": "template.logicnode", "pk": 4733, "fields": {"state_transition": 1123, "node_type": "S", "subcondition": 4, "parent": 4735}}, {"model": "template.logicnode", "pk": 4734, "fields": {"state_transition": 1123, "node_type": "S", "subcondition": 22, "parent": 4735}}, {"model": "template.logicnode", "pk": 4735, "fields": {"state_transition": 1123, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4736, "fields": {"state_transition": 1124, "node_type": "N", "subcondition": null, "parent": 4740}}, {"model": "template.logicnode", "pk": 4737, "fields": {"state_transition": 1124, "node_type": "S", "subcondition": 23, "parent": 4736}}, {"model": "template.logicnode", "pk": 4738, "fields": {"state_transition": 1124, "node_type": "S", "subcondition": 5, "parent": 4740}}, {"model": "template.logicnode", "pk": 4739, "fields": {"state_transition": 1124, "node_type": "S", "subcondition": 19, "parent": 4740}}, {"model": "template.logicnode", "pk": 4740, "fields": {"state_transition": 1124, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4741, "fields": {"state_transition": 1125, "node_type": "N", "subcondition": null, "parent": 4745}}, {"model": "template.logicnode", "pk": 4742, "fields": {"state_transition": 1125, "node_type": "S", "subcondition": 23, "parent": 4741}}, {"model": "template.logicnode", "pk": 4743, "fields": {"state_transition": 1125, "node_type": "S", "subcondition": 5, "parent": 4745}}, {"model": "template.logicnode", "pk": 4744, "fields": {"state_transition": 1125, "node_type": "S", "subcondition": 20, "parent": 4745}}, {"model": "template.logicnode", "pk": 4745, "fields": {"state_transition": 1125, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4746, "fields": {"state_transition": 1126, "node_type": "N", "subcondition": null, "parent": 4750}}, {"model": "template.logicnode", "pk": 4747, "fields": {"state_transition": 1126, "node_type": "S", "subcondition": 23, "parent": 4746}}, {"model": "template.logicnode", "pk": 4748, "fields": {"state_transition": 1126, "node_type": "S", "subcondition": 5, "parent": 4750}}, {"model": "template.logicnode", "pk": 4749, "fields": {"state_transition": 1126, "node_type": "S", "subcondition": 21, "parent": 4750}}, {"model": "template.logicnode", "pk": 4750, "fields": {"state_transition": 1126, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4751, "fields": {"state_transition": 1127, "node_type": "N", "subcondition": null, "parent": 4755}}, {"model": "template.logicnode", "pk": 4752, "fields": {"state_transition": 1127, "node_type": "S", "subcondition": 23, "parent": 4751}}, {"model": "template.logicnode", "pk": 4753, "fields": {"state_transition": 1127, "node_type": "S", "subcondition": 5, "parent": 4755}}, {"model": "template.logicnode", "pk": 4754, "fields": {"state_transition": 1127, "node_type": "S", "subcondition": 22, "parent": 4755}}, {"model": "template.logicnode", "pk": 4755, "fields": {"state_transition": 1127, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4756, "fields": {"state_transition": 1128, "node_type": "N", "subcondition": null, "parent": 4760}}, {"model": "template.logicnode", "pk": 4757, "fields": {"state_transition": 1128, "node_type": "S", "subcondition": 23, "parent": 4756}}, {"model": "template.logicnode", "pk": 4758, "fields": {"state_transition": 1128, "node_type": "S", "subcondition": 6, "parent": 4760}}, {"model": "template.logicnode", "pk": 4759, "fields": {"state_transition": 1128, "node_type": "S", "subcondition": 19, "parent": 4760}}, {"model": "template.logicnode", "pk": 4760, "fields": {"state_transition": 1128, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4761, "fields": {"state_transition": 1129, "node_type": "N", "subcondition": null, "parent": 4765}}, {"model": "template.logicnode", "pk": 4762, "fields": {"state_transition": 1129, "node_type": "S", "subcondition": 23, "parent": 4761}}, {"model": "template.logicnode", "pk": 4763, "fields": {"state_transition": 1129, "node_type": "S", "subcondition": 6, "parent": 4765}}, {"model": "template.logicnode", "pk": 4764, "fields": {"state_transition": 1129, "node_type": "S", "subcondition": 20, "parent": 4765}}, {"model": "template.logicnode", "pk": 4765, "fields": {"state_transition": 1129, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4766, "fields": {"state_transition": 1130, "node_type": "N", "subcondition": null, "parent": 4770}}, {"model": "template.logicnode", "pk": 4767, "fields": {"state_transition": 1130, "node_type": "S", "subcondition": 23, "parent": 4766}}, {"model": "template.logicnode", "pk": 4768, "fields": {"state_transition": 1130, "node_type": "S", "subcondition": 6, "parent": 4770}}, {"model": "template.logicnode", "pk": 4769, "fields": {"state_transition": 1130, "node_type": "S", "subcondition": 21, "parent": 4770}}, {"model": "template.logicnode", "pk": 4770, "fields": {"state_transition": 1130, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4771, "fields": {"state_transition": 1131, "node_type": "N", "subcondition": null, "parent": 4775}}, {"model": "template.logicnode", "pk": 4772, "fields": {"state_transition": 1131, "node_type": "S", "subcondition": 23, "parent": 4771}}, {"model": "template.logicnode", "pk": 4773, "fields": {"state_transition": 1131, "node_type": "S", "subcondition": 6, "parent": 4775}}, {"model": "template.logicnode", "pk": 4774, "fields": {"state_transition": 1131, "node_type": "S", "subcondition": 22, "parent": 4775}}, {"model": "template.logicnode", "pk": 4775, "fields": {"state_transition": 1131, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4776, "fields": {"state_transition": 1132, "node_type": "S", "subcondition": 23, "parent": 4779}}, {"model": "template.logicnode", "pk": 4777, "fields": {"state_transition": 1132, "node_type": "S", "subcondition": 3, "parent": 4779}}, {"model": "template.logicnode", "pk": 4778, "fields": {"state_transition": 1132, "node_type": "S", "subcondition": 19, "parent": 4779}}, {"model": "template.logicnode", "pk": 4779, "fields": {"state_transition": 1132, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4780, "fields": {"state_transition": 1133, "node_type": "S", "subcondition": 23, "parent": 4783}}, {"model": "template.logicnode", "pk": 4781, "fields": {"state_transition": 1133, "node_type": "S", "subcondition": 3, "parent": 4783}}, {"model": "template.logicnode", "pk": 4782, "fields": {"state_transition": 1133, "node_type": "S", "subcondition": 20, "parent": 4783}}, {"model": "template.logicnode", "pk": 4783, "fields": {"state_transition": 1133, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4784, "fields": {"state_transition": 1134, "node_type": "S", "subcondition": 23, "parent": 4787}}, {"model": "template.logicnode", "pk": 4785, "fields": {"state_transition": 1134, "node_type": "S", "subcondition": 3, "parent": 4787}}, {"model": "template.logicnode", "pk": 4786, "fields": {"state_transition": 1134, "node_type": "S", "subcondition": 21, "parent": 4787}}, {"model": "template.logicnode", "pk": 4787, "fields": {"state_transition": 1134, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4788, "fields": {"state_transition": 1135, "node_type": "S", "subcondition": 23, "parent": 4791}}, {"model": "template.logicnode", "pk": 4789, "fields": {"state_transition": 1135, "node_type": "S", "subcondition": 3, "parent": 4791}}, {"model": "template.logicnode", "pk": 4790, "fields": {"state_transition": 1135, "node_type": "S", "subcondition": 22, "parent": 4791}}, {"model": "template.logicnode", "pk": 4791, "fields": {"state_transition": 1135, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4792, "fields": {"state_transition": 1136, "node_type": "S", "subcondition": 23, "parent": 4795}}, {"model": "template.logicnode", "pk": 4793, "fields": {"state_transition": 1136, "node_type": "S", "subcondition": 4, "parent": 4795}}, {"model": "template.logicnode", "pk": 4794, "fields": {"state_transition": 1136, "node_type": "S", "subcondition": 19, "parent": 4795}}, {"model": "template.logicnode", "pk": 4795, "fields": {"state_transition": 1136, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4796, "fields": {"state_transition": 1137, "node_type": "S", "subcondition": 23, "parent": 4799}}, {"model": "template.logicnode", "pk": 4797, "fields": {"state_transition": 1137, "node_type": "S", "subcondition": 4, "parent": 4799}}, {"model": "template.logicnode", "pk": 4798, "fields": {"state_transition": 1137, "node_type": "S", "subcondition": 20, "parent": 4799}}, {"model": "template.logicnode", "pk": 4799, "fields": {"state_transition": 1137, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4800, "fields": {"state_transition": 1138, "node_type": "S", "subcondition": 23, "parent": 4803}}, {"model": "template.logicnode", "pk": 4801, "fields": {"state_transition": 1138, "node_type": "S", "subcondition": 4, "parent": 4803}}, {"model": "template.logicnode", "pk": 4802, "fields": {"state_transition": 1138, "node_type": "S", "subcondition": 21, "parent": 4803}}, {"model": "template.logicnode", "pk": 4803, "fields": {"state_transition": 1138, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4804, "fields": {"state_transition": 1139, "node_type": "S", "subcondition": 23, "parent": 4807}}, {"model": "template.logicnode", "pk": 4805, "fields": {"state_transition": 1139, "node_type": "S", "subcondition": 4, "parent": 4807}}, {"model": "template.logicnode", "pk": 4806, "fields": {"state_transition": 1139, "node_type": "S", "subcondition": 22, "parent": 4807}}, {"model": "template.logicnode", "pk": 4807, "fields": {"state_transition": 1139, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4808, "fields": {"state_transition": 1140, "node_type": "S", "subcondition": 23, "parent": 4811}}, {"model": "template.logicnode", "pk": 4809, "fields": {"state_transition": 1140, "node_type": "S", "subcondition": 5, "parent": 4811}}, {"model": "template.logicnode", "pk": 4810, "fields": {"state_transition": 1140, "node_type": "S", "subcondition": 19, "parent": 4811}}, {"model": "template.logicnode", "pk": 4811, "fields": {"state_transition": 1140, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4812, "fields": {"state_transition": 1141, "node_type": "S", "subcondition": 23, "parent": 4815}}, {"model": "template.logicnode", "pk": 4813, "fields": {"state_transition": 1141, "node_type": "S", "subcondition": 5, "parent": 4815}}, {"model": "template.logicnode", "pk": 4814, "fields": {"state_transition": 1141, "node_type": "S", "subcondition": 20, "parent": 4815}}, {"model": "template.logicnode", "pk": 4815, "fields": {"state_transition": 1141, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4816, "fields": {"state_transition": 1142, "node_type": "S", "subcondition": 23, "parent": 4819}}, {"model": "template.logicnode", "pk": 4817, "fields": {"state_transition": 1142, "node_type": "S", "subcondition": 5, "parent": 4819}}, {"model": "template.logicnode", "pk": 4818, "fields": {"state_transition": 1142, "node_type": "S", "subcondition": 21, "parent": 4819}}, {"model": "template.logicnode", "pk": 4819, "fields": {"state_transition": 1142, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4820, "fields": {"state_transition": 1143, "node_type": "S", "subcondition": 23, "parent": 4823}}, {"model": "template.logicnode", "pk": 4821, "fields": {"state_transition": 1143, "node_type": "S", "subcondition": 5, "parent": 4823}}, {"model": "template.logicnode", "pk": 4822, "fields": {"state_transition": 1143, "node_type": "S", "subcondition": 22, "parent": 4823}}, {"model": "template.logicnode", "pk": 4823, "fields": {"state_transition": 1143, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4824, "fields": {"state_transition": 1144, "node_type": "S", "subcondition": 23, "parent": 4827}}, {"model": "template.logicnode", "pk": 4825, "fields": {"state_transition": 1144, "node_type": "S", "subcondition": 6, "parent": 4827}}, {"model": "template.logicnode", "pk": 4826, "fields": {"state_transition": 1144, "node_type": "S", "subcondition": 19, "parent": 4827}}, {"model": "template.logicnode", "pk": 4827, "fields": {"state_transition": 1144, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4828, "fields": {"state_transition": 1145, "node_type": "S", "subcondition": 23, "parent": 4831}}, {"model": "template.logicnode", "pk": 4829, "fields": {"state_transition": 1145, "node_type": "S", "subcondition": 6, "parent": 4831}}, {"model": "template.logicnode", "pk": 4830, "fields": {"state_transition": 1145, "node_type": "S", "subcondition": 20, "parent": 4831}}, {"model": "template.logicnode", "pk": 4831, "fields": {"state_transition": 1145, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4832, "fields": {"state_transition": 1146, "node_type": "S", "subcondition": 23, "parent": 4835}}, {"model": "template.logicnode", "pk": 4833, "fields": {"state_transition": 1146, "node_type": "S", "subcondition": 6, "parent": 4835}}, {"model": "template.logicnode", "pk": 4834, "fields": {"state_transition": 1146, "node_type": "S", "subcondition": 21, "parent": 4835}}, {"model": "template.logicnode", "pk": 4835, "fields": {"state_transition": 1146, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4836, "fields": {"state_transition": 1147, "node_type": "S", "subcondition": 23, "parent": 4839}}, {"model": "template.logicnode", "pk": 4837, "fields": {"state_transition": 1147, "node_type": "S", "subcondition": 6, "parent": 4839}}, {"model": "template.logicnode", "pk": 4838, "fields": {"state_transition": 1147, "node_type": "S", "subcondition": 22, "parent": 4839}}, {"model": "template.logicnode", "pk": 4839, "fields": {"state_transition": 1147, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4840, "fields": {"state_transition": 1148, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4841, "fields": {"state_transition": 1149, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4842, "fields": {"state_transition": 1150, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4843, "fields": {"state_transition": 1151, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4844, "fields": {"state_transition": 1152, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4845, "fields": {"state_transition": 1153, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4846, "fields": {"state_transition": 1154, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4847, "fields": {"state_transition": 1155, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4848, "fields": {"state_transition": 1156, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4849, "fields": {"state_transition": 1157, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4850, "fields": {"state_transition": 1158, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4851, "fields": {"state_transition": 1159, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4852, "fields": {"state_transition": 1160, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4853, "fields": {"state_transition": 1161, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4854, "fields": {"state_transition": 1162, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4855, "fields": {"state_transition": 1162, "node_type": "S", "subcondition": 23, "parent": 4854}}, {"model": "template.logicnode", "pk": 4856, "fields": {"state_transition": 1163, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4857, "fields": {"state_transition": 1164, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4858, "fields": {"state_transition": 1164, "node_type": "S", "subcondition": 23, "parent": 4857}}, {"model": "template.logicnode", "pk": 4859, "fields": {"state_transition": 1165, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4860, "fields": {"state_transition": 1166, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4861, "fields": {"state_transition": 1166, "node_type": "S", "subcondition": 23, "parent": 4860}}, {"model": "template.logicnode", "pk": 4862, "fields": {"state_transition": 1167, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4863, "fields": {"state_transition": 1168, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4864, "fields": {"state_transition": 1168, "node_type": "S", "subcondition": 23, "parent": 4863}}, {"model": "template.logicnode", "pk": 4865, "fields": {"state_transition": 1169, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4866, "fields": {"state_transition": 1170, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4867, "fields": {"state_transition": 1170, "node_type": "S", "subcondition": 23, "parent": 4866}}, {"model": "template.logicnode", "pk": 4868, "fields": {"state_transition": 1171, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4869, "fields": {"state_transition": 1172, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4870, "fields": {"state_transition": 1172, "node_type": "S", "subcondition": 23, "parent": 4869}}, {"model": "template.logicnode", "pk": 4871, "fields": {"state_transition": 1173, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4872, "fields": {"state_transition": 1174, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4873, "fields": {"state_transition": 1174, "node_type": "S", "subcondition": 23, "parent": 4872}}, {"model": "template.logicnode", "pk": 4874, "fields": {"state_transition": 1175, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4875, "fields": {"state_transition": 1176, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4876, "fields": {"state_transition": 1176, "node_type": "S", "subcondition": 23, "parent": 4875}}, {"model": "template.logicnode", "pk": 4877, "fields": {"state_transition": 1177, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4878, "fields": {"state_transition": 1178, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4879, "fields": {"state_transition": 1178, "node_type": "S", "subcondition": 23, "parent": 4878}}, {"model": "template.logicnode", "pk": 4880, "fields": {"state_transition": 1179, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4881, "fields": {"state_transition": 1180, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4882, "fields": {"state_transition": 1180, "node_type": "S", "subcondition": 23, "parent": 4881}}, {"model": "template.logicnode", "pk": 4883, "fields": {"state_transition": 1181, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4884, "fields": {"state_transition": 1182, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4885, "fields": {"state_transition": 1182, "node_type": "S", "subcondition": 23, "parent": 4884}}, {"model": "template.logicnode", "pk": 4886, "fields": {"state_transition": 1183, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4887, "fields": {"state_transition": 1184, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4888, "fields": {"state_transition": 1184, "node_type": "S", "subcondition": 23, "parent": 4887}}, {"model": "template.logicnode", "pk": 4889, "fields": {"state_transition": 1185, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4890, "fields": {"state_transition": 1186, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4891, "fields": {"state_transition": 1186, "node_type": "S", "subcondition": 23, "parent": 4890}}, {"model": "template.logicnode", "pk": 4892, "fields": {"state_transition": 1187, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4893, "fields": {"state_transition": 1188, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4894, "fields": {"state_transition": 1188, "node_type": "S", "subcondition": 23, "parent": 4893}}, {"model": "template.logicnode", "pk": 4895, "fields": {"state_transition": 1189, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4896, "fields": {"state_transition": 1190, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4897, "fields": {"state_transition": 1190, "node_type": "S", "subcondition": 23, "parent": 4896}}, {"model": "template.logicnode", "pk": 4898, "fields": {"state_transition": 1191, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4899, "fields": {"state_transition": 1192, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4900, "fields": {"state_transition": 1193, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4901, "fields": {"state_transition": 1194, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4902, "fields": {"state_transition": 1195, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4903, "fields": {"state_transition": 1196, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4904, "fields": {"state_transition": 1197, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4905, "fields": {"state_transition": 1198, "node_type": "N", "subcondition": null, "parent": 4909}}, {"model": "template.logicnode", "pk": 4906, "fields": {"state_transition": 1198, "node_type": "S", "subcondition": 23, "parent": 4905}}, {"model": "template.logicnode", "pk": 4907, "fields": {"state_transition": 1198, "node_type": "S", "subcondition": 14, "parent": 4909}}, {"model": "template.logicnode", "pk": 4908, "fields": {"state_transition": 1198, "node_type": "S", "subcondition": 16, "parent": 4909}}, {"model": "template.logicnode", "pk": 4909, "fields": {"state_transition": 1198, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4910, "fields": {"state_transition": 1199, "node_type": "N", "subcondition": null, "parent": 4913}}, {"model": "template.logicnode", "pk": 4911, "fields": {"state_transition": 1199, "node_type": "S", "subcondition": 23, "parent": 4910}}, {"model": "template.logicnode", "pk": 4912, "fields": {"state_transition": 1199, "node_type": "S", "subcondition": 14, "parent": 4913}}, {"model": "template.logicnode", "pk": 4913, "fields": {"state_transition": 1199, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4914, "fields": {"state_transition": 1200, "node_type": "N", "subcondition": null, "parent": 4918}}, {"model": "template.logicnode", "pk": 4915, "fields": {"state_transition": 1200, "node_type": "S", "subcondition": 23, "parent": 4914}}, {"model": "template.logicnode", "pk": 4916, "fields": {"state_transition": 1200, "node_type": "S", "subcondition": 15, "parent": 4918}}, {"model": "template.logicnode", "pk": 4917, "fields": {"state_transition": 1200, "node_type": "S", "subcondition": 16, "parent": 4918}}, {"model": "template.logicnode", "pk": 4918, "fields": {"state_transition": 1200, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4919, "fields": {"state_transition": 1201, "node_type": "N", "subcondition": null, "parent": 4922}}, {"model": "template.logicnode", "pk": 4920, "fields": {"state_transition": 1201, "node_type": "S", "subcondition": 23, "parent": 4919}}, {"model": "template.logicnode", "pk": 4921, "fields": {"state_transition": 1201, "node_type": "S", "subcondition": 15, "parent": 4922}}, {"model": "template.logicnode", "pk": 4922, "fields": {"state_transition": 1201, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4923, "fields": {"state_transition": 1202, "node_type": "N", "subcondition": null, "parent": 4926}}, {"model": "template.logicnode", "pk": 4924, "fields": {"state_transition": 1202, "node_type": "S", "subcondition": 23, "parent": 4923}}, {"model": "template.logicnode", "pk": 4925, "fields": {"state_transition": 1202, "node_type": "S", "subcondition": 16, "parent": 4926}}, {"model": "template.logicnode", "pk": 4926, "fields": {"state_transition": 1202, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4927, "fields": {"state_transition": 1203, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4928, "fields": {"state_transition": 1203, "node_type": "S", "subcondition": 23, "parent": 4927}}, {"model": "template.logicnode", "pk": 4929, "fields": {"state_transition": 1204, "node_type": "S", "subcondition": 23, "parent": 4931}}, {"model": "template.logicnode", "pk": 4930, "fields": {"state_transition": 1204, "node_type": "S", "subcondition": 16, "parent": 4931}}, {"model": "template.logicnode", "pk": 4931, "fields": {"state_transition": 1204, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4932, "fields": {"state_transition": 1205, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4933, "fields": {"state_transition": 1206, "node_type": "N", "subcondition": null, "parent": 4937}}, {"model": "template.logicnode", "pk": 4934, "fields": {"state_transition": 1206, "node_type": "S", "subcondition": 23, "parent": 4933}}, {"model": "template.logicnode", "pk": 4935, "fields": {"state_transition": 1206, "node_type": "S", "subcondition": 14, "parent": 4937}}, {"model": "template.logicnode", "pk": 4936, "fields": {"state_transition": 1206, "node_type": "S", "subcondition": 16, "parent": 4937}}, {"model": "template.logicnode", "pk": 4937, "fields": {"state_transition": 1206, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4938, "fields": {"state_transition": 1207, "node_type": "N", "subcondition": null, "parent": 4941}}, {"model": "template.logicnode", "pk": 4939, "fields": {"state_transition": 1207, "node_type": "S", "subcondition": 23, "parent": 4938}}, {"model": "template.logicnode", "pk": 4940, "fields": {"state_transition": 1207, "node_type": "S", "subcondition": 14, "parent": 4941}}, {"model": "template.logicnode", "pk": 4941, "fields": {"state_transition": 1207, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4942, "fields": {"state_transition": 1208, "node_type": "N", "subcondition": null, "parent": 4946}}, {"model": "template.logicnode", "pk": 4943, "fields": {"state_transition": 1208, "node_type": "S", "subcondition": 23, "parent": 4942}}, {"model": "template.logicnode", "pk": 4944, "fields": {"state_transition": 1208, "node_type": "S", "subcondition": 15, "parent": 4946}}, {"model": "template.logicnode", "pk": 4945, "fields": {"state_transition": 1208, "node_type": "S", "subcondition": 16, "parent": 4946}}, {"model": "template.logicnode", "pk": 4946, "fields": {"state_transition": 1208, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4947, "fields": {"state_transition": 1209, "node_type": "N", "subcondition": null, "parent": 4950}}, {"model": "template.logicnode", "pk": 4948, "fields": {"state_transition": 1209, "node_type": "S", "subcondition": 23, "parent": 4947}}, {"model": "template.logicnode", "pk": 4949, "fields": {"state_transition": 1209, "node_type": "S", "subcondition": 15, "parent": 4950}}, {"model": "template.logicnode", "pk": 4950, "fields": {"state_transition": 1209, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4951, "fields": {"state_transition": 1210, "node_type": "N", "subcondition": null, "parent": 4954}}, {"model": "template.logicnode", "pk": 4952, "fields": {"state_transition": 1210, "node_type": "S", "subcondition": 23, "parent": 4951}}, {"model": "template.logicnode", "pk": 4953, "fields": {"state_transition": 1210, "node_type": "S", "subcondition": 16, "parent": 4954}}, {"model": "template.logicnode", "pk": 4954, "fields": {"state_transition": 1210, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4955, "fields": {"state_transition": 1211, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4956, "fields": {"state_transition": 1211, "node_type": "S", "subcondition": 23, "parent": 4955}}, {"model": "template.logicnode", "pk": 4957, "fields": {"state_transition": 1212, "node_type": "S", "subcondition": 23, "parent": 4959}}, {"model": "template.logicnode", "pk": 4958, "fields": {"state_transition": 1212, "node_type": "S", "subcondition": 16, "parent": 4959}}, {"model": "template.logicnode", "pk": 4959, "fields": {"state_transition": 1212, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4960, "fields": {"state_transition": 1213, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4961, "fields": {"state_transition": 1214, "node_type": "N", "subcondition": null, "parent": 4965}}, {"model": "template.logicnode", "pk": 4962, "fields": {"state_transition": 1214, "node_type": "S", "subcondition": 23, "parent": 4961}}, {"model": "template.logicnode", "pk": 4963, "fields": {"state_transition": 1214, "node_type": "S", "subcondition": 14, "parent": 4965}}, {"model": "template.logicnode", "pk": 4964, "fields": {"state_transition": 1214, "node_type": "S", "subcondition": 16, "parent": 4965}}, {"model": "template.logicnode", "pk": 4965, "fields": {"state_transition": 1214, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4966, "fields": {"state_transition": 1215, "node_type": "N", "subcondition": null, "parent": 4969}}, {"model": "template.logicnode", "pk": 4967, "fields": {"state_transition": 1215, "node_type": "S", "subcondition": 23, "parent": 4966}}, {"model": "template.logicnode", "pk": 4968, "fields": {"state_transition": 1215, "node_type": "S", "subcondition": 14, "parent": 4969}}, {"model": "template.logicnode", "pk": 4969, "fields": {"state_transition": 1215, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4970, "fields": {"state_transition": 1216, "node_type": "N", "subcondition": null, "parent": 4974}}, {"model": "template.logicnode", "pk": 4971, "fields": {"state_transition": 1216, "node_type": "S", "subcondition": 23, "parent": 4970}}, {"model": "template.logicnode", "pk": 4972, "fields": {"state_transition": 1216, "node_type": "S", "subcondition": 15, "parent": 4974}}, {"model": "template.logicnode", "pk": 4973, "fields": {"state_transition": 1216, "node_type": "S", "subcondition": 16, "parent": 4974}}, {"model": "template.logicnode", "pk": 4974, "fields": {"state_transition": 1216, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4975, "fields": {"state_transition": 1217, "node_type": "N", "subcondition": null, "parent": 4978}}, {"model": "template.logicnode", "pk": 4976, "fields": {"state_transition": 1217, "node_type": "S", "subcondition": 23, "parent": 4975}}, {"model": "template.logicnode", "pk": 4977, "fields": {"state_transition": 1217, "node_type": "S", "subcondition": 15, "parent": 4978}}, {"model": "template.logicnode", "pk": 4978, "fields": {"state_transition": 1217, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4979, "fields": {"state_transition": 1218, "node_type": "N", "subcondition": null, "parent": 4982}}, {"model": "template.logicnode", "pk": 4980, "fields": {"state_transition": 1218, "node_type": "S", "subcondition": 23, "parent": 4979}}, {"model": "template.logicnode", "pk": 4981, "fields": {"state_transition": 1218, "node_type": "S", "subcondition": 16, "parent": 4982}}, {"model": "template.logicnode", "pk": 4982, "fields": {"state_transition": 1218, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4983, "fields": {"state_transition": 1219, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4984, "fields": {"state_transition": 1219, "node_type": "S", "subcondition": 23, "parent": 4983}}, {"model": "template.logicnode", "pk": 4985, "fields": {"state_transition": 1220, "node_type": "S", "subcondition": 23, "parent": 4987}}, {"model": "template.logicnode", "pk": 4986, "fields": {"state_transition": 1220, "node_type": "S", "subcondition": 16, "parent": 4987}}, {"model": "template.logicnode", "pk": 4987, "fields": {"state_transition": 1220, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4988, "fields": {"state_transition": 1221, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4989, "fields": {"state_transition": 1222, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4990, "fields": {"state_transition": 1223, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4991, "fields": {"state_transition": 1224, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4992, "fields": {"state_transition": 1225, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4993, "fields": {"state_transition": 1226, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4994, "fields": {"state_transition": 1227, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4995, "fields": {"state_transition": 1228, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4996, "fields": {"state_transition": 1229, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4997, "fields": {"state_transition": 1230, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4998, "fields": {"state_transition": 1231, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4999, "fields": {"state_transition": 1232, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5000, "fields": {"state_transition": 1233, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5001, "fields": {"state_transition": 1234, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5002, "fields": {"state_transition": 1234, "node_type": "S", "subcondition": 23, "parent": 5001}}, {"model": "template.logicnode", "pk": 5003, "fields": {"state_transition": 1235, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5004, "fields": {"state_transition": 1236, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5005, "fields": {"state_transition": 1236, "node_type": "S", "subcondition": 23, "parent": 5004}}, {"model": "template.logicnode", "pk": 5006, "fields": {"state_transition": 1237, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5007, "fields": {"state_transition": 1238, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5008, "fields": {"state_transition": 1238, "node_type": "S", "subcondition": 23, "parent": 5007}}, {"model": "template.logicnode", "pk": 5009, "fields": {"state_transition": 1239, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5010, "fields": {"state_transition": 1240, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5011, "fields": {"state_transition": 1240, "node_type": "S", "subcondition": 23, "parent": 5010}}, {"model": "template.logicnode", "pk": 5012, "fields": {"state_transition": 1241, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5013, "fields": {"state_transition": 1242, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5014, "fields": {"state_transition": 1242, "node_type": "S", "subcondition": 23, "parent": 5013}}, {"model": "template.logicnode", "pk": 5015, "fields": {"state_transition": 1243, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5016, "fields": {"state_transition": 1244, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5017, "fields": {"state_transition": 1245, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5018, "fields": {"state_transition": 1246, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5019, "fields": {"state_transition": 1247, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5020, "fields": {"state_transition": 1248, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5021, "fields": {"state_transition": 1249, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5022, "fields": {"state_transition": 1250, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5023, "fields": {"state_transition": 1251, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5024, "fields": {"state_transition": 1252, "node_type": "N", "subcondition": null, "parent": 5030}}, {"model": "template.logicnode", "pk": 5025, "fields": {"state_transition": 1252, "node_type": "S", "subcondition": 23, "parent": 5024}}, {"model": "template.logicnode", "pk": 5026, "fields": {"state_transition": 1252, "node_type": "S", "subcondition": 11, "parent": 5030}}, {"model": "template.logicnode", "pk": 5027, "fields": {"state_transition": 1252, "node_type": "S", "subcondition": 13, "parent": 5030}}, {"model": "template.logicnode", "pk": 5028, "fields": {"state_transition": 1252, "node_type": "S", "subcondition": 17, "parent": 5030}}, {"model": "template.logicnode", "pk": 5029, "fields": {"state_transition": 1252, "node_type": "S", "subcondition": 25, "parent": 5030}}, {"model": "template.logicnode", "pk": 5030, "fields": {"state_transition": 1252, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5031, "fields": {"state_transition": 1253, "node_type": "N", "subcondition": null, "parent": 5036}}, {"model": "template.logicnode", "pk": 5032, "fields": {"state_transition": 1253, "node_type": "S", "subcondition": 23, "parent": 5031}}, {"model": "template.logicnode", "pk": 5033, "fields": {"state_transition": 1253, "node_type": "S", "subcondition": 11, "parent": 5036}}, {"model": "template.logicnode", "pk": 5034, "fields": {"state_transition": 1253, "node_type": "S", "subcondition": 13, "parent": 5036}}, {"model": "template.logicnode", "pk": 5035, "fields": {"state_transition": 1253, "node_type": "S", "subcondition": 17, "parent": 5036}}, {"model": "template.logicnode", "pk": 5036, "fields": {"state_transition": 1253, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5037, "fields": {"state_transition": 1254, "node_type": "N", "subcondition": null, "parent": 5042}}, {"model": "template.logicnode", "pk": 5038, "fields": {"state_transition": 1254, "node_type": "S", "subcondition": 23, "parent": 5037}}, {"model": "template.logicnode", "pk": 5039, "fields": {"state_transition": 1254, "node_type": "S", "subcondition": 11, "parent": 5042}}, {"model": "template.logicnode", "pk": 5040, "fields": {"state_transition": 1254, "node_type": "S", "subcondition": 13, "parent": 5042}}, {"model": "template.logicnode", "pk": 5041, "fields": {"state_transition": 1254, "node_type": "S", "subcondition": 25, "parent": 5042}}, {"model": "template.logicnode", "pk": 5042, "fields": {"state_transition": 1254, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5043, "fields": {"state_transition": 1255, "node_type": "N", "subcondition": null, "parent": 5047}}, {"model": "template.logicnode", "pk": 5044, "fields": {"state_transition": 1255, "node_type": "S", "subcondition": 23, "parent": 5043}}, {"model": "template.logicnode", "pk": 5045, "fields": {"state_transition": 1255, "node_type": "S", "subcondition": 11, "parent": 5047}}, {"model": "template.logicnode", "pk": 5046, "fields": {"state_transition": 1255, "node_type": "S", "subcondition": 13, "parent": 5047}}, {"model": "template.logicnode", "pk": 5047, "fields": {"state_transition": 1255, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5048, "fields": {"state_transition": 1256, "node_type": "N", "subcondition": null, "parent": 5053}}, {"model": "template.logicnode", "pk": 5049, "fields": {"state_transition": 1256, "node_type": "S", "subcondition": 23, "parent": 5048}}, {"model": "template.logicnode", "pk": 5050, "fields": {"state_transition": 1256, "node_type": "S", "subcondition": 11, "parent": 5053}}, {"model": "template.logicnode", "pk": 5051, "fields": {"state_transition": 1256, "node_type": "S", "subcondition": 17, "parent": 5053}}, {"model": "template.logicnode", "pk": 5052, "fields": {"state_transition": 1256, "node_type": "S", "subcondition": 25, "parent": 5053}}, {"model": "template.logicnode", "pk": 5053, "fields": {"state_transition": 1256, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5054, "fields": {"state_transition": 1257, "node_type": "N", "subcondition": null, "parent": 5058}}, {"model": "template.logicnode", "pk": 5055, "fields": {"state_transition": 1257, "node_type": "S", "subcondition": 23, "parent": 5054}}, {"model": "template.logicnode", "pk": 5056, "fields": {"state_transition": 1257, "node_type": "S", "subcondition": 11, "parent": 5058}}, {"model": "template.logicnode", "pk": 5057, "fields": {"state_transition": 1257, "node_type": "S", "subcondition": 17, "parent": 5058}}, {"model": "template.logicnode", "pk": 5058, "fields": {"state_transition": 1257, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5059, "fields": {"state_transition": 1258, "node_type": "N", "subcondition": null, "parent": 5063}}, {"model": "template.logicnode", "pk": 5060, "fields": {"state_transition": 1258, "node_type": "S", "subcondition": 23, "parent": 5059}}, {"model": "template.logicnode", "pk": 5061, "fields": {"state_transition": 1258, "node_type": "S", "subcondition": 11, "parent": 5063}}, {"model": "template.logicnode", "pk": 5062, "fields": {"state_transition": 1258, "node_type": "S", "subcondition": 25, "parent": 5063}}, {"model": "template.logicnode", "pk": 5063, "fields": {"state_transition": 1258, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5064, "fields": {"state_transition": 1259, "node_type": "N", "subcondition": null, "parent": 5067}}, {"model": "template.logicnode", "pk": 5065, "fields": {"state_transition": 1259, "node_type": "S", "subcondition": 23, "parent": 5064}}, {"model": "template.logicnode", "pk": 5066, "fields": {"state_transition": 1259, "node_type": "S", "subcondition": 11, "parent": 5067}}, {"model": "template.logicnode", "pk": 5067, "fields": {"state_transition": 1259, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5068, "fields": {"state_transition": 1260, "node_type": "N", "subcondition": null, "parent": 5073}}, {"model": "template.logicnode", "pk": 5069, "fields": {"state_transition": 1260, "node_type": "S", "subcondition": 23, "parent": 5068}}, {"model": "template.logicnode", "pk": 5070, "fields": {"state_transition": 1260, "node_type": "S", "subcondition": 13, "parent": 5073}}, {"model": "template.logicnode", "pk": 5071, "fields": {"state_transition": 1260, "node_type": "S", "subcondition": 17, "parent": 5073}}, {"model": "template.logicnode", "pk": 5072, "fields": {"state_transition": 1260, "node_type": "S", "subcondition": 25, "parent": 5073}}, {"model": "template.logicnode", "pk": 5073, "fields": {"state_transition": 1260, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5074, "fields": {"state_transition": 1261, "node_type": "N", "subcondition": null, "parent": 5078}}, {"model": "template.logicnode", "pk": 5075, "fields": {"state_transition": 1261, "node_type": "S", "subcondition": 23, "parent": 5074}}, {"model": "template.logicnode", "pk": 5076, "fields": {"state_transition": 1261, "node_type": "S", "subcondition": 13, "parent": 5078}}, {"model": "template.logicnode", "pk": 5077, "fields": {"state_transition": 1261, "node_type": "S", "subcondition": 17, "parent": 5078}}, {"model": "template.logicnode", "pk": 5078, "fields": {"state_transition": 1261, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5079, "fields": {"state_transition": 1262, "node_type": "N", "subcondition": null, "parent": 5083}}, {"model": "template.logicnode", "pk": 5080, "fields": {"state_transition": 1262, "node_type": "S", "subcondition": 23, "parent": 5079}}, {"model": "template.logicnode", "pk": 5081, "fields": {"state_transition": 1262, "node_type": "S", "subcondition": 13, "parent": 5083}}, {"model": "template.logicnode", "pk": 5082, "fields": {"state_transition": 1262, "node_type": "S", "subcondition": 25, "parent": 5083}}, {"model": "template.logicnode", "pk": 5083, "fields": {"state_transition": 1262, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5084, "fields": {"state_transition": 1263, "node_type": "N", "subcondition": null, "parent": 5087}}, {"model": "template.logicnode", "pk": 5085, "fields": {"state_transition": 1263, "node_type": "S", "subcondition": 23, "parent": 5084}}, {"model": "template.logicnode", "pk": 5086, "fields": {"state_transition": 1263, "node_type": "S", "subcondition": 13, "parent": 5087}}, {"model": "template.logicnode", "pk": 5087, "fields": {"state_transition": 1263, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5088, "fields": {"state_transition": 1264, "node_type": "N", "subcondition": null, "parent": 5092}}, {"model": "template.logicnode", "pk": 5089, "fields": {"state_transition": 1264, "node_type": "S", "subcondition": 23, "parent": 5088}}, {"model": "template.logicnode", "pk": 5090, "fields": {"state_transition": 1264, "node_type": "S", "subcondition": 17, "parent": 5092}}, {"model": "template.logicnode", "pk": 5091, "fields": {"state_transition": 1264, "node_type": "S", "subcondition": 25, "parent": 5092}}, {"model": "template.logicnode", "pk": 5092, "fields": {"state_transition": 1264, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5093, "fields": {"state_transition": 1265, "node_type": "N", "subcondition": null, "parent": 5096}}, {"model": "template.logicnode", "pk": 5094, "fields": {"state_transition": 1265, "node_type": "S", "subcondition": 23, "parent": 5093}}, {"model": "template.logicnode", "pk": 5095, "fields": {"state_transition": 1265, "node_type": "S", "subcondition": 17, "parent": 5096}}, {"model": "template.logicnode", "pk": 5096, "fields": {"state_transition": 1265, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5097, "fields": {"state_transition": 1266, "node_type": "N", "subcondition": null, "parent": 5100}}, {"model": "template.logicnode", "pk": 5098, "fields": {"state_transition": 1266, "node_type": "S", "subcondition": 23, "parent": 5097}}, {"model": "template.logicnode", "pk": 5099, "fields": {"state_transition": 1266, "node_type": "S", "subcondition": 25, "parent": 5100}}, {"model": "template.logicnode", "pk": 5100, "fields": {"state_transition": 1266, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5101, "fields": {"state_transition": 1267, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5102, "fields": {"state_transition": 1267, "node_type": "S", "subcondition": 23, "parent": 5101}}, {"model": "template.logicnode", "pk": 5103, "fields": {"state_transition": 1268, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5104, "fields": {"state_transition": 1269, "node_type": "N", "subcondition": null, "parent": 5110}}, {"model": "template.logicnode", "pk": 5105, "fields": {"state_transition": 1269, "node_type": "S", "subcondition": 23, "parent": 5104}}, {"model": "template.logicnode", "pk": 5106, "fields": {"state_transition": 1269, "node_type": "S", "subcondition": 11, "parent": 5110}}, {"model": "template.logicnode", "pk": 5107, "fields": {"state_transition": 1269, "node_type": "S", "subcondition": 13, "parent": 5110}}, {"model": "template.logicnode", "pk": 5108, "fields": {"state_transition": 1269, "node_type": "S", "subcondition": 17, "parent": 5110}}, {"model": "template.logicnode", "pk": 5109, "fields": {"state_transition": 1269, "node_type": "S", "subcondition": 25, "parent": 5110}}, {"model": "template.logicnode", "pk": 5110, "fields": {"state_transition": 1269, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5111, "fields": {"state_transition": 1270, "node_type": "N", "subcondition": null, "parent": 5116}}, {"model": "template.logicnode", "pk": 5112, "fields": {"state_transition": 1270, "node_type": "S", "subcondition": 23, "parent": 5111}}, {"model": "template.logicnode", "pk": 5113, "fields": {"state_transition": 1270, "node_type": "S", "subcondition": 11, "parent": 5116}}, {"model": "template.logicnode", "pk": 5114, "fields": {"state_transition": 1270, "node_type": "S", "subcondition": 13, "parent": 5116}}, {"model": "template.logicnode", "pk": 5115, "fields": {"state_transition": 1270, "node_type": "S", "subcondition": 17, "parent": 5116}}, {"model": "template.logicnode", "pk": 5116, "fields": {"state_transition": 1270, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5117, "fields": {"state_transition": 1271, "node_type": "N", "subcondition": null, "parent": 5122}}, {"model": "template.logicnode", "pk": 5118, "fields": {"state_transition": 1271, "node_type": "S", "subcondition": 23, "parent": 5117}}, {"model": "template.logicnode", "pk": 5119, "fields": {"state_transition": 1271, "node_type": "S", "subcondition": 11, "parent": 5122}}, {"model": "template.logicnode", "pk": 5120, "fields": {"state_transition": 1271, "node_type": "S", "subcondition": 13, "parent": 5122}}, {"model": "template.logicnode", "pk": 5121, "fields": {"state_transition": 1271, "node_type": "S", "subcondition": 25, "parent": 5122}}, {"model": "template.logicnode", "pk": 5122, "fields": {"state_transition": 1271, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5123, "fields": {"state_transition": 1272, "node_type": "N", "subcondition": null, "parent": 5127}}, {"model": "template.logicnode", "pk": 5124, "fields": {"state_transition": 1272, "node_type": "S", "subcondition": 23, "parent": 5123}}, {"model": "template.logicnode", "pk": 5125, "fields": {"state_transition": 1272, "node_type": "S", "subcondition": 11, "parent": 5127}}, {"model": "template.logicnode", "pk": 5126, "fields": {"state_transition": 1272, "node_type": "S", "subcondition": 13, "parent": 5127}}, {"model": "template.logicnode", "pk": 5127, "fields": {"state_transition": 1272, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5128, "fields": {"state_transition": 1273, "node_type": "N", "subcondition": null, "parent": 5133}}, {"model": "template.logicnode", "pk": 5129, "fields": {"state_transition": 1273, "node_type": "S", "subcondition": 23, "parent": 5128}}, {"model": "template.logicnode", "pk": 5130, "fields": {"state_transition": 1273, "node_type": "S", "subcondition": 11, "parent": 5133}}, {"model": "template.logicnode", "pk": 5131, "fields": {"state_transition": 1273, "node_type": "S", "subcondition": 17, "parent": 5133}}, {"model": "template.logicnode", "pk": 5132, "fields": {"state_transition": 1273, "node_type": "S", "subcondition": 25, "parent": 5133}}, {"model": "template.logicnode", "pk": 5133, "fields": {"state_transition": 1273, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5134, "fields": {"state_transition": 1274, "node_type": "N", "subcondition": null, "parent": 5138}}, {"model": "template.logicnode", "pk": 5135, "fields": {"state_transition": 1274, "node_type": "S", "subcondition": 23, "parent": 5134}}, {"model": "template.logicnode", "pk": 5136, "fields": {"state_transition": 1274, "node_type": "S", "subcondition": 11, "parent": 5138}}, {"model": "template.logicnode", "pk": 5137, "fields": {"state_transition": 1274, "node_type": "S", "subcondition": 17, "parent": 5138}}, {"model": "template.logicnode", "pk": 5138, "fields": {"state_transition": 1274, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5139, "fields": {"state_transition": 1275, "node_type": "N", "subcondition": null, "parent": 5143}}, {"model": "template.logicnode", "pk": 5140, "fields": {"state_transition": 1275, "node_type": "S", "subcondition": 23, "parent": 5139}}, {"model": "template.logicnode", "pk": 5141, "fields": {"state_transition": 1275, "node_type": "S", "subcondition": 11, "parent": 5143}}, {"model": "template.logicnode", "pk": 5142, "fields": {"state_transition": 1275, "node_type": "S", "subcondition": 25, "parent": 5143}}, {"model": "template.logicnode", "pk": 5143, "fields": {"state_transition": 1275, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5144, "fields": {"state_transition": 1276, "node_type": "N", "subcondition": null, "parent": 5147}}, {"model": "template.logicnode", "pk": 5145, "fields": {"state_transition": 1276, "node_type": "S", "subcondition": 23, "parent": 5144}}, {"model": "template.logicnode", "pk": 5146, "fields": {"state_transition": 1276, "node_type": "S", "subcondition": 11, "parent": 5147}}, {"model": "template.logicnode", "pk": 5147, "fields": {"state_transition": 1276, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5148, "fields": {"state_transition": 1277, "node_type": "N", "subcondition": null, "parent": 5153}}, {"model": "template.logicnode", "pk": 5149, "fields": {"state_transition": 1277, "node_type": "S", "subcondition": 23, "parent": 5148}}, {"model": "template.logicnode", "pk": 5150, "fields": {"state_transition": 1277, "node_type": "S", "subcondition": 13, "parent": 5153}}, {"model": "template.logicnode", "pk": 5151, "fields": {"state_transition": 1277, "node_type": "S", "subcondition": 17, "parent": 5153}}, {"model": "template.logicnode", "pk": 5152, "fields": {"state_transition": 1277, "node_type": "S", "subcondition": 25, "parent": 5153}}, {"model": "template.logicnode", "pk": 5153, "fields": {"state_transition": 1277, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5154, "fields": {"state_transition": 1278, "node_type": "N", "subcondition": null, "parent": 5158}}, {"model": "template.logicnode", "pk": 5155, "fields": {"state_transition": 1278, "node_type": "S", "subcondition": 23, "parent": 5154}}, {"model": "template.logicnode", "pk": 5156, "fields": {"state_transition": 1278, "node_type": "S", "subcondition": 13, "parent": 5158}}, {"model": "template.logicnode", "pk": 5157, "fields": {"state_transition": 1278, "node_type": "S", "subcondition": 17, "parent": 5158}}, {"model": "template.logicnode", "pk": 5158, "fields": {"state_transition": 1278, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5159, "fields": {"state_transition": 1279, "node_type": "N", "subcondition": null, "parent": 5163}}, {"model": "template.logicnode", "pk": 5160, "fields": {"state_transition": 1279, "node_type": "S", "subcondition": 23, "parent": 5159}}, {"model": "template.logicnode", "pk": 5161, "fields": {"state_transition": 1279, "node_type": "S", "subcondition": 13, "parent": 5163}}, {"model": "template.logicnode", "pk": 5162, "fields": {"state_transition": 1279, "node_type": "S", "subcondition": 25, "parent": 5163}}, {"model": "template.logicnode", "pk": 5163, "fields": {"state_transition": 1279, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5164, "fields": {"state_transition": 1280, "node_type": "N", "subcondition": null, "parent": 5167}}, {"model": "template.logicnode", "pk": 5165, "fields": {"state_transition": 1280, "node_type": "S", "subcondition": 23, "parent": 5164}}, {"model": "template.logicnode", "pk": 5166, "fields": {"state_transition": 1280, "node_type": "S", "subcondition": 13, "parent": 5167}}, {"model": "template.logicnode", "pk": 5167, "fields": {"state_transition": 1280, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5168, "fields": {"state_transition": 1281, "node_type": "N", "subcondition": null, "parent": 5172}}, {"model": "template.logicnode", "pk": 5169, "fields": {"state_transition": 1281, "node_type": "S", "subcondition": 23, "parent": 5168}}, {"model": "template.logicnode", "pk": 5170, "fields": {"state_transition": 1281, "node_type": "S", "subcondition": 17, "parent": 5172}}, {"model": "template.logicnode", "pk": 5171, "fields": {"state_transition": 1281, "node_type": "S", "subcondition": 25, "parent": 5172}}, {"model": "template.logicnode", "pk": 5172, "fields": {"state_transition": 1281, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5173, "fields": {"state_transition": 1282, "node_type": "N", "subcondition": null, "parent": 5176}}, {"model": "template.logicnode", "pk": 5174, "fields": {"state_transition": 1282, "node_type": "S", "subcondition": 23, "parent": 5173}}, {"model": "template.logicnode", "pk": 5175, "fields": {"state_transition": 1282, "node_type": "S", "subcondition": 17, "parent": 5176}}, {"model": "template.logicnode", "pk": 5176, "fields": {"state_transition": 1282, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5177, "fields": {"state_transition": 1283, "node_type": "N", "subcondition": null, "parent": 5180}}, {"model": "template.logicnode", "pk": 5178, "fields": {"state_transition": 1283, "node_type": "S", "subcondition": 23, "parent": 5177}}, {"model": "template.logicnode", "pk": 5179, "fields": {"state_transition": 1283, "node_type": "S", "subcondition": 25, "parent": 5180}}, {"model": "template.logicnode", "pk": 5180, "fields": {"state_transition": 1283, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5181, "fields": {"state_transition": 1284, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5182, "fields": {"state_transition": 1284, "node_type": "S", "subcondition": 23, "parent": 5181}}, {"model": "template.logicnode", "pk": 5183, "fields": {"state_transition": 1285, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5184, "fields": {"state_transition": 1286, "node_type": "N", "subcondition": null, "parent": 5190}}, {"model": "template.logicnode", "pk": 5185, "fields": {"state_transition": 1286, "node_type": "S", "subcondition": 23, "parent": 5184}}, {"model": "template.logicnode", "pk": 5186, "fields": {"state_transition": 1286, "node_type": "S", "subcondition": 11, "parent": 5190}}, {"model": "template.logicnode", "pk": 5187, "fields": {"state_transition": 1286, "node_type": "S", "subcondition": 13, "parent": 5190}}, {"model": "template.logicnode", "pk": 5188, "fields": {"state_transition": 1286, "node_type": "S", "subcondition": 17, "parent": 5190}}, {"model": "template.logicnode", "pk": 5189, "fields": {"state_transition": 1286, "node_type": "S", "subcondition": 25, "parent": 5190}}, {"model": "template.logicnode", "pk": 5190, "fields": {"state_transition": 1286, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5191, "fields": {"state_transition": 1287, "node_type": "N", "subcondition": null, "parent": 5196}}, {"model": "template.logicnode", "pk": 5192, "fields": {"state_transition": 1287, "node_type": "S", "subcondition": 23, "parent": 5191}}, {"model": "template.logicnode", "pk": 5193, "fields": {"state_transition": 1287, "node_type": "S", "subcondition": 11, "parent": 5196}}, {"model": "template.logicnode", "pk": 5194, "fields": {"state_transition": 1287, "node_type": "S", "subcondition": 13, "parent": 5196}}, {"model": "template.logicnode", "pk": 5195, "fields": {"state_transition": 1287, "node_type": "S", "subcondition": 17, "parent": 5196}}, {"model": "template.logicnode", "pk": 5196, "fields": {"state_transition": 1287, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5197, "fields": {"state_transition": 1288, "node_type": "N", "subcondition": null, "parent": 5202}}, {"model": "template.logicnode", "pk": 5198, "fields": {"state_transition": 1288, "node_type": "S", "subcondition": 23, "parent": 5197}}, {"model": "template.logicnode", "pk": 5199, "fields": {"state_transition": 1288, "node_type": "S", "subcondition": 11, "parent": 5202}}, {"model": "template.logicnode", "pk": 5200, "fields": {"state_transition": 1288, "node_type": "S", "subcondition": 13, "parent": 5202}}, {"model": "template.logicnode", "pk": 5201, "fields": {"state_transition": 1288, "node_type": "S", "subcondition": 25, "parent": 5202}}, {"model": "template.logicnode", "pk": 5202, "fields": {"state_transition": 1288, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5203, "fields": {"state_transition": 1289, "node_type": "N", "subcondition": null, "parent": 5207}}, {"model": "template.logicnode", "pk": 5204, "fields": {"state_transition": 1289, "node_type": "S", "subcondition": 23, "parent": 5203}}, {"model": "template.logicnode", "pk": 5205, "fields": {"state_transition": 1289, "node_type": "S", "subcondition": 11, "parent": 5207}}, {"model": "template.logicnode", "pk": 5206, "fields": {"state_transition": 1289, "node_type": "S", "subcondition": 13, "parent": 5207}}, {"model": "template.logicnode", "pk": 5207, "fields": {"state_transition": 1289, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5208, "fields": {"state_transition": 1290, "node_type": "N", "subcondition": null, "parent": 5213}}, {"model": "template.logicnode", "pk": 5209, "fields": {"state_transition": 1290, "node_type": "S", "subcondition": 23, "parent": 5208}}, {"model": "template.logicnode", "pk": 5210, "fields": {"state_transition": 1290, "node_type": "S", "subcondition": 11, "parent": 5213}}, {"model": "template.logicnode", "pk": 5211, "fields": {"state_transition": 1290, "node_type": "S", "subcondition": 17, "parent": 5213}}, {"model": "template.logicnode", "pk": 5212, "fields": {"state_transition": 1290, "node_type": "S", "subcondition": 25, "parent": 5213}}, {"model": "template.logicnode", "pk": 5213, "fields": {"state_transition": 1290, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5214, "fields": {"state_transition": 1291, "node_type": "N", "subcondition": null, "parent": 5218}}, {"model": "template.logicnode", "pk": 5215, "fields": {"state_transition": 1291, "node_type": "S", "subcondition": 23, "parent": 5214}}, {"model": "template.logicnode", "pk": 5216, "fields": {"state_transition": 1291, "node_type": "S", "subcondition": 11, "parent": 5218}}, {"model": "template.logicnode", "pk": 5217, "fields": {"state_transition": 1291, "node_type": "S", "subcondition": 17, "parent": 5218}}, {"model": "template.logicnode", "pk": 5218, "fields": {"state_transition": 1291, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5219, "fields": {"state_transition": 1292, "node_type": "N", "subcondition": null, "parent": 5223}}, {"model": "template.logicnode", "pk": 5220, "fields": {"state_transition": 1292, "node_type": "S", "subcondition": 23, "parent": 5219}}, {"model": "template.logicnode", "pk": 5221, "fields": {"state_transition": 1292, "node_type": "S", "subcondition": 11, "parent": 5223}}, {"model": "template.logicnode", "pk": 5222, "fields": {"state_transition": 1292, "node_type": "S", "subcondition": 25, "parent": 5223}}, {"model": "template.logicnode", "pk": 5223, "fields": {"state_transition": 1292, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5224, "fields": {"state_transition": 1293, "node_type": "N", "subcondition": null, "parent": 5227}}, {"model": "template.logicnode", "pk": 5225, "fields": {"state_transition": 1293, "node_type": "S", "subcondition": 23, "parent": 5224}}, {"model": "template.logicnode", "pk": 5226, "fields": {"state_transition": 1293, "node_type": "S", "subcondition": 11, "parent": 5227}}, {"model": "template.logicnode", "pk": 5227, "fields": {"state_transition": 1293, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5228, "fields": {"state_transition": 1294, "node_type": "N", "subcondition": null, "parent": 5233}}, {"model": "template.logicnode", "pk": 5229, "fields": {"state_transition": 1294, "node_type": "S", "subcondition": 23, "parent": 5228}}, {"model": "template.logicnode", "pk": 5230, "fields": {"state_transition": 1294, "node_type": "S", "subcondition": 13, "parent": 5233}}, {"model": "template.logicnode", "pk": 5231, "fields": {"state_transition": 1294, "node_type": "S", "subcondition": 17, "parent": 5233}}, {"model": "template.logicnode", "pk": 5232, "fields": {"state_transition": 1294, "node_type": "S", "subcondition": 25, "parent": 5233}}, {"model": "template.logicnode", "pk": 5233, "fields": {"state_transition": 1294, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5234, "fields": {"state_transition": 1295, "node_type": "N", "subcondition": null, "parent": 5238}}, {"model": "template.logicnode", "pk": 5235, "fields": {"state_transition": 1295, "node_type": "S", "subcondition": 23, "parent": 5234}}, {"model": "template.logicnode", "pk": 5236, "fields": {"state_transition": 1295, "node_type": "S", "subcondition": 13, "parent": 5238}}, {"model": "template.logicnode", "pk": 5237, "fields": {"state_transition": 1295, "node_type": "S", "subcondition": 17, "parent": 5238}}, {"model": "template.logicnode", "pk": 5238, "fields": {"state_transition": 1295, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5239, "fields": {"state_transition": 1296, "node_type": "N", "subcondition": null, "parent": 5243}}, {"model": "template.logicnode", "pk": 5240, "fields": {"state_transition": 1296, "node_type": "S", "subcondition": 23, "parent": 5239}}, {"model": "template.logicnode", "pk": 5241, "fields": {"state_transition": 1296, "node_type": "S", "subcondition": 13, "parent": 5243}}, {"model": "template.logicnode", "pk": 5242, "fields": {"state_transition": 1296, "node_type": "S", "subcondition": 25, "parent": 5243}}, {"model": "template.logicnode", "pk": 5243, "fields": {"state_transition": 1296, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5244, "fields": {"state_transition": 1297, "node_type": "N", "subcondition": null, "parent": 5247}}, {"model": "template.logicnode", "pk": 5245, "fields": {"state_transition": 1297, "node_type": "S", "subcondition": 23, "parent": 5244}}, {"model": "template.logicnode", "pk": 5246, "fields": {"state_transition": 1297, "node_type": "S", "subcondition": 13, "parent": 5247}}, {"model": "template.logicnode", "pk": 5247, "fields": {"state_transition": 1297, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5248, "fields": {"state_transition": 1298, "node_type": "N", "subcondition": null, "parent": 5252}}, {"model": "template.logicnode", "pk": 5249, "fields": {"state_transition": 1298, "node_type": "S", "subcondition": 23, "parent": 5248}}, {"model": "template.logicnode", "pk": 5250, "fields": {"state_transition": 1298, "node_type": "S", "subcondition": 17, "parent": 5252}}, {"model": "template.logicnode", "pk": 5251, "fields": {"state_transition": 1298, "node_type": "S", "subcondition": 25, "parent": 5252}}, {"model": "template.logicnode", "pk": 5252, "fields": {"state_transition": 1298, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5253, "fields": {"state_transition": 1299, "node_type": "N", "subcondition": null, "parent": 5256}}, {"model": "template.logicnode", "pk": 5254, "fields": {"state_transition": 1299, "node_type": "S", "subcondition": 23, "parent": 5253}}, {"model": "template.logicnode", "pk": 5255, "fields": {"state_transition": 1299, "node_type": "S", "subcondition": 17, "parent": 5256}}, {"model": "template.logicnode", "pk": 5256, "fields": {"state_transition": 1299, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5257, "fields": {"state_transition": 1300, "node_type": "N", "subcondition": null, "parent": 5260}}, {"model": "template.logicnode", "pk": 5258, "fields": {"state_transition": 1300, "node_type": "S", "subcondition": 23, "parent": 5257}}, {"model": "template.logicnode", "pk": 5259, "fields": {"state_transition": 1300, "node_type": "S", "subcondition": 25, "parent": 5260}}, {"model": "template.logicnode", "pk": 5260, "fields": {"state_transition": 1300, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5261, "fields": {"state_transition": 1301, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5262, "fields": {"state_transition": 1301, "node_type": "S", "subcondition": 23, "parent": 5261}}, {"model": "template.logicnode", "pk": 5263, "fields": {"state_transition": 1302, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5264, "fields": {"state_transition": 1303, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5265, "fields": {"state_transition": 1304, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5266, "fields": {"state_transition": 1305, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5267, "fields": {"state_transition": 1306, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5268, "fields": {"state_transition": 1307, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5269, "fields": {"state_transition": 1308, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5270, "fields": {"state_transition": 1309, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5271, "fields": {"state_transition": 1310, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5272, "fields": {"state_transition": 1311, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5273, "fields": {"state_transition": 1312, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5274, "fields": {"state_transition": 1313, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5275, "fields": {"state_transition": 1314, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5276, "fields": {"state_transition": 1315, "node_type": "N", "subcondition": null, "parent": 5280}}, {"model": "template.logicnode", "pk": 5277, "fields": {"state_transition": 1315, "node_type": "S", "subcondition": 23, "parent": 5276}}, {"model": "template.logicnode", "pk": 5278, "fields": {"state_transition": 1315, "node_type": "S", "subcondition": 11, "parent": 5280}}, {"model": "template.logicnode", "pk": 5279, "fields": {"state_transition": 1315, "node_type": "S", "subcondition": 17, "parent": 5280}}, {"model": "template.logicnode", "pk": 5280, "fields": {"state_transition": 1315, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5281, "fields": {"state_transition": 1316, "node_type": "N", "subcondition": null, "parent": 5284}}, {"model": "template.logicnode", "pk": 5282, "fields": {"state_transition": 1316, "node_type": "S", "subcondition": 23, "parent": 5281}}, {"model": "template.logicnode", "pk": 5283, "fields": {"state_transition": 1316, "node_type": "S", "subcondition": 11, "parent": 5284}}, {"model": "template.logicnode", "pk": 5284, "fields": {"state_transition": 1316, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5285, "fields": {"state_transition": 1317, "node_type": "N", "subcondition": null, "parent": 5288}}, {"model": "template.logicnode", "pk": 5286, "fields": {"state_transition": 1317, "node_type": "S", "subcondition": 23, "parent": 5285}}, {"model": "template.logicnode", "pk": 5287, "fields": {"state_transition": 1317, "node_type": "S", "subcondition": 17, "parent": 5288}}, {"model": "template.logicnode", "pk": 5288, "fields": {"state_transition": 1317, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5289, "fields": {"state_transition": 1318, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5290, "fields": {"state_transition": 1318, "node_type": "S", "subcondition": 23, "parent": 5289}}, {"model": "template.logicnode", "pk": 5291, "fields": {"state_transition": 1319, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5292, "fields": {"state_transition": 1320, "node_type": "N", "subcondition": null, "parent": 5296}}, {"model": "template.logicnode", "pk": 5293, "fields": {"state_transition": 1320, "node_type": "S", "subcondition": 23, "parent": 5292}}, {"model": "template.logicnode", "pk": 5294, "fields": {"state_transition": 1320, "node_type": "S", "subcondition": 11, "parent": 5296}}, {"model": "template.logicnode", "pk": 5295, "fields": {"state_transition": 1320, "node_type": "S", "subcondition": 17, "parent": 5296}}, {"model": "template.logicnode", "pk": 5296, "fields": {"state_transition": 1320, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5297, "fields": {"state_transition": 1321, "node_type": "N", "subcondition": null, "parent": 5300}}, {"model": "template.logicnode", "pk": 5298, "fields": {"state_transition": 1321, "node_type": "S", "subcondition": 23, "parent": 5297}}, {"model": "template.logicnode", "pk": 5299, "fields": {"state_transition": 1321, "node_type": "S", "subcondition": 11, "parent": 5300}}, {"model": "template.logicnode", "pk": 5300, "fields": {"state_transition": 1321, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5301, "fields": {"state_transition": 1322, "node_type": "N", "subcondition": null, "parent": 5304}}, {"model": "template.logicnode", "pk": 5302, "fields": {"state_transition": 1322, "node_type": "S", "subcondition": 23, "parent": 5301}}, {"model": "template.logicnode", "pk": 5303, "fields": {"state_transition": 1322, "node_type": "S", "subcondition": 17, "parent": 5304}}, {"model": "template.logicnode", "pk": 5304, "fields": {"state_transition": 1322, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5305, "fields": {"state_transition": 1323, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5306, "fields": {"state_transition": 1323, "node_type": "S", "subcondition": 23, "parent": 5305}}, {"model": "template.logicnode", "pk": 5307, "fields": {"state_transition": 1324, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5308, "fields": {"state_transition": 1325, "node_type": "N", "subcondition": null, "parent": 5312}}, {"model": "template.logicnode", "pk": 5309, "fields": {"state_transition": 1325, "node_type": "S", "subcondition": 23, "parent": 5308}}, {"model": "template.logicnode", "pk": 5310, "fields": {"state_transition": 1325, "node_type": "S", "subcondition": 11, "parent": 5312}}, {"model": "template.logicnode", "pk": 5311, "fields": {"state_transition": 1325, "node_type": "S", "subcondition": 17, "parent": 5312}}, {"model": "template.logicnode", "pk": 5312, "fields": {"state_transition": 1325, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5313, "fields": {"state_transition": 1326, "node_type": "N", "subcondition": null, "parent": 5316}}, {"model": "template.logicnode", "pk": 5314, "fields": {"state_transition": 1326, "node_type": "S", "subcondition": 23, "parent": 5313}}, {"model": "template.logicnode", "pk": 5315, "fields": {"state_transition": 1326, "node_type": "S", "subcondition": 11, "parent": 5316}}, {"model": "template.logicnode", "pk": 5316, "fields": {"state_transition": 1326, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5317, "fields": {"state_transition": 1327, "node_type": "N", "subcondition": null, "parent": 5320}}, {"model": "template.logicnode", "pk": 5318, "fields": {"state_transition": 1327, "node_type": "S", "subcondition": 23, "parent": 5317}}, {"model": "template.logicnode", "pk": 5319, "fields": {"state_transition": 1327, "node_type": "S", "subcondition": 17, "parent": 5320}}, {"model": "template.logicnode", "pk": 5320, "fields": {"state_transition": 1327, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5321, "fields": {"state_transition": 1328, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5322, "fields": {"state_transition": 1328, "node_type": "S", "subcondition": 23, "parent": 5321}}, {"model": "template.logicnode", "pk": 5323, "fields": {"state_transition": 1329, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5324, "fields": {"state_transition": 1330, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5325, "fields": {"state_transition": 1331, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5326, "fields": {"state_transition": 1332, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5327, "fields": {"state_transition": 1333, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5328, "fields": {"state_transition": 1334, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5329, "fields": {"state_transition": 1335, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5330, "fields": {"state_transition": 1336, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5331, "fields": {"state_transition": 1337, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5332, "fields": {"state_transition": 1338, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5333, "fields": {"state_transition": 1339, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5334, "fields": {"state_transition": 1340, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5335, "fields": {"state_transition": 1341, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5336, "fields": {"state_transition": 1342, "node_type": "N", "subcondition": null, "parent": 5342}}, {"model": "template.logicnode", "pk": 5337, "fields": {"state_transition": 1342, "node_type": "S", "subcondition": 23, "parent": 5336}}, {"model": "template.logicnode", "pk": 5338, "fields": {"state_transition": 1342, "node_type": "S", "subcondition": 11, "parent": 5342}}, {"model": "template.logicnode", "pk": 5339, "fields": {"state_transition": 1342, "node_type": "S", "subcondition": 13, "parent": 5342}}, {"model": "template.logicnode", "pk": 5340, "fields": {"state_transition": 1342, "node_type": "S", "subcondition": 17, "parent": 5342}}, {"model": "template.logicnode", "pk": 5341, "fields": {"state_transition": 1342, "node_type": "S", "subcondition": 25, "parent": 5342}}, {"model": "template.logicnode", "pk": 5342, "fields": {"state_transition": 1342, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5343, "fields": {"state_transition": 1343, "node_type": "N", "subcondition": null, "parent": 5348}}, {"model": "template.logicnode", "pk": 5344, "fields": {"state_transition": 1343, "node_type": "S", "subcondition": 23, "parent": 5343}}, {"model": "template.logicnode", "pk": 5345, "fields": {"state_transition": 1343, "node_type": "S", "subcondition": 11, "parent": 5348}}, {"model": "template.logicnode", "pk": 5346, "fields": {"state_transition": 1343, "node_type": "S", "subcondition": 13, "parent": 5348}}, {"model": "template.logicnode", "pk": 5347, "fields": {"state_transition": 1343, "node_type": "S", "subcondition": 17, "parent": 5348}}, {"model": "template.logicnode", "pk": 5348, "fields": {"state_transition": 1343, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5349, "fields": {"state_transition": 1344, "node_type": "N", "subcondition": null, "parent": 5354}}, {"model": "template.logicnode", "pk": 5350, "fields": {"state_transition": 1344, "node_type": "S", "subcondition": 23, "parent": 5349}}, {"model": "template.logicnode", "pk": 5351, "fields": {"state_transition": 1344, "node_type": "S", "subcondition": 11, "parent": 5354}}, {"model": "template.logicnode", "pk": 5352, "fields": {"state_transition": 1344, "node_type": "S", "subcondition": 13, "parent": 5354}}, {"model": "template.logicnode", "pk": 5353, "fields": {"state_transition": 1344, "node_type": "S", "subcondition": 25, "parent": 5354}}, {"model": "template.logicnode", "pk": 5354, "fields": {"state_transition": 1344, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5355, "fields": {"state_transition": 1345, "node_type": "N", "subcondition": null, "parent": 5359}}, {"model": "template.logicnode", "pk": 5356, "fields": {"state_transition": 1345, "node_type": "S", "subcondition": 23, "parent": 5355}}, {"model": "template.logicnode", "pk": 5357, "fields": {"state_transition": 1345, "node_type": "S", "subcondition": 11, "parent": 5359}}, {"model": "template.logicnode", "pk": 5358, "fields": {"state_transition": 1345, "node_type": "S", "subcondition": 13, "parent": 5359}}, {"model": "template.logicnode", "pk": 5359, "fields": {"state_transition": 1345, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5360, "fields": {"state_transition": 1346, "node_type": "N", "subcondition": null, "parent": 5365}}, {"model": "template.logicnode", "pk": 5361, "fields": {"state_transition": 1346, "node_type": "S", "subcondition": 23, "parent": 5360}}, {"model": "template.logicnode", "pk": 5362, "fields": {"state_transition": 1346, "node_type": "S", "subcondition": 11, "parent": 5365}}, {"model": "template.logicnode", "pk": 5363, "fields": {"state_transition": 1346, "node_type": "S", "subcondition": 17, "parent": 5365}}, {"model": "template.logicnode", "pk": 5364, "fields": {"state_transition": 1346, "node_type": "S", "subcondition": 25, "parent": 5365}}, {"model": "template.logicnode", "pk": 5365, "fields": {"state_transition": 1346, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5366, "fields": {"state_transition": 1347, "node_type": "N", "subcondition": null, "parent": 5370}}, {"model": "template.logicnode", "pk": 5367, "fields": {"state_transition": 1347, "node_type": "S", "subcondition": 23, "parent": 5366}}, {"model": "template.logicnode", "pk": 5368, "fields": {"state_transition": 1347, "node_type": "S", "subcondition": 11, "parent": 5370}}, {"model": "template.logicnode", "pk": 5369, "fields": {"state_transition": 1347, "node_type": "S", "subcondition": 17, "parent": 5370}}, {"model": "template.logicnode", "pk": 5370, "fields": {"state_transition": 1347, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5371, "fields": {"state_transition": 1348, "node_type": "N", "subcondition": null, "parent": 5375}}, {"model": "template.logicnode", "pk": 5372, "fields": {"state_transition": 1348, "node_type": "S", "subcondition": 23, "parent": 5371}}, {"model": "template.logicnode", "pk": 5373, "fields": {"state_transition": 1348, "node_type": "S", "subcondition": 11, "parent": 5375}}, {"model": "template.logicnode", "pk": 5374, "fields": {"state_transition": 1348, "node_type": "S", "subcondition": 25, "parent": 5375}}, {"model": "template.logicnode", "pk": 5375, "fields": {"state_transition": 1348, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5376, "fields": {"state_transition": 1349, "node_type": "N", "subcondition": null, "parent": 5379}}, {"model": "template.logicnode", "pk": 5377, "fields": {"state_transition": 1349, "node_type": "S", "subcondition": 23, "parent": 5376}}, {"model": "template.logicnode", "pk": 5378, "fields": {"state_transition": 1349, "node_type": "S", "subcondition": 11, "parent": 5379}}, {"model": "template.logicnode", "pk": 5379, "fields": {"state_transition": 1349, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5380, "fields": {"state_transition": 1350, "node_type": "N", "subcondition": null, "parent": 5385}}, {"model": "template.logicnode", "pk": 5381, "fields": {"state_transition": 1350, "node_type": "S", "subcondition": 23, "parent": 5380}}, {"model": "template.logicnode", "pk": 5382, "fields": {"state_transition": 1350, "node_type": "S", "subcondition": 13, "parent": 5385}}, {"model": "template.logicnode", "pk": 5383, "fields": {"state_transition": 1350, "node_type": "S", "subcondition": 17, "parent": 5385}}, {"model": "template.logicnode", "pk": 5384, "fields": {"state_transition": 1350, "node_type": "S", "subcondition": 25, "parent": 5385}}, {"model": "template.logicnode", "pk": 5385, "fields": {"state_transition": 1350, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5386, "fields": {"state_transition": 1351, "node_type": "N", "subcondition": null, "parent": 5390}}, {"model": "template.logicnode", "pk": 5387, "fields": {"state_transition": 1351, "node_type": "S", "subcondition": 23, "parent": 5386}}, {"model": "template.logicnode", "pk": 5388, "fields": {"state_transition": 1351, "node_type": "S", "subcondition": 13, "parent": 5390}}, {"model": "template.logicnode", "pk": 5389, "fields": {"state_transition": 1351, "node_type": "S", "subcondition": 17, "parent": 5390}}, {"model": "template.logicnode", "pk": 5390, "fields": {"state_transition": 1351, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5391, "fields": {"state_transition": 1352, "node_type": "N", "subcondition": null, "parent": 5395}}, {"model": "template.logicnode", "pk": 5392, "fields": {"state_transition": 1352, "node_type": "S", "subcondition": 23, "parent": 5391}}, {"model": "template.logicnode", "pk": 5393, "fields": {"state_transition": 1352, "node_type": "S", "subcondition": 13, "parent": 5395}}, {"model": "template.logicnode", "pk": 5394, "fields": {"state_transition": 1352, "node_type": "S", "subcondition": 25, "parent": 5395}}, {"model": "template.logicnode", "pk": 5395, "fields": {"state_transition": 1352, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5396, "fields": {"state_transition": 1353, "node_type": "N", "subcondition": null, "parent": 5399}}, {"model": "template.logicnode", "pk": 5397, "fields": {"state_transition": 1353, "node_type": "S", "subcondition": 23, "parent": 5396}}, {"model": "template.logicnode", "pk": 5398, "fields": {"state_transition": 1353, "node_type": "S", "subcondition": 13, "parent": 5399}}, {"model": "template.logicnode", "pk": 5399, "fields": {"state_transition": 1353, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5400, "fields": {"state_transition": 1354, "node_type": "N", "subcondition": null, "parent": 5404}}, {"model": "template.logicnode", "pk": 5401, "fields": {"state_transition": 1354, "node_type": "S", "subcondition": 23, "parent": 5400}}, {"model": "template.logicnode", "pk": 5402, "fields": {"state_transition": 1354, "node_type": "S", "subcondition": 17, "parent": 5404}}, {"model": "template.logicnode", "pk": 5403, "fields": {"state_transition": 1354, "node_type": "S", "subcondition": 25, "parent": 5404}}, {"model": "template.logicnode", "pk": 5404, "fields": {"state_transition": 1354, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5405, "fields": {"state_transition": 1355, "node_type": "N", "subcondition": null, "parent": 5408}}, {"model": "template.logicnode", "pk": 5406, "fields": {"state_transition": 1355, "node_type": "S", "subcondition": 23, "parent": 5405}}, {"model": "template.logicnode", "pk": 5407, "fields": {"state_transition": 1355, "node_type": "S", "subcondition": 17, "parent": 5408}}, {"model": "template.logicnode", "pk": 5408, "fields": {"state_transition": 1355, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5409, "fields": {"state_transition": 1356, "node_type": "N", "subcondition": null, "parent": 5412}}, {"model": "template.logicnode", "pk": 5410, "fields": {"state_transition": 1356, "node_type": "S", "subcondition": 23, "parent": 5409}}, {"model": "template.logicnode", "pk": 5411, "fields": {"state_transition": 1356, "node_type": "S", "subcondition": 25, "parent": 5412}}, {"model": "template.logicnode", "pk": 5412, "fields": {"state_transition": 1356, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5413, "fields": {"state_transition": 1357, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5414, "fields": {"state_transition": 1357, "node_type": "S", "subcondition": 23, "parent": 5413}}, {"model": "template.logicnode", "pk": 5415, "fields": {"state_transition": 1358, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5416, "fields": {"state_transition": 1359, "node_type": "N", "subcondition": null, "parent": 5422}}, {"model": "template.logicnode", "pk": 5417, "fields": {"state_transition": 1359, "node_type": "S", "subcondition": 23, "parent": 5416}}, {"model": "template.logicnode", "pk": 5418, "fields": {"state_transition": 1359, "node_type": "S", "subcondition": 11, "parent": 5422}}, {"model": "template.logicnode", "pk": 5419, "fields": {"state_transition": 1359, "node_type": "S", "subcondition": 13, "parent": 5422}}, {"model": "template.logicnode", "pk": 5420, "fields": {"state_transition": 1359, "node_type": "S", "subcondition": 17, "parent": 5422}}, {"model": "template.logicnode", "pk": 5421, "fields": {"state_transition": 1359, "node_type": "S", "subcondition": 25, "parent": 5422}}, {"model": "template.logicnode", "pk": 5422, "fields": {"state_transition": 1359, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5423, "fields": {"state_transition": 1360, "node_type": "N", "subcondition": null, "parent": 5428}}, {"model": "template.logicnode", "pk": 5424, "fields": {"state_transition": 1360, "node_type": "S", "subcondition": 23, "parent": 5423}}, {"model": "template.logicnode", "pk": 5425, "fields": {"state_transition": 1360, "node_type": "S", "subcondition": 11, "parent": 5428}}, {"model": "template.logicnode", "pk": 5426, "fields": {"state_transition": 1360, "node_type": "S", "subcondition": 13, "parent": 5428}}, {"model": "template.logicnode", "pk": 5427, "fields": {"state_transition": 1360, "node_type": "S", "subcondition": 17, "parent": 5428}}, {"model": "template.logicnode", "pk": 5428, "fields": {"state_transition": 1360, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5429, "fields": {"state_transition": 1361, "node_type": "N", "subcondition": null, "parent": 5434}}, {"model": "template.logicnode", "pk": 5430, "fields": {"state_transition": 1361, "node_type": "S", "subcondition": 23, "parent": 5429}}, {"model": "template.logicnode", "pk": 5431, "fields": {"state_transition": 1361, "node_type": "S", "subcondition": 11, "parent": 5434}}, {"model": "template.logicnode", "pk": 5432, "fields": {"state_transition": 1361, "node_type": "S", "subcondition": 13, "parent": 5434}}, {"model": "template.logicnode", "pk": 5433, "fields": {"state_transition": 1361, "node_type": "S", "subcondition": 25, "parent": 5434}}, {"model": "template.logicnode", "pk": 5434, "fields": {"state_transition": 1361, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5435, "fields": {"state_transition": 1362, "node_type": "N", "subcondition": null, "parent": 5439}}, {"model": "template.logicnode", "pk": 5436, "fields": {"state_transition": 1362, "node_type": "S", "subcondition": 23, "parent": 5435}}, {"model": "template.logicnode", "pk": 5437, "fields": {"state_transition": 1362, "node_type": "S", "subcondition": 11, "parent": 5439}}, {"model": "template.logicnode", "pk": 5438, "fields": {"state_transition": 1362, "node_type": "S", "subcondition": 13, "parent": 5439}}, {"model": "template.logicnode", "pk": 5439, "fields": {"state_transition": 1362, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5440, "fields": {"state_transition": 1363, "node_type": "N", "subcondition": null, "parent": 5445}}, {"model": "template.logicnode", "pk": 5441, "fields": {"state_transition": 1363, "node_type": "S", "subcondition": 23, "parent": 5440}}, {"model": "template.logicnode", "pk": 5442, "fields": {"state_transition": 1363, "node_type": "S", "subcondition": 11, "parent": 5445}}, {"model": "template.logicnode", "pk": 5443, "fields": {"state_transition": 1363, "node_type": "S", "subcondition": 17, "parent": 5445}}, {"model": "template.logicnode", "pk": 5444, "fields": {"state_transition": 1363, "node_type": "S", "subcondition": 25, "parent": 5445}}, {"model": "template.logicnode", "pk": 5445, "fields": {"state_transition": 1363, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5446, "fields": {"state_transition": 1364, "node_type": "N", "subcondition": null, "parent": 5450}}, {"model": "template.logicnode", "pk": 5447, "fields": {"state_transition": 1364, "node_type": "S", "subcondition": 23, "parent": 5446}}, {"model": "template.logicnode", "pk": 5448, "fields": {"state_transition": 1364, "node_type": "S", "subcondition": 11, "parent": 5450}}, {"model": "template.logicnode", "pk": 5449, "fields": {"state_transition": 1364, "node_type": "S", "subcondition": 17, "parent": 5450}}, {"model": "template.logicnode", "pk": 5450, "fields": {"state_transition": 1364, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5451, "fields": {"state_transition": 1365, "node_type": "N", "subcondition": null, "parent": 5455}}, {"model": "template.logicnode", "pk": 5452, "fields": {"state_transition": 1365, "node_type": "S", "subcondition": 23, "parent": 5451}}, {"model": "template.logicnode", "pk": 5453, "fields": {"state_transition": 1365, "node_type": "S", "subcondition": 11, "parent": 5455}}, {"model": "template.logicnode", "pk": 5454, "fields": {"state_transition": 1365, "node_type": "S", "subcondition": 25, "parent": 5455}}, {"model": "template.logicnode", "pk": 5455, "fields": {"state_transition": 1365, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5456, "fields": {"state_transition": 1366, "node_type": "N", "subcondition": null, "parent": 5459}}, {"model": "template.logicnode", "pk": 5457, "fields": {"state_transition": 1366, "node_type": "S", "subcondition": 23, "parent": 5456}}, {"model": "template.logicnode", "pk": 5458, "fields": {"state_transition": 1366, "node_type": "S", "subcondition": 11, "parent": 5459}}, {"model": "template.logicnode", "pk": 5459, "fields": {"state_transition": 1366, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5460, "fields": {"state_transition": 1367, "node_type": "N", "subcondition": null, "parent": 5465}}, {"model": "template.logicnode", "pk": 5461, "fields": {"state_transition": 1367, "node_type": "S", "subcondition": 23, "parent": 5460}}, {"model": "template.logicnode", "pk": 5462, "fields": {"state_transition": 1367, "node_type": "S", "subcondition": 13, "parent": 5465}}, {"model": "template.logicnode", "pk": 5463, "fields": {"state_transition": 1367, "node_type": "S", "subcondition": 17, "parent": 5465}}, {"model": "template.logicnode", "pk": 5464, "fields": {"state_transition": 1367, "node_type": "S", "subcondition": 25, "parent": 5465}}, {"model": "template.logicnode", "pk": 5465, "fields": {"state_transition": 1367, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5466, "fields": {"state_transition": 1368, "node_type": "N", "subcondition": null, "parent": 5470}}, {"model": "template.logicnode", "pk": 5467, "fields": {"state_transition": 1368, "node_type": "S", "subcondition": 23, "parent": 5466}}, {"model": "template.logicnode", "pk": 5468, "fields": {"state_transition": 1368, "node_type": "S", "subcondition": 13, "parent": 5470}}, {"model": "template.logicnode", "pk": 5469, "fields": {"state_transition": 1368, "node_type": "S", "subcondition": 17, "parent": 5470}}, {"model": "template.logicnode", "pk": 5470, "fields": {"state_transition": 1368, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5471, "fields": {"state_transition": 1369, "node_type": "N", "subcondition": null, "parent": 5475}}, {"model": "template.logicnode", "pk": 5472, "fields": {"state_transition": 1369, "node_type": "S", "subcondition": 23, "parent": 5471}}, {"model": "template.logicnode", "pk": 5473, "fields": {"state_transition": 1369, "node_type": "S", "subcondition": 13, "parent": 5475}}, {"model": "template.logicnode", "pk": 5474, "fields": {"state_transition": 1369, "node_type": "S", "subcondition": 25, "parent": 5475}}, {"model": "template.logicnode", "pk": 5475, "fields": {"state_transition": 1369, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5476, "fields": {"state_transition": 1370, "node_type": "N", "subcondition": null, "parent": 5479}}, {"model": "template.logicnode", "pk": 5477, "fields": {"state_transition": 1370, "node_type": "S", "subcondition": 23, "parent": 5476}}, {"model": "template.logicnode", "pk": 5478, "fields": {"state_transition": 1370, "node_type": "S", "subcondition": 13, "parent": 5479}}, {"model": "template.logicnode", "pk": 5479, "fields": {"state_transition": 1370, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5480, "fields": {"state_transition": 1371, "node_type": "N", "subcondition": null, "parent": 5484}}, {"model": "template.logicnode", "pk": 5481, "fields": {"state_transition": 1371, "node_type": "S", "subcondition": 23, "parent": 5480}}, {"model": "template.logicnode", "pk": 5482, "fields": {"state_transition": 1371, "node_type": "S", "subcondition": 17, "parent": 5484}}, {"model": "template.logicnode", "pk": 5483, "fields": {"state_transition": 1371, "node_type": "S", "subcondition": 25, "parent": 5484}}, {"model": "template.logicnode", "pk": 5484, "fields": {"state_transition": 1371, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5485, "fields": {"state_transition": 1372, "node_type": "N", "subcondition": null, "parent": 5488}}, {"model": "template.logicnode", "pk": 5486, "fields": {"state_transition": 1372, "node_type": "S", "subcondition": 23, "parent": 5485}}, {"model": "template.logicnode", "pk": 5487, "fields": {"state_transition": 1372, "node_type": "S", "subcondition": 17, "parent": 5488}}, {"model": "template.logicnode", "pk": 5488, "fields": {"state_transition": 1372, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5489, "fields": {"state_transition": 1373, "node_type": "N", "subcondition": null, "parent": 5492}}, {"model": "template.logicnode", "pk": 5490, "fields": {"state_transition": 1373, "node_type": "S", "subcondition": 23, "parent": 5489}}, {"model": "template.logicnode", "pk": 5491, "fields": {"state_transition": 1373, "node_type": "S", "subcondition": 25, "parent": 5492}}, {"model": "template.logicnode", "pk": 5492, "fields": {"state_transition": 1373, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5493, "fields": {"state_transition": 1374, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5494, "fields": {"state_transition": 1374, "node_type": "S", "subcondition": 23, "parent": 5493}}, {"model": "template.logicnode", "pk": 5495, "fields": {"state_transition": 1375, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5496, "fields": {"state_transition": 1376, "node_type": "N", "subcondition": null, "parent": 5502}}, {"model": "template.logicnode", "pk": 5497, "fields": {"state_transition": 1376, "node_type": "S", "subcondition": 23, "parent": 5496}}, {"model": "template.logicnode", "pk": 5498, "fields": {"state_transition": 1376, "node_type": "S", "subcondition": 11, "parent": 5502}}, {"model": "template.logicnode", "pk": 5499, "fields": {"state_transition": 1376, "node_type": "S", "subcondition": 13, "parent": 5502}}, {"model": "template.logicnode", "pk": 5500, "fields": {"state_transition": 1376, "node_type": "S", "subcondition": 17, "parent": 5502}}, {"model": "template.logicnode", "pk": 5501, "fields": {"state_transition": 1376, "node_type": "S", "subcondition": 25, "parent": 5502}}, {"model": "template.logicnode", "pk": 5502, "fields": {"state_transition": 1376, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5503, "fields": {"state_transition": 1377, "node_type": "N", "subcondition": null, "parent": 5508}}, {"model": "template.logicnode", "pk": 5504, "fields": {"state_transition": 1377, "node_type": "S", "subcondition": 23, "parent": 5503}}, {"model": "template.logicnode", "pk": 5505, "fields": {"state_transition": 1377, "node_type": "S", "subcondition": 11, "parent": 5508}}, {"model": "template.logicnode", "pk": 5506, "fields": {"state_transition": 1377, "node_type": "S", "subcondition": 13, "parent": 5508}}, {"model": "template.logicnode", "pk": 5507, "fields": {"state_transition": 1377, "node_type": "S", "subcondition": 17, "parent": 5508}}, {"model": "template.logicnode", "pk": 5508, "fields": {"state_transition": 1377, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5509, "fields": {"state_transition": 1378, "node_type": "N", "subcondition": null, "parent": 5514}}, {"model": "template.logicnode", "pk": 5510, "fields": {"state_transition": 1378, "node_type": "S", "subcondition": 23, "parent": 5509}}, {"model": "template.logicnode", "pk": 5511, "fields": {"state_transition": 1378, "node_type": "S", "subcondition": 11, "parent": 5514}}, {"model": "template.logicnode", "pk": 5512, "fields": {"state_transition": 1378, "node_type": "S", "subcondition": 13, "parent": 5514}}, {"model": "template.logicnode", "pk": 5513, "fields": {"state_transition": 1378, "node_type": "S", "subcondition": 25, "parent": 5514}}, {"model": "template.logicnode", "pk": 5514, "fields": {"state_transition": 1378, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5515, "fields": {"state_transition": 1379, "node_type": "N", "subcondition": null, "parent": 5519}}, {"model": "template.logicnode", "pk": 5516, "fields": {"state_transition": 1379, "node_type": "S", "subcondition": 23, "parent": 5515}}, {"model": "template.logicnode", "pk": 5517, "fields": {"state_transition": 1379, "node_type": "S", "subcondition": 11, "parent": 5519}}, {"model": "template.logicnode", "pk": 5518, "fields": {"state_transition": 1379, "node_type": "S", "subcondition": 13, "parent": 5519}}, {"model": "template.logicnode", "pk": 5519, "fields": {"state_transition": 1379, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5520, "fields": {"state_transition": 1380, "node_type": "N", "subcondition": null, "parent": 5525}}, {"model": "template.logicnode", "pk": 5521, "fields": {"state_transition": 1380, "node_type": "S", "subcondition": 23, "parent": 5520}}, {"model": "template.logicnode", "pk": 5522, "fields": {"state_transition": 1380, "node_type": "S", "subcondition": 11, "parent": 5525}}, {"model": "template.logicnode", "pk": 5523, "fields": {"state_transition": 1380, "node_type": "S", "subcondition": 17, "parent": 5525}}, {"model": "template.logicnode", "pk": 5524, "fields": {"state_transition": 1380, "node_type": "S", "subcondition": 25, "parent": 5525}}, {"model": "template.logicnode", "pk": 5525, "fields": {"state_transition": 1380, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5526, "fields": {"state_transition": 1381, "node_type": "N", "subcondition": null, "parent": 5530}}, {"model": "template.logicnode", "pk": 5527, "fields": {"state_transition": 1381, "node_type": "S", "subcondition": 23, "parent": 5526}}, {"model": "template.logicnode", "pk": 5528, "fields": {"state_transition": 1381, "node_type": "S", "subcondition": 11, "parent": 5530}}, {"model": "template.logicnode", "pk": 5529, "fields": {"state_transition": 1381, "node_type": "S", "subcondition": 17, "parent": 5530}}, {"model": "template.logicnode", "pk": 5530, "fields": {"state_transition": 1381, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5531, "fields": {"state_transition": 1382, "node_type": "N", "subcondition": null, "parent": 5535}}, {"model": "template.logicnode", "pk": 5532, "fields": {"state_transition": 1382, "node_type": "S", "subcondition": 23, "parent": 5531}}, {"model": "template.logicnode", "pk": 5533, "fields": {"state_transition": 1382, "node_type": "S", "subcondition": 11, "parent": 5535}}, {"model": "template.logicnode", "pk": 5534, "fields": {"state_transition": 1382, "node_type": "S", "subcondition": 25, "parent": 5535}}, {"model": "template.logicnode", "pk": 5535, "fields": {"state_transition": 1382, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5536, "fields": {"state_transition": 1383, "node_type": "N", "subcondition": null, "parent": 5539}}, {"model": "template.logicnode", "pk": 5537, "fields": {"state_transition": 1383, "node_type": "S", "subcondition": 23, "parent": 5536}}, {"model": "template.logicnode", "pk": 5538, "fields": {"state_transition": 1383, "node_type": "S", "subcondition": 11, "parent": 5539}}, {"model": "template.logicnode", "pk": 5539, "fields": {"state_transition": 1383, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5540, "fields": {"state_transition": 1384, "node_type": "N", "subcondition": null, "parent": 5545}}, {"model": "template.logicnode", "pk": 5541, "fields": {"state_transition": 1384, "node_type": "S", "subcondition": 23, "parent": 5540}}, {"model": "template.logicnode", "pk": 5542, "fields": {"state_transition": 1384, "node_type": "S", "subcondition": 13, "parent": 5545}}, {"model": "template.logicnode", "pk": 5543, "fields": {"state_transition": 1384, "node_type": "S", "subcondition": 17, "parent": 5545}}, {"model": "template.logicnode", "pk": 5544, "fields": {"state_transition": 1384, "node_type": "S", "subcondition": 25, "parent": 5545}}, {"model": "template.logicnode", "pk": 5545, "fields": {"state_transition": 1384, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5546, "fields": {"state_transition": 1385, "node_type": "N", "subcondition": null, "parent": 5550}}, {"model": "template.logicnode", "pk": 5547, "fields": {"state_transition": 1385, "node_type": "S", "subcondition": 23, "parent": 5546}}, {"model": "template.logicnode", "pk": 5548, "fields": {"state_transition": 1385, "node_type": "S", "subcondition": 13, "parent": 5550}}, {"model": "template.logicnode", "pk": 5549, "fields": {"state_transition": 1385, "node_type": "S", "subcondition": 17, "parent": 5550}}, {"model": "template.logicnode", "pk": 5550, "fields": {"state_transition": 1385, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5551, "fields": {"state_transition": 1386, "node_type": "N", "subcondition": null, "parent": 5555}}, {"model": "template.logicnode", "pk": 5552, "fields": {"state_transition": 1386, "node_type": "S", "subcondition": 23, "parent": 5551}}, {"model": "template.logicnode", "pk": 5553, "fields": {"state_transition": 1386, "node_type": "S", "subcondition": 13, "parent": 5555}}, {"model": "template.logicnode", "pk": 5554, "fields": {"state_transition": 1386, "node_type": "S", "subcondition": 25, "parent": 5555}}, {"model": "template.logicnode", "pk": 5555, "fields": {"state_transition": 1386, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5556, "fields": {"state_transition": 1387, "node_type": "N", "subcondition": null, "parent": 5559}}, {"model": "template.logicnode", "pk": 5557, "fields": {"state_transition": 1387, "node_type": "S", "subcondition": 23, "parent": 5556}}, {"model": "template.logicnode", "pk": 5558, "fields": {"state_transition": 1387, "node_type": "S", "subcondition": 13, "parent": 5559}}, {"model": "template.logicnode", "pk": 5559, "fields": {"state_transition": 1387, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5560, "fields": {"state_transition": 1388, "node_type": "N", "subcondition": null, "parent": 5564}}, {"model": "template.logicnode", "pk": 5561, "fields": {"state_transition": 1388, "node_type": "S", "subcondition": 23, "parent": 5560}}, {"model": "template.logicnode", "pk": 5562, "fields": {"state_transition": 1388, "node_type": "S", "subcondition": 17, "parent": 5564}}, {"model": "template.logicnode", "pk": 5563, "fields": {"state_transition": 1388, "node_type": "S", "subcondition": 25, "parent": 5564}}, {"model": "template.logicnode", "pk": 5564, "fields": {"state_transition": 1388, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5565, "fields": {"state_transition": 1389, "node_type": "N", "subcondition": null, "parent": 5568}}, {"model": "template.logicnode", "pk": 5566, "fields": {"state_transition": 1389, "node_type": "S", "subcondition": 23, "parent": 5565}}, {"model": "template.logicnode", "pk": 5567, "fields": {"state_transition": 1389, "node_type": "S", "subcondition": 17, "parent": 5568}}, {"model": "template.logicnode", "pk": 5568, "fields": {"state_transition": 1389, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5569, "fields": {"state_transition": 1390, "node_type": "N", "subcondition": null, "parent": 5572}}, {"model": "template.logicnode", "pk": 5570, "fields": {"state_transition": 1390, "node_type": "S", "subcondition": 23, "parent": 5569}}, {"model": "template.logicnode", "pk": 5571, "fields": {"state_transition": 1390, "node_type": "S", "subcondition": 25, "parent": 5572}}, {"model": "template.logicnode", "pk": 5572, "fields": {"state_transition": 1390, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5573, "fields": {"state_transition": 1391, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5574, "fields": {"state_transition": 1391, "node_type": "S", "subcondition": 23, "parent": 5573}}, {"model": "template.logicnode", "pk": 5575, "fields": {"state_transition": 1392, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5576, "fields": {"state_transition": 1393, "node_type": "N", "subcondition": null, "parent": 5582}}, {"model": "template.logicnode", "pk": 5577, "fields": {"state_transition": 1393, "node_type": "S", "subcondition": 23, "parent": 5576}}, {"model": "template.logicnode", "pk": 5578, "fields": {"state_transition": 1393, "node_type": "S", "subcondition": 11, "parent": 5582}}, {"model": "template.logicnode", "pk": 5579, "fields": {"state_transition": 1393, "node_type": "S", "subcondition": 13, "parent": 5582}}, {"model": "template.logicnode", "pk": 5580, "fields": {"state_transition": 1393, "node_type": "S", "subcondition": 17, "parent": 5582}}, {"model": "template.logicnode", "pk": 5581, "fields": {"state_transition": 1393, "node_type": "S", "subcondition": 25, "parent": 5582}}, {"model": "template.logicnode", "pk": 5582, "fields": {"state_transition": 1393, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5583, "fields": {"state_transition": 1394, "node_type": "N", "subcondition": null, "parent": 5588}}, {"model": "template.logicnode", "pk": 5584, "fields": {"state_transition": 1394, "node_type": "S", "subcondition": 23, "parent": 5583}}, {"model": "template.logicnode", "pk": 5585, "fields": {"state_transition": 1394, "node_type": "S", "subcondition": 11, "parent": 5588}}, {"model": "template.logicnode", "pk": 5586, "fields": {"state_transition": 1394, "node_type": "S", "subcondition": 13, "parent": 5588}}, {"model": "template.logicnode", "pk": 5587, "fields": {"state_transition": 1394, "node_type": "S", "subcondition": 17, "parent": 5588}}, {"model": "template.logicnode", "pk": 5588, "fields": {"state_transition": 1394, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5589, "fields": {"state_transition": 1395, "node_type": "N", "subcondition": null, "parent": 5594}}, {"model": "template.logicnode", "pk": 5590, "fields": {"state_transition": 1395, "node_type": "S", "subcondition": 23, "parent": 5589}}, {"model": "template.logicnode", "pk": 5591, "fields": {"state_transition": 1395, "node_type": "S", "subcondition": 11, "parent": 5594}}, {"model": "template.logicnode", "pk": 5592, "fields": {"state_transition": 1395, "node_type": "S", "subcondition": 13, "parent": 5594}}, {"model": "template.logicnode", "pk": 5593, "fields": {"state_transition": 1395, "node_type": "S", "subcondition": 25, "parent": 5594}}, {"model": "template.logicnode", "pk": 5594, "fields": {"state_transition": 1395, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5595, "fields": {"state_transition": 1396, "node_type": "N", "subcondition": null, "parent": 5599}}, {"model": "template.logicnode", "pk": 5596, "fields": {"state_transition": 1396, "node_type": "S", "subcondition": 23, "parent": 5595}}, {"model": "template.logicnode", "pk": 5597, "fields": {"state_transition": 1396, "node_type": "S", "subcondition": 11, "parent": 5599}}, {"model": "template.logicnode", "pk": 5598, "fields": {"state_transition": 1396, "node_type": "S", "subcondition": 13, "parent": 5599}}, {"model": "template.logicnode", "pk": 5599, "fields": {"state_transition": 1396, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5600, "fields": {"state_transition": 1397, "node_type": "N", "subcondition": null, "parent": 5605}}, {"model": "template.logicnode", "pk": 5601, "fields": {"state_transition": 1397, "node_type": "S", "subcondition": 23, "parent": 5600}}, {"model": "template.logicnode", "pk": 5602, "fields": {"state_transition": 1397, "node_type": "S", "subcondition": 11, "parent": 5605}}, {"model": "template.logicnode", "pk": 5603, "fields": {"state_transition": 1397, "node_type": "S", "subcondition": 17, "parent": 5605}}, {"model": "template.logicnode", "pk": 5604, "fields": {"state_transition": 1397, "node_type": "S", "subcondition": 25, "parent": 5605}}, {"model": "template.logicnode", "pk": 5605, "fields": {"state_transition": 1397, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5606, "fields": {"state_transition": 1398, "node_type": "N", "subcondition": null, "parent": 5610}}, {"model": "template.logicnode", "pk": 5607, "fields": {"state_transition": 1398, "node_type": "S", "subcondition": 23, "parent": 5606}}, {"model": "template.logicnode", "pk": 5608, "fields": {"state_transition": 1398, "node_type": "S", "subcondition": 11, "parent": 5610}}, {"model": "template.logicnode", "pk": 5609, "fields": {"state_transition": 1398, "node_type": "S", "subcondition": 17, "parent": 5610}}, {"model": "template.logicnode", "pk": 5610, "fields": {"state_transition": 1398, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5611, "fields": {"state_transition": 1399, "node_type": "N", "subcondition": null, "parent": 5615}}, {"model": "template.logicnode", "pk": 5612, "fields": {"state_transition": 1399, "node_type": "S", "subcondition": 23, "parent": 5611}}, {"model": "template.logicnode", "pk": 5613, "fields": {"state_transition": 1399, "node_type": "S", "subcondition": 11, "parent": 5615}}, {"model": "template.logicnode", "pk": 5614, "fields": {"state_transition": 1399, "node_type": "S", "subcondition": 25, "parent": 5615}}, {"model": "template.logicnode", "pk": 5615, "fields": {"state_transition": 1399, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5616, "fields": {"state_transition": 1400, "node_type": "N", "subcondition": null, "parent": 5619}}, {"model": "template.logicnode", "pk": 5617, "fields": {"state_transition": 1400, "node_type": "S", "subcondition": 23, "parent": 5616}}, {"model": "template.logicnode", "pk": 5618, "fields": {"state_transition": 1400, "node_type": "S", "subcondition": 11, "parent": 5619}}, {"model": "template.logicnode", "pk": 5619, "fields": {"state_transition": 1400, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5620, "fields": {"state_transition": 1401, "node_type": "N", "subcondition": null, "parent": 5625}}, {"model": "template.logicnode", "pk": 5621, "fields": {"state_transition": 1401, "node_type": "S", "subcondition": 23, "parent": 5620}}, {"model": "template.logicnode", "pk": 5622, "fields": {"state_transition": 1401, "node_type": "S", "subcondition": 13, "parent": 5625}}, {"model": "template.logicnode", "pk": 5623, "fields": {"state_transition": 1401, "node_type": "S", "subcondition": 17, "parent": 5625}}, {"model": "template.logicnode", "pk": 5624, "fields": {"state_transition": 1401, "node_type": "S", "subcondition": 25, "parent": 5625}}, {"model": "template.logicnode", "pk": 5625, "fields": {"state_transition": 1401, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5626, "fields": {"state_transition": 1402, "node_type": "N", "subcondition": null, "parent": 5630}}, {"model": "template.logicnode", "pk": 5627, "fields": {"state_transition": 1402, "node_type": "S", "subcondition": 23, "parent": 5626}}, {"model": "template.logicnode", "pk": 5628, "fields": {"state_transition": 1402, "node_type": "S", "subcondition": 13, "parent": 5630}}, {"model": "template.logicnode", "pk": 5629, "fields": {"state_transition": 1402, "node_type": "S", "subcondition": 17, "parent": 5630}}, {"model": "template.logicnode", "pk": 5630, "fields": {"state_transition": 1402, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5631, "fields": {"state_transition": 1403, "node_type": "N", "subcondition": null, "parent": 5635}}, {"model": "template.logicnode", "pk": 5632, "fields": {"state_transition": 1403, "node_type": "S", "subcondition": 23, "parent": 5631}}, {"model": "template.logicnode", "pk": 5633, "fields": {"state_transition": 1403, "node_type": "S", "subcondition": 13, "parent": 5635}}, {"model": "template.logicnode", "pk": 5634, "fields": {"state_transition": 1403, "node_type": "S", "subcondition": 25, "parent": 5635}}, {"model": "template.logicnode", "pk": 5635, "fields": {"state_transition": 1403, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5636, "fields": {"state_transition": 1404, "node_type": "N", "subcondition": null, "parent": 5639}}, {"model": "template.logicnode", "pk": 5637, "fields": {"state_transition": 1404, "node_type": "S", "subcondition": 23, "parent": 5636}}, {"model": "template.logicnode", "pk": 5638, "fields": {"state_transition": 1404, "node_type": "S", "subcondition": 13, "parent": 5639}}, {"model": "template.logicnode", "pk": 5639, "fields": {"state_transition": 1404, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5640, "fields": {"state_transition": 1405, "node_type": "N", "subcondition": null, "parent": 5644}}, {"model": "template.logicnode", "pk": 5641, "fields": {"state_transition": 1405, "node_type": "S", "subcondition": 23, "parent": 5640}}, {"model": "template.logicnode", "pk": 5642, "fields": {"state_transition": 1405, "node_type": "S", "subcondition": 17, "parent": 5644}}, {"model": "template.logicnode", "pk": 5643, "fields": {"state_transition": 1405, "node_type": "S", "subcondition": 25, "parent": 5644}}, {"model": "template.logicnode", "pk": 5644, "fields": {"state_transition": 1405, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5645, "fields": {"state_transition": 1406, "node_type": "N", "subcondition": null, "parent": 5648}}, {"model": "template.logicnode", "pk": 5646, "fields": {"state_transition": 1406, "node_type": "S", "subcondition": 23, "parent": 5645}}, {"model": "template.logicnode", "pk": 5647, "fields": {"state_transition": 1406, "node_type": "S", "subcondition": 17, "parent": 5648}}, {"model": "template.logicnode", "pk": 5648, "fields": {"state_transition": 1406, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5649, "fields": {"state_transition": 1407, "node_type": "N", "subcondition": null, "parent": 5652}}, {"model": "template.logicnode", "pk": 5650, "fields": {"state_transition": 1407, "node_type": "S", "subcondition": 23, "parent": 5649}}, {"model": "template.logicnode", "pk": 5651, "fields": {"state_transition": 1407, "node_type": "S", "subcondition": 25, "parent": 5652}}, {"model": "template.logicnode", "pk": 5652, "fields": {"state_transition": 1407, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5653, "fields": {"state_transition": 1408, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5654, "fields": {"state_transition": 1408, "node_type": "S", "subcondition": 23, "parent": 5653}}, {"model": "template.logicnode", "pk": 5655, "fields": {"state_transition": 1409, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5656, "fields": {"state_transition": 1410, "node_type": "N", "subcondition": null, "parent": 5662}}, {"model": "template.logicnode", "pk": 5657, "fields": {"state_transition": 1410, "node_type": "S", "subcondition": 23, "parent": 5656}}, {"model": "template.logicnode", "pk": 5658, "fields": {"state_transition": 1410, "node_type": "S", "subcondition": 11, "parent": 5662}}, {"model": "template.logicnode", "pk": 5659, "fields": {"state_transition": 1410, "node_type": "S", "subcondition": 13, "parent": 5662}}, {"model": "template.logicnode", "pk": 5660, "fields": {"state_transition": 1410, "node_type": "S", "subcondition": 17, "parent": 5662}}, {"model": "template.logicnode", "pk": 5661, "fields": {"state_transition": 1410, "node_type": "S", "subcondition": 25, "parent": 5662}}, {"model": "template.logicnode", "pk": 5662, "fields": {"state_transition": 1410, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5663, "fields": {"state_transition": 1411, "node_type": "N", "subcondition": null, "parent": 5668}}, {"model": "template.logicnode", "pk": 5664, "fields": {"state_transition": 1411, "node_type": "S", "subcondition": 23, "parent": 5663}}, {"model": "template.logicnode", "pk": 5665, "fields": {"state_transition": 1411, "node_type": "S", "subcondition": 11, "parent": 5668}}, {"model": "template.logicnode", "pk": 5666, "fields": {"state_transition": 1411, "node_type": "S", "subcondition": 13, "parent": 5668}}, {"model": "template.logicnode", "pk": 5667, "fields": {"state_transition": 1411, "node_type": "S", "subcondition": 17, "parent": 5668}}, {"model": "template.logicnode", "pk": 5668, "fields": {"state_transition": 1411, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5669, "fields": {"state_transition": 1412, "node_type": "N", "subcondition": null, "parent": 5674}}, {"model": "template.logicnode", "pk": 5670, "fields": {"state_transition": 1412, "node_type": "S", "subcondition": 23, "parent": 5669}}, {"model": "template.logicnode", "pk": 5671, "fields": {"state_transition": 1412, "node_type": "S", "subcondition": 11, "parent": 5674}}, {"model": "template.logicnode", "pk": 5672, "fields": {"state_transition": 1412, "node_type": "S", "subcondition": 13, "parent": 5674}}, {"model": "template.logicnode", "pk": 5673, "fields": {"state_transition": 1412, "node_type": "S", "subcondition": 25, "parent": 5674}}, {"model": "template.logicnode", "pk": 5674, "fields": {"state_transition": 1412, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5675, "fields": {"state_transition": 1413, "node_type": "N", "subcondition": null, "parent": 5679}}, {"model": "template.logicnode", "pk": 5676, "fields": {"state_transition": 1413, "node_type": "S", "subcondition": 23, "parent": 5675}}, {"model": "template.logicnode", "pk": 5677, "fields": {"state_transition": 1413, "node_type": "S", "subcondition": 11, "parent": 5679}}, {"model": "template.logicnode", "pk": 5678, "fields": {"state_transition": 1413, "node_type": "S", "subcondition": 13, "parent": 5679}}, {"model": "template.logicnode", "pk": 5679, "fields": {"state_transition": 1413, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5680, "fields": {"state_transition": 1414, "node_type": "N", "subcondition": null, "parent": 5685}}, {"model": "template.logicnode", "pk": 5681, "fields": {"state_transition": 1414, "node_type": "S", "subcondition": 23, "parent": 5680}}, {"model": "template.logicnode", "pk": 5682, "fields": {"state_transition": 1414, "node_type": "S", "subcondition": 11, "parent": 5685}}, {"model": "template.logicnode", "pk": 5683, "fields": {"state_transition": 1414, "node_type": "S", "subcondition": 17, "parent": 5685}}, {"model": "template.logicnode", "pk": 5684, "fields": {"state_transition": 1414, "node_type": "S", "subcondition": 25, "parent": 5685}}, {"model": "template.logicnode", "pk": 5685, "fields": {"state_transition": 1414, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5686, "fields": {"state_transition": 1415, "node_type": "N", "subcondition": null, "parent": 5690}}, {"model": "template.logicnode", "pk": 5687, "fields": {"state_transition": 1415, "node_type": "S", "subcondition": 23, "parent": 5686}}, {"model": "template.logicnode", "pk": 5688, "fields": {"state_transition": 1415, "node_type": "S", "subcondition": 11, "parent": 5690}}, {"model": "template.logicnode", "pk": 5689, "fields": {"state_transition": 1415, "node_type": "S", "subcondition": 17, "parent": 5690}}, {"model": "template.logicnode", "pk": 5690, "fields": {"state_transition": 1415, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5691, "fields": {"state_transition": 1416, "node_type": "N", "subcondition": null, "parent": 5695}}, {"model": "template.logicnode", "pk": 5692, "fields": {"state_transition": 1416, "node_type": "S", "subcondition": 23, "parent": 5691}}, {"model": "template.logicnode", "pk": 5693, "fields": {"state_transition": 1416, "node_type": "S", "subcondition": 11, "parent": 5695}}, {"model": "template.logicnode", "pk": 5694, "fields": {"state_transition": 1416, "node_type": "S", "subcondition": 25, "parent": 5695}}, {"model": "template.logicnode", "pk": 5695, "fields": {"state_transition": 1416, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5696, "fields": {"state_transition": 1417, "node_type": "N", "subcondition": null, "parent": 5699}}, {"model": "template.logicnode", "pk": 5697, "fields": {"state_transition": 1417, "node_type": "S", "subcondition": 23, "parent": 5696}}, {"model": "template.logicnode", "pk": 5698, "fields": {"state_transition": 1417, "node_type": "S", "subcondition": 11, "parent": 5699}}, {"model": "template.logicnode", "pk": 5699, "fields": {"state_transition": 1417, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5700, "fields": {"state_transition": 1418, "node_type": "N", "subcondition": null, "parent": 5705}}, {"model": "template.logicnode", "pk": 5701, "fields": {"state_transition": 1418, "node_type": "S", "subcondition": 23, "parent": 5700}}, {"model": "template.logicnode", "pk": 5702, "fields": {"state_transition": 1418, "node_type": "S", "subcondition": 13, "parent": 5705}}, {"model": "template.logicnode", "pk": 5703, "fields": {"state_transition": 1418, "node_type": "S", "subcondition": 17, "parent": 5705}}, {"model": "template.logicnode", "pk": 5704, "fields": {"state_transition": 1418, "node_type": "S", "subcondition": 25, "parent": 5705}}, {"model": "template.logicnode", "pk": 5705, "fields": {"state_transition": 1418, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5706, "fields": {"state_transition": 1419, "node_type": "N", "subcondition": null, "parent": 5710}}, {"model": "template.logicnode", "pk": 5707, "fields": {"state_transition": 1419, "node_type": "S", "subcondition": 23, "parent": 5706}}, {"model": "template.logicnode", "pk": 5708, "fields": {"state_transition": 1419, "node_type": "S", "subcondition": 13, "parent": 5710}}, {"model": "template.logicnode", "pk": 5709, "fields": {"state_transition": 1419, "node_type": "S", "subcondition": 17, "parent": 5710}}, {"model": "template.logicnode", "pk": 5710, "fields": {"state_transition": 1419, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5711, "fields": {"state_transition": 1420, "node_type": "N", "subcondition": null, "parent": 5715}}, {"model": "template.logicnode", "pk": 5712, "fields": {"state_transition": 1420, "node_type": "S", "subcondition": 23, "parent": 5711}}, {"model": "template.logicnode", "pk": 5713, "fields": {"state_transition": 1420, "node_type": "S", "subcondition": 13, "parent": 5715}}, {"model": "template.logicnode", "pk": 5714, "fields": {"state_transition": 1420, "node_type": "S", "subcondition": 25, "parent": 5715}}, {"model": "template.logicnode", "pk": 5715, "fields": {"state_transition": 1420, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5716, "fields": {"state_transition": 1421, "node_type": "N", "subcondition": null, "parent": 5719}}, {"model": "template.logicnode", "pk": 5717, "fields": {"state_transition": 1421, "node_type": "S", "subcondition": 23, "parent": 5716}}, {"model": "template.logicnode", "pk": 5718, "fields": {"state_transition": 1421, "node_type": "S", "subcondition": 13, "parent": 5719}}, {"model": "template.logicnode", "pk": 5719, "fields": {"state_transition": 1421, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5720, "fields": {"state_transition": 1422, "node_type": "N", "subcondition": null, "parent": 5724}}, {"model": "template.logicnode", "pk": 5721, "fields": {"state_transition": 1422, "node_type": "S", "subcondition": 23, "parent": 5720}}, {"model": "template.logicnode", "pk": 5722, "fields": {"state_transition": 1422, "node_type": "S", "subcondition": 17, "parent": 5724}}, {"model": "template.logicnode", "pk": 5723, "fields": {"state_transition": 1422, "node_type": "S", "subcondition": 25, "parent": 5724}}, {"model": "template.logicnode", "pk": 5724, "fields": {"state_transition": 1422, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5725, "fields": {"state_transition": 1423, "node_type": "N", "subcondition": null, "parent": 5728}}, {"model": "template.logicnode", "pk": 5726, "fields": {"state_transition": 1423, "node_type": "S", "subcondition": 23, "parent": 5725}}, {"model": "template.logicnode", "pk": 5727, "fields": {"state_transition": 1423, "node_type": "S", "subcondition": 17, "parent": 5728}}, {"model": "template.logicnode", "pk": 5728, "fields": {"state_transition": 1423, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5729, "fields": {"state_transition": 1424, "node_type": "N", "subcondition": null, "parent": 5732}}, {"model": "template.logicnode", "pk": 5730, "fields": {"state_transition": 1424, "node_type": "S", "subcondition": 23, "parent": 5729}}, {"model": "template.logicnode", "pk": 5731, "fields": {"state_transition": 1424, "node_type": "S", "subcondition": 25, "parent": 5732}}, {"model": "template.logicnode", "pk": 5732, "fields": {"state_transition": 1424, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5733, "fields": {"state_transition": 1425, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5734, "fields": {"state_transition": 1425, "node_type": "S", "subcondition": 23, "parent": 5733}}, {"model": "template.logicnode", "pk": 5735, "fields": {"state_transition": 1426, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5736, "fields": {"state_transition": 1427, "node_type": "N", "subcondition": null, "parent": 5742}}, {"model": "template.logicnode", "pk": 5737, "fields": {"state_transition": 1427, "node_type": "S", "subcondition": 23, "parent": 5736}}, {"model": "template.logicnode", "pk": 5738, "fields": {"state_transition": 1427, "node_type": "S", "subcondition": 11, "parent": 5742}}, {"model": "template.logicnode", "pk": 5739, "fields": {"state_transition": 1427, "node_type": "S", "subcondition": 13, "parent": 5742}}, {"model": "template.logicnode", "pk": 5740, "fields": {"state_transition": 1427, "node_type": "S", "subcondition": 17, "parent": 5742}}, {"model": "template.logicnode", "pk": 5741, "fields": {"state_transition": 1427, "node_type": "S", "subcondition": 25, "parent": 5742}}, {"model": "template.logicnode", "pk": 5742, "fields": {"state_transition": 1427, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5743, "fields": {"state_transition": 1428, "node_type": "N", "subcondition": null, "parent": 5748}}, {"model": "template.logicnode", "pk": 5744, "fields": {"state_transition": 1428, "node_type": "S", "subcondition": 23, "parent": 5743}}, {"model": "template.logicnode", "pk": 5745, "fields": {"state_transition": 1428, "node_type": "S", "subcondition": 11, "parent": 5748}}, {"model": "template.logicnode", "pk": 5746, "fields": {"state_transition": 1428, "node_type": "S", "subcondition": 13, "parent": 5748}}, {"model": "template.logicnode", "pk": 5747, "fields": {"state_transition": 1428, "node_type": "S", "subcondition": 17, "parent": 5748}}, {"model": "template.logicnode", "pk": 5748, "fields": {"state_transition": 1428, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5749, "fields": {"state_transition": 1429, "node_type": "N", "subcondition": null, "parent": 5754}}, {"model": "template.logicnode", "pk": 5750, "fields": {"state_transition": 1429, "node_type": "S", "subcondition": 23, "parent": 5749}}, {"model": "template.logicnode", "pk": 5751, "fields": {"state_transition": 1429, "node_type": "S", "subcondition": 11, "parent": 5754}}, {"model": "template.logicnode", "pk": 5752, "fields": {"state_transition": 1429, "node_type": "S", "subcondition": 13, "parent": 5754}}, {"model": "template.logicnode", "pk": 5753, "fields": {"state_transition": 1429, "node_type": "S", "subcondition": 25, "parent": 5754}}, {"model": "template.logicnode", "pk": 5754, "fields": {"state_transition": 1429, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5755, "fields": {"state_transition": 1430, "node_type": "N", "subcondition": null, "parent": 5759}}, {"model": "template.logicnode", "pk": 5756, "fields": {"state_transition": 1430, "node_type": "S", "subcondition": 23, "parent": 5755}}, {"model": "template.logicnode", "pk": 5757, "fields": {"state_transition": 1430, "node_type": "S", "subcondition": 11, "parent": 5759}}, {"model": "template.logicnode", "pk": 5758, "fields": {"state_transition": 1430, "node_type": "S", "subcondition": 13, "parent": 5759}}, {"model": "template.logicnode", "pk": 5759, "fields": {"state_transition": 1430, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5760, "fields": {"state_transition": 1431, "node_type": "N", "subcondition": null, "parent": 5765}}, {"model": "template.logicnode", "pk": 5761, "fields": {"state_transition": 1431, "node_type": "S", "subcondition": 23, "parent": 5760}}, {"model": "template.logicnode", "pk": 5762, "fields": {"state_transition": 1431, "node_type": "S", "subcondition": 11, "parent": 5765}}, {"model": "template.logicnode", "pk": 5763, "fields": {"state_transition": 1431, "node_type": "S", "subcondition": 17, "parent": 5765}}, {"model": "template.logicnode", "pk": 5764, "fields": {"state_transition": 1431, "node_type": "S", "subcondition": 25, "parent": 5765}}, {"model": "template.logicnode", "pk": 5765, "fields": {"state_transition": 1431, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5766, "fields": {"state_transition": 1432, "node_type": "N", "subcondition": null, "parent": 5770}}, {"model": "template.logicnode", "pk": 5767, "fields": {"state_transition": 1432, "node_type": "S", "subcondition": 23, "parent": 5766}}, {"model": "template.logicnode", "pk": 5768, "fields": {"state_transition": 1432, "node_type": "S", "subcondition": 11, "parent": 5770}}, {"model": "template.logicnode", "pk": 5769, "fields": {"state_transition": 1432, "node_type": "S", "subcondition": 17, "parent": 5770}}, {"model": "template.logicnode", "pk": 5770, "fields": {"state_transition": 1432, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5771, "fields": {"state_transition": 1433, "node_type": "N", "subcondition": null, "parent": 5775}}, {"model": "template.logicnode", "pk": 5772, "fields": {"state_transition": 1433, "node_type": "S", "subcondition": 23, "parent": 5771}}, {"model": "template.logicnode", "pk": 5773, "fields": {"state_transition": 1433, "node_type": "S", "subcondition": 11, "parent": 5775}}, {"model": "template.logicnode", "pk": 5774, "fields": {"state_transition": 1433, "node_type": "S", "subcondition": 25, "parent": 5775}}, {"model": "template.logicnode", "pk": 5775, "fields": {"state_transition": 1433, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5776, "fields": {"state_transition": 1434, "node_type": "N", "subcondition": null, "parent": 5779}}, {"model": "template.logicnode", "pk": 5777, "fields": {"state_transition": 1434, "node_type": "S", "subcondition": 23, "parent": 5776}}, {"model": "template.logicnode", "pk": 5778, "fields": {"state_transition": 1434, "node_type": "S", "subcondition": 11, "parent": 5779}}, {"model": "template.logicnode", "pk": 5779, "fields": {"state_transition": 1434, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5780, "fields": {"state_transition": 1435, "node_type": "N", "subcondition": null, "parent": 5785}}, {"model": "template.logicnode", "pk": 5781, "fields": {"state_transition": 1435, "node_type": "S", "subcondition": 23, "parent": 5780}}, {"model": "template.logicnode", "pk": 5782, "fields": {"state_transition": 1435, "node_type": "S", "subcondition": 13, "parent": 5785}}, {"model": "template.logicnode", "pk": 5783, "fields": {"state_transition": 1435, "node_type": "S", "subcondition": 17, "parent": 5785}}, {"model": "template.logicnode", "pk": 5784, "fields": {"state_transition": 1435, "node_type": "S", "subcondition": 25, "parent": 5785}}, {"model": "template.logicnode", "pk": 5785, "fields": {"state_transition": 1435, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5786, "fields": {"state_transition": 1436, "node_type": "N", "subcondition": null, "parent": 5790}}, {"model": "template.logicnode", "pk": 5787, "fields": {"state_transition": 1436, "node_type": "S", "subcondition": 23, "parent": 5786}}, {"model": "template.logicnode", "pk": 5788, "fields": {"state_transition": 1436, "node_type": "S", "subcondition": 13, "parent": 5790}}, {"model": "template.logicnode", "pk": 5789, "fields": {"state_transition": 1436, "node_type": "S", "subcondition": 17, "parent": 5790}}, {"model": "template.logicnode", "pk": 5790, "fields": {"state_transition": 1436, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5791, "fields": {"state_transition": 1437, "node_type": "N", "subcondition": null, "parent": 5795}}, {"model": "template.logicnode", "pk": 5792, "fields": {"state_transition": 1437, "node_type": "S", "subcondition": 23, "parent": 5791}}, {"model": "template.logicnode", "pk": 5793, "fields": {"state_transition": 1437, "node_type": "S", "subcondition": 13, "parent": 5795}}, {"model": "template.logicnode", "pk": 5794, "fields": {"state_transition": 1437, "node_type": "S", "subcondition": 25, "parent": 5795}}, {"model": "template.logicnode", "pk": 5795, "fields": {"state_transition": 1437, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5796, "fields": {"state_transition": 1438, "node_type": "N", "subcondition": null, "parent": 5799}}, {"model": "template.logicnode", "pk": 5797, "fields": {"state_transition": 1438, "node_type": "S", "subcondition": 23, "parent": 5796}}, {"model": "template.logicnode", "pk": 5798, "fields": {"state_transition": 1438, "node_type": "S", "subcondition": 13, "parent": 5799}}, {"model": "template.logicnode", "pk": 5799, "fields": {"state_transition": 1438, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5800, "fields": {"state_transition": 1439, "node_type": "N", "subcondition": null, "parent": 5804}}, {"model": "template.logicnode", "pk": 5801, "fields": {"state_transition": 1439, "node_type": "S", "subcondition": 23, "parent": 5800}}, {"model": "template.logicnode", "pk": 5802, "fields": {"state_transition": 1439, "node_type": "S", "subcondition": 17, "parent": 5804}}, {"model": "template.logicnode", "pk": 5803, "fields": {"state_transition": 1439, "node_type": "S", "subcondition": 25, "parent": 5804}}, {"model": "template.logicnode", "pk": 5804, "fields": {"state_transition": 1439, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5805, "fields": {"state_transition": 1440, "node_type": "N", "subcondition": null, "parent": 5808}}, {"model": "template.logicnode", "pk": 5806, "fields": {"state_transition": 1440, "node_type": "S", "subcondition": 23, "parent": 5805}}, {"model": "template.logicnode", "pk": 5807, "fields": {"state_transition": 1440, "node_type": "S", "subcondition": 17, "parent": 5808}}, {"model": "template.logicnode", "pk": 5808, "fields": {"state_transition": 1440, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5809, "fields": {"state_transition": 1441, "node_type": "N", "subcondition": null, "parent": 5812}}, {"model": "template.logicnode", "pk": 5810, "fields": {"state_transition": 1441, "node_type": "S", "subcondition": 23, "parent": 5809}}, {"model": "template.logicnode", "pk": 5811, "fields": {"state_transition": 1441, "node_type": "S", "subcondition": 25, "parent": 5812}}, {"model": "template.logicnode", "pk": 5812, "fields": {"state_transition": 1441, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5813, "fields": {"state_transition": 1442, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5814, "fields": {"state_transition": 1442, "node_type": "S", "subcondition": 23, "parent": 5813}}, {"model": "template.logicnode", "pk": 5815, "fields": {"state_transition": 1443, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5816, "fields": {"state_transition": 1444, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5817, "fields": {"state_transition": 1445, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5818, "fields": {"state_transition": 1446, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5819, "fields": {"state_transition": 1447, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5820, "fields": {"state_transition": 1448, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5821, "fields": {"state_transition": 1449, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5822, "fields": {"state_transition": 1450, "node_type": "N", "subcondition": null, "parent": 5828}}, {"model": "template.logicnode", "pk": 5823, "fields": {"state_transition": 1450, "node_type": "S", "subcondition": 23, "parent": 5822}}, {"model": "template.logicnode", "pk": 5824, "fields": {"state_transition": 1450, "node_type": "S", "subcondition": 11, "parent": 5828}}, {"model": "template.logicnode", "pk": 5825, "fields": {"state_transition": 1450, "node_type": "S", "subcondition": 13, "parent": 5828}}, {"model": "template.logicnode", "pk": 5826, "fields": {"state_transition": 1450, "node_type": "S", "subcondition": 17, "parent": 5828}}, {"model": "template.logicnode", "pk": 5827, "fields": {"state_transition": 1450, "node_type": "S", "subcondition": 25, "parent": 5828}}, {"model": "template.logicnode", "pk": 5828, "fields": {"state_transition": 1450, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5829, "fields": {"state_transition": 1451, "node_type": "N", "subcondition": null, "parent": 5834}}, {"model": "template.logicnode", "pk": 5830, "fields": {"state_transition": 1451, "node_type": "S", "subcondition": 23, "parent": 5829}}, {"model": "template.logicnode", "pk": 5831, "fields": {"state_transition": 1451, "node_type": "S", "subcondition": 11, "parent": 5834}}, {"model": "template.logicnode", "pk": 5832, "fields": {"state_transition": 1451, "node_type": "S", "subcondition": 13, "parent": 5834}}, {"model": "template.logicnode", "pk": 5833, "fields": {"state_transition": 1451, "node_type": "S", "subcondition": 17, "parent": 5834}}, {"model": "template.logicnode", "pk": 5834, "fields": {"state_transition": 1451, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5835, "fields": {"state_transition": 1452, "node_type": "N", "subcondition": null, "parent": 5840}}, {"model": "template.logicnode", "pk": 5836, "fields": {"state_transition": 1452, "node_type": "S", "subcondition": 23, "parent": 5835}}, {"model": "template.logicnode", "pk": 5837, "fields": {"state_transition": 1452, "node_type": "S", "subcondition": 11, "parent": 5840}}, {"model": "template.logicnode", "pk": 5838, "fields": {"state_transition": 1452, "node_type": "S", "subcondition": 13, "parent": 5840}}, {"model": "template.logicnode", "pk": 5839, "fields": {"state_transition": 1452, "node_type": "S", "subcondition": 25, "parent": 5840}}, {"model": "template.logicnode", "pk": 5840, "fields": {"state_transition": 1452, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5841, "fields": {"state_transition": 1453, "node_type": "N", "subcondition": null, "parent": 5845}}, {"model": "template.logicnode", "pk": 5842, "fields": {"state_transition": 1453, "node_type": "S", "subcondition": 23, "parent": 5841}}, {"model": "template.logicnode", "pk": 5843, "fields": {"state_transition": 1453, "node_type": "S", "subcondition": 11, "parent": 5845}}, {"model": "template.logicnode", "pk": 5844, "fields": {"state_transition": 1453, "node_type": "S", "subcondition": 13, "parent": 5845}}, {"model": "template.logicnode", "pk": 5845, "fields": {"state_transition": 1453, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5846, "fields": {"state_transition": 1454, "node_type": "N", "subcondition": null, "parent": 5851}}, {"model": "template.logicnode", "pk": 5847, "fields": {"state_transition": 1454, "node_type": "S", "subcondition": 23, "parent": 5846}}, {"model": "template.logicnode", "pk": 5848, "fields": {"state_transition": 1454, "node_type": "S", "subcondition": 11, "parent": 5851}}, {"model": "template.logicnode", "pk": 5849, "fields": {"state_transition": 1454, "node_type": "S", "subcondition": 17, "parent": 5851}}, {"model": "template.logicnode", "pk": 5850, "fields": {"state_transition": 1454, "node_type": "S", "subcondition": 25, "parent": 5851}}, {"model": "template.logicnode", "pk": 5851, "fields": {"state_transition": 1454, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5852, "fields": {"state_transition": 1455, "node_type": "N", "subcondition": null, "parent": 5856}}, {"model": "template.logicnode", "pk": 5853, "fields": {"state_transition": 1455, "node_type": "S", "subcondition": 23, "parent": 5852}}, {"model": "template.logicnode", "pk": 5854, "fields": {"state_transition": 1455, "node_type": "S", "subcondition": 11, "parent": 5856}}, {"model": "template.logicnode", "pk": 5855, "fields": {"state_transition": 1455, "node_type": "S", "subcondition": 17, "parent": 5856}}, {"model": "template.logicnode", "pk": 5856, "fields": {"state_transition": 1455, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5857, "fields": {"state_transition": 1456, "node_type": "N", "subcondition": null, "parent": 5861}}, {"model": "template.logicnode", "pk": 5858, "fields": {"state_transition": 1456, "node_type": "S", "subcondition": 23, "parent": 5857}}, {"model": "template.logicnode", "pk": 5859, "fields": {"state_transition": 1456, "node_type": "S", "subcondition": 11, "parent": 5861}}, {"model": "template.logicnode", "pk": 5860, "fields": {"state_transition": 1456, "node_type": "S", "subcondition": 25, "parent": 5861}}, {"model": "template.logicnode", "pk": 5861, "fields": {"state_transition": 1456, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5862, "fields": {"state_transition": 1457, "node_type": "N", "subcondition": null, "parent": 5865}}, {"model": "template.logicnode", "pk": 5863, "fields": {"state_transition": 1457, "node_type": "S", "subcondition": 23, "parent": 5862}}, {"model": "template.logicnode", "pk": 5864, "fields": {"state_transition": 1457, "node_type": "S", "subcondition": 11, "parent": 5865}}, {"model": "template.logicnode", "pk": 5865, "fields": {"state_transition": 1457, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5866, "fields": {"state_transition": 1458, "node_type": "N", "subcondition": null, "parent": 5871}}, {"model": "template.logicnode", "pk": 5867, "fields": {"state_transition": 1458, "node_type": "S", "subcondition": 23, "parent": 5866}}, {"model": "template.logicnode", "pk": 5868, "fields": {"state_transition": 1458, "node_type": "S", "subcondition": 13, "parent": 5871}}, {"model": "template.logicnode", "pk": 5869, "fields": {"state_transition": 1458, "node_type": "S", "subcondition": 17, "parent": 5871}}, {"model": "template.logicnode", "pk": 5870, "fields": {"state_transition": 1458, "node_type": "S", "subcondition": 25, "parent": 5871}}, {"model": "template.logicnode", "pk": 5871, "fields": {"state_transition": 1458, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5872, "fields": {"state_transition": 1459, "node_type": "N", "subcondition": null, "parent": 5876}}, {"model": "template.logicnode", "pk": 5873, "fields": {"state_transition": 1459, "node_type": "S", "subcondition": 23, "parent": 5872}}, {"model": "template.logicnode", "pk": 5874, "fields": {"state_transition": 1459, "node_type": "S", "subcondition": 13, "parent": 5876}}, {"model": "template.logicnode", "pk": 5875, "fields": {"state_transition": 1459, "node_type": "S", "subcondition": 17, "parent": 5876}}, {"model": "template.logicnode", "pk": 5876, "fields": {"state_transition": 1459, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5877, "fields": {"state_transition": 1460, "node_type": "N", "subcondition": null, "parent": 5881}}, {"model": "template.logicnode", "pk": 5878, "fields": {"state_transition": 1460, "node_type": "S", "subcondition": 23, "parent": 5877}}, {"model": "template.logicnode", "pk": 5879, "fields": {"state_transition": 1460, "node_type": "S", "subcondition": 13, "parent": 5881}}, {"model": "template.logicnode", "pk": 5880, "fields": {"state_transition": 1460, "node_type": "S", "subcondition": 25, "parent": 5881}}, {"model": "template.logicnode", "pk": 5881, "fields": {"state_transition": 1460, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5882, "fields": {"state_transition": 1461, "node_type": "N", "subcondition": null, "parent": 5885}}, {"model": "template.logicnode", "pk": 5883, "fields": {"state_transition": 1461, "node_type": "S", "subcondition": 23, "parent": 5882}}, {"model": "template.logicnode", "pk": 5884, "fields": {"state_transition": 1461, "node_type": "S", "subcondition": 13, "parent": 5885}}, {"model": "template.logicnode", "pk": 5885, "fields": {"state_transition": 1461, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5886, "fields": {"state_transition": 1462, "node_type": "N", "subcondition": null, "parent": 5890}}, {"model": "template.logicnode", "pk": 5887, "fields": {"state_transition": 1462, "node_type": "S", "subcondition": 23, "parent": 5886}}, {"model": "template.logicnode", "pk": 5888, "fields": {"state_transition": 1462, "node_type": "S", "subcondition": 17, "parent": 5890}}, {"model": "template.logicnode", "pk": 5889, "fields": {"state_transition": 1462, "node_type": "S", "subcondition": 25, "parent": 5890}}, {"model": "template.logicnode", "pk": 5890, "fields": {"state_transition": 1462, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5891, "fields": {"state_transition": 1463, "node_type": "N", "subcondition": null, "parent": 5894}}, {"model": "template.logicnode", "pk": 5892, "fields": {"state_transition": 1463, "node_type": "S", "subcondition": 23, "parent": 5891}}, {"model": "template.logicnode", "pk": 5893, "fields": {"state_transition": 1463, "node_type": "S", "subcondition": 17, "parent": 5894}}, {"model": "template.logicnode", "pk": 5894, "fields": {"state_transition": 1463, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5895, "fields": {"state_transition": 1464, "node_type": "N", "subcondition": null, "parent": 5898}}, {"model": "template.logicnode", "pk": 5896, "fields": {"state_transition": 1464, "node_type": "S", "subcondition": 23, "parent": 5895}}, {"model": "template.logicnode", "pk": 5897, "fields": {"state_transition": 1464, "node_type": "S", "subcondition": 25, "parent": 5898}}, {"model": "template.logicnode", "pk": 5898, "fields": {"state_transition": 1464, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5899, "fields": {"state_transition": 1465, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5900, "fields": {"state_transition": 1465, "node_type": "S", "subcondition": 23, "parent": 5899}}, {"model": "template.logicnode", "pk": 5901, "fields": {"state_transition": 1466, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5902, "fields": {"state_transition": 1467, "node_type": "N", "subcondition": null, "parent": 5908}}, {"model": "template.logicnode", "pk": 5903, "fields": {"state_transition": 1467, "node_type": "S", "subcondition": 23, "parent": 5902}}, {"model": "template.logicnode", "pk": 5904, "fields": {"state_transition": 1467, "node_type": "S", "subcondition": 11, "parent": 5908}}, {"model": "template.logicnode", "pk": 5905, "fields": {"state_transition": 1467, "node_type": "S", "subcondition": 13, "parent": 5908}}, {"model": "template.logicnode", "pk": 5906, "fields": {"state_transition": 1467, "node_type": "S", "subcondition": 17, "parent": 5908}}, {"model": "template.logicnode", "pk": 5907, "fields": {"state_transition": 1467, "node_type": "S", "subcondition": 25, "parent": 5908}}, {"model": "template.logicnode", "pk": 5908, "fields": {"state_transition": 1467, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5909, "fields": {"state_transition": 1468, "node_type": "N", "subcondition": null, "parent": 5914}}, {"model": "template.logicnode", "pk": 5910, "fields": {"state_transition": 1468, "node_type": "S", "subcondition": 23, "parent": 5909}}, {"model": "template.logicnode", "pk": 5911, "fields": {"state_transition": 1468, "node_type": "S", "subcondition": 11, "parent": 5914}}, {"model": "template.logicnode", "pk": 5912, "fields": {"state_transition": 1468, "node_type": "S", "subcondition": 13, "parent": 5914}}, {"model": "template.logicnode", "pk": 5913, "fields": {"state_transition": 1468, "node_type": "S", "subcondition": 17, "parent": 5914}}, {"model": "template.logicnode", "pk": 5914, "fields": {"state_transition": 1468, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5915, "fields": {"state_transition": 1469, "node_type": "N", "subcondition": null, "parent": 5920}}, {"model": "template.logicnode", "pk": 5916, "fields": {"state_transition": 1469, "node_type": "S", "subcondition": 23, "parent": 5915}}, {"model": "template.logicnode", "pk": 5917, "fields": {"state_transition": 1469, "node_type": "S", "subcondition": 11, "parent": 5920}}, {"model": "template.logicnode", "pk": 5918, "fields": {"state_transition": 1469, "node_type": "S", "subcondition": 13, "parent": 5920}}, {"model": "template.logicnode", "pk": 5919, "fields": {"state_transition": 1469, "node_type": "S", "subcondition": 25, "parent": 5920}}, {"model": "template.logicnode", "pk": 5920, "fields": {"state_transition": 1469, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5921, "fields": {"state_transition": 1470, "node_type": "N", "subcondition": null, "parent": 5925}}, {"model": "template.logicnode", "pk": 5922, "fields": {"state_transition": 1470, "node_type": "S", "subcondition": 23, "parent": 5921}}, {"model": "template.logicnode", "pk": 5923, "fields": {"state_transition": 1470, "node_type": "S", "subcondition": 11, "parent": 5925}}, {"model": "template.logicnode", "pk": 5924, "fields": {"state_transition": 1470, "node_type": "S", "subcondition": 13, "parent": 5925}}, {"model": "template.logicnode", "pk": 5925, "fields": {"state_transition": 1470, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5926, "fields": {"state_transition": 1471, "node_type": "N", "subcondition": null, "parent": 5931}}, {"model": "template.logicnode", "pk": 5927, "fields": {"state_transition": 1471, "node_type": "S", "subcondition": 23, "parent": 5926}}, {"model": "template.logicnode", "pk": 5928, "fields": {"state_transition": 1471, "node_type": "S", "subcondition": 11, "parent": 5931}}, {"model": "template.logicnode", "pk": 5929, "fields": {"state_transition": 1471, "node_type": "S", "subcondition": 17, "parent": 5931}}, {"model": "template.logicnode", "pk": 5930, "fields": {"state_transition": 1471, "node_type": "S", "subcondition": 25, "parent": 5931}}, {"model": "template.logicnode", "pk": 5931, "fields": {"state_transition": 1471, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5932, "fields": {"state_transition": 1472, "node_type": "N", "subcondition": null, "parent": 5936}}, {"model": "template.logicnode", "pk": 5933, "fields": {"state_transition": 1472, "node_type": "S", "subcondition": 23, "parent": 5932}}, {"model": "template.logicnode", "pk": 5934, "fields": {"state_transition": 1472, "node_type": "S", "subcondition": 11, "parent": 5936}}, {"model": "template.logicnode", "pk": 5935, "fields": {"state_transition": 1472, "node_type": "S", "subcondition": 17, "parent": 5936}}, {"model": "template.logicnode", "pk": 5936, "fields": {"state_transition": 1472, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5937, "fields": {"state_transition": 1473, "node_type": "N", "subcondition": null, "parent": 5941}}, {"model": "template.logicnode", "pk": 5938, "fields": {"state_transition": 1473, "node_type": "S", "subcondition": 23, "parent": 5937}}, {"model": "template.logicnode", "pk": 5939, "fields": {"state_transition": 1473, "node_type": "S", "subcondition": 11, "parent": 5941}}, {"model": "template.logicnode", "pk": 5940, "fields": {"state_transition": 1473, "node_type": "S", "subcondition": 25, "parent": 5941}}, {"model": "template.logicnode", "pk": 5941, "fields": {"state_transition": 1473, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5942, "fields": {"state_transition": 1474, "node_type": "N", "subcondition": null, "parent": 5945}}, {"model": "template.logicnode", "pk": 5943, "fields": {"state_transition": 1474, "node_type": "S", "subcondition": 23, "parent": 5942}}, {"model": "template.logicnode", "pk": 5944, "fields": {"state_transition": 1474, "node_type": "S", "subcondition": 11, "parent": 5945}}, {"model": "template.logicnode", "pk": 5945, "fields": {"state_transition": 1474, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5946, "fields": {"state_transition": 1475, "node_type": "N", "subcondition": null, "parent": 5951}}, {"model": "template.logicnode", "pk": 5947, "fields": {"state_transition": 1475, "node_type": "S", "subcondition": 23, "parent": 5946}}, {"model": "template.logicnode", "pk": 5948, "fields": {"state_transition": 1475, "node_type": "S", "subcondition": 13, "parent": 5951}}, {"model": "template.logicnode", "pk": 5949, "fields": {"state_transition": 1475, "node_type": "S", "subcondition": 17, "parent": 5951}}, {"model": "template.logicnode", "pk": 5950, "fields": {"state_transition": 1475, "node_type": "S", "subcondition": 25, "parent": 5951}}, {"model": "template.logicnode", "pk": 5951, "fields": {"state_transition": 1475, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5952, "fields": {"state_transition": 1476, "node_type": "N", "subcondition": null, "parent": 5956}}, {"model": "template.logicnode", "pk": 5953, "fields": {"state_transition": 1476, "node_type": "S", "subcondition": 23, "parent": 5952}}, {"model": "template.logicnode", "pk": 5954, "fields": {"state_transition": 1476, "node_type": "S", "subcondition": 13, "parent": 5956}}, {"model": "template.logicnode", "pk": 5955, "fields": {"state_transition": 1476, "node_type": "S", "subcondition": 17, "parent": 5956}}, {"model": "template.logicnode", "pk": 5956, "fields": {"state_transition": 1476, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5957, "fields": {"state_transition": 1477, "node_type": "N", "subcondition": null, "parent": 5961}}, {"model": "template.logicnode", "pk": 5958, "fields": {"state_transition": 1477, "node_type": "S", "subcondition": 23, "parent": 5957}}, {"model": "template.logicnode", "pk": 5959, "fields": {"state_transition": 1477, "node_type": "S", "subcondition": 13, "parent": 5961}}, {"model": "template.logicnode", "pk": 5960, "fields": {"state_transition": 1477, "node_type": "S", "subcondition": 25, "parent": 5961}}, {"model": "template.logicnode", "pk": 5961, "fields": {"state_transition": 1477, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5962, "fields": {"state_transition": 1478, "node_type": "N", "subcondition": null, "parent": 5965}}, {"model": "template.logicnode", "pk": 5963, "fields": {"state_transition": 1478, "node_type": "S", "subcondition": 23, "parent": 5962}}, {"model": "template.logicnode", "pk": 5964, "fields": {"state_transition": 1478, "node_type": "S", "subcondition": 13, "parent": 5965}}, {"model": "template.logicnode", "pk": 5965, "fields": {"state_transition": 1478, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5966, "fields": {"state_transition": 1479, "node_type": "N", "subcondition": null, "parent": 5970}}, {"model": "template.logicnode", "pk": 5967, "fields": {"state_transition": 1479, "node_type": "S", "subcondition": 23, "parent": 5966}}, {"model": "template.logicnode", "pk": 5968, "fields": {"state_transition": 1479, "node_type": "S", "subcondition": 17, "parent": 5970}}, {"model": "template.logicnode", "pk": 5969, "fields": {"state_transition": 1479, "node_type": "S", "subcondition": 25, "parent": 5970}}, {"model": "template.logicnode", "pk": 5970, "fields": {"state_transition": 1479, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5971, "fields": {"state_transition": 1480, "node_type": "N", "subcondition": null, "parent": 5974}}, {"model": "template.logicnode", "pk": 5972, "fields": {"state_transition": 1480, "node_type": "S", "subcondition": 23, "parent": 5971}}, {"model": "template.logicnode", "pk": 5973, "fields": {"state_transition": 1480, "node_type": "S", "subcondition": 17, "parent": 5974}}, {"model": "template.logicnode", "pk": 5974, "fields": {"state_transition": 1480, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5975, "fields": {"state_transition": 1481, "node_type": "N", "subcondition": null, "parent": 5978}}, {"model": "template.logicnode", "pk": 5976, "fields": {"state_transition": 1481, "node_type": "S", "subcondition": 23, "parent": 5975}}, {"model": "template.logicnode", "pk": 5977, "fields": {"state_transition": 1481, "node_type": "S", "subcondition": 25, "parent": 5978}}, {"model": "template.logicnode", "pk": 5978, "fields": {"state_transition": 1481, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5979, "fields": {"state_transition": 1482, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5980, "fields": {"state_transition": 1482, "node_type": "S", "subcondition": 23, "parent": 5979}}, {"model": "template.logicnode", "pk": 5981, "fields": {"state_transition": 1483, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5982, "fields": {"state_transition": 1484, "node_type": "N", "subcondition": null, "parent": 5988}}, {"model": "template.logicnode", "pk": 5983, "fields": {"state_transition": 1484, "node_type": "S", "subcondition": 23, "parent": 5982}}, {"model": "template.logicnode", "pk": 5984, "fields": {"state_transition": 1484, "node_type": "S", "subcondition": 11, "parent": 5988}}, {"model": "template.logicnode", "pk": 5985, "fields": {"state_transition": 1484, "node_type": "S", "subcondition": 13, "parent": 5988}}, {"model": "template.logicnode", "pk": 5986, "fields": {"state_transition": 1484, "node_type": "S", "subcondition": 17, "parent": 5988}}, {"model": "template.logicnode", "pk": 5987, "fields": {"state_transition": 1484, "node_type": "S", "subcondition": 25, "parent": 5988}}, {"model": "template.logicnode", "pk": 5988, "fields": {"state_transition": 1484, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5989, "fields": {"state_transition": 1485, "node_type": "N", "subcondition": null, "parent": 5994}}, {"model": "template.logicnode", "pk": 5990, "fields": {"state_transition": 1485, "node_type": "S", "subcondition": 23, "parent": 5989}}, {"model": "template.logicnode", "pk": 5991, "fields": {"state_transition": 1485, "node_type": "S", "subcondition": 11, "parent": 5994}}, {"model": "template.logicnode", "pk": 5992, "fields": {"state_transition": 1485, "node_type": "S", "subcondition": 13, "parent": 5994}}, {"model": "template.logicnode", "pk": 5993, "fields": {"state_transition": 1485, "node_type": "S", "subcondition": 17, "parent": 5994}}, {"model": "template.logicnode", "pk": 5994, "fields": {"state_transition": 1485, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5995, "fields": {"state_transition": 1486, "node_type": "N", "subcondition": null, "parent": 6000}}, {"model": "template.logicnode", "pk": 5996, "fields": {"state_transition": 1486, "node_type": "S", "subcondition": 23, "parent": 5995}}, {"model": "template.logicnode", "pk": 5997, "fields": {"state_transition": 1486, "node_type": "S", "subcondition": 11, "parent": 6000}}, {"model": "template.logicnode", "pk": 5998, "fields": {"state_transition": 1486, "node_type": "S", "subcondition": 13, "parent": 6000}}, {"model": "template.logicnode", "pk": 5999, "fields": {"state_transition": 1486, "node_type": "S", "subcondition": 25, "parent": 6000}}, {"model": "template.logicnode", "pk": 6000, "fields": {"state_transition": 1486, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6001, "fields": {"state_transition": 1487, "node_type": "N", "subcondition": null, "parent": 6005}}, {"model": "template.logicnode", "pk": 6002, "fields": {"state_transition": 1487, "node_type": "S", "subcondition": 23, "parent": 6001}}, {"model": "template.logicnode", "pk": 6003, "fields": {"state_transition": 1487, "node_type": "S", "subcondition": 11, "parent": 6005}}, {"model": "template.logicnode", "pk": 6004, "fields": {"state_transition": 1487, "node_type": "S", "subcondition": 13, "parent": 6005}}, {"model": "template.logicnode", "pk": 6005, "fields": {"state_transition": 1487, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6006, "fields": {"state_transition": 1488, "node_type": "N", "subcondition": null, "parent": 6011}}, {"model": "template.logicnode", "pk": 6007, "fields": {"state_transition": 1488, "node_type": "S", "subcondition": 23, "parent": 6006}}, {"model": "template.logicnode", "pk": 6008, "fields": {"state_transition": 1488, "node_type": "S", "subcondition": 11, "parent": 6011}}, {"model": "template.logicnode", "pk": 6009, "fields": {"state_transition": 1488, "node_type": "S", "subcondition": 17, "parent": 6011}}, {"model": "template.logicnode", "pk": 6010, "fields": {"state_transition": 1488, "node_type": "S", "subcondition": 25, "parent": 6011}}, {"model": "template.logicnode", "pk": 6011, "fields": {"state_transition": 1488, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6012, "fields": {"state_transition": 1489, "node_type": "N", "subcondition": null, "parent": 6016}}, {"model": "template.logicnode", "pk": 6013, "fields": {"state_transition": 1489, "node_type": "S", "subcondition": 23, "parent": 6012}}, {"model": "template.logicnode", "pk": 6014, "fields": {"state_transition": 1489, "node_type": "S", "subcondition": 11, "parent": 6016}}, {"model": "template.logicnode", "pk": 6015, "fields": {"state_transition": 1489, "node_type": "S", "subcondition": 17, "parent": 6016}}, {"model": "template.logicnode", "pk": 6016, "fields": {"state_transition": 1489, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6017, "fields": {"state_transition": 1490, "node_type": "N", "subcondition": null, "parent": 6021}}, {"model": "template.logicnode", "pk": 6018, "fields": {"state_transition": 1490, "node_type": "S", "subcondition": 23, "parent": 6017}}, {"model": "template.logicnode", "pk": 6019, "fields": {"state_transition": 1490, "node_type": "S", "subcondition": 11, "parent": 6021}}, {"model": "template.logicnode", "pk": 6020, "fields": {"state_transition": 1490, "node_type": "S", "subcondition": 25, "parent": 6021}}, {"model": "template.logicnode", "pk": 6021, "fields": {"state_transition": 1490, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6022, "fields": {"state_transition": 1491, "node_type": "N", "subcondition": null, "parent": 6025}}, {"model": "template.logicnode", "pk": 6023, "fields": {"state_transition": 1491, "node_type": "S", "subcondition": 23, "parent": 6022}}, {"model": "template.logicnode", "pk": 6024, "fields": {"state_transition": 1491, "node_type": "S", "subcondition": 11, "parent": 6025}}, {"model": "template.logicnode", "pk": 6025, "fields": {"state_transition": 1491, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6026, "fields": {"state_transition": 1492, "node_type": "N", "subcondition": null, "parent": 6031}}, {"model": "template.logicnode", "pk": 6027, "fields": {"state_transition": 1492, "node_type": "S", "subcondition": 23, "parent": 6026}}, {"model": "template.logicnode", "pk": 6028, "fields": {"state_transition": 1492, "node_type": "S", "subcondition": 13, "parent": 6031}}, {"model": "template.logicnode", "pk": 6029, "fields": {"state_transition": 1492, "node_type": "S", "subcondition": 17, "parent": 6031}}, {"model": "template.logicnode", "pk": 6030, "fields": {"state_transition": 1492, "node_type": "S", "subcondition": 25, "parent": 6031}}, {"model": "template.logicnode", "pk": 6031, "fields": {"state_transition": 1492, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6032, "fields": {"state_transition": 1493, "node_type": "N", "subcondition": null, "parent": 6036}}, {"model": "template.logicnode", "pk": 6033, "fields": {"state_transition": 1493, "node_type": "S", "subcondition": 23, "parent": 6032}}, {"model": "template.logicnode", "pk": 6034, "fields": {"state_transition": 1493, "node_type": "S", "subcondition": 13, "parent": 6036}}, {"model": "template.logicnode", "pk": 6035, "fields": {"state_transition": 1493, "node_type": "S", "subcondition": 17, "parent": 6036}}, {"model": "template.logicnode", "pk": 6036, "fields": {"state_transition": 1493, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6037, "fields": {"state_transition": 1494, "node_type": "N", "subcondition": null, "parent": 6041}}, {"model": "template.logicnode", "pk": 6038, "fields": {"state_transition": 1494, "node_type": "S", "subcondition": 23, "parent": 6037}}, {"model": "template.logicnode", "pk": 6039, "fields": {"state_transition": 1494, "node_type": "S", "subcondition": 13, "parent": 6041}}, {"model": "template.logicnode", "pk": 6040, "fields": {"state_transition": 1494, "node_type": "S", "subcondition": 25, "parent": 6041}}, {"model": "template.logicnode", "pk": 6041, "fields": {"state_transition": 1494, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6042, "fields": {"state_transition": 1495, "node_type": "N", "subcondition": null, "parent": 6045}}, {"model": "template.logicnode", "pk": 6043, "fields": {"state_transition": 1495, "node_type": "S", "subcondition": 23, "parent": 6042}}, {"model": "template.logicnode", "pk": 6044, "fields": {"state_transition": 1495, "node_type": "S", "subcondition": 13, "parent": 6045}}, {"model": "template.logicnode", "pk": 6045, "fields": {"state_transition": 1495, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6046, "fields": {"state_transition": 1496, "node_type": "N", "subcondition": null, "parent": 6050}}, {"model": "template.logicnode", "pk": 6047, "fields": {"state_transition": 1496, "node_type": "S", "subcondition": 23, "parent": 6046}}, {"model": "template.logicnode", "pk": 6048, "fields": {"state_transition": 1496, "node_type": "S", "subcondition": 17, "parent": 6050}}, {"model": "template.logicnode", "pk": 6049, "fields": {"state_transition": 1496, "node_type": "S", "subcondition": 25, "parent": 6050}}, {"model": "template.logicnode", "pk": 6050, "fields": {"state_transition": 1496, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6051, "fields": {"state_transition": 1497, "node_type": "N", "subcondition": null, "parent": 6054}}, {"model": "template.logicnode", "pk": 6052, "fields": {"state_transition": 1497, "node_type": "S", "subcondition": 23, "parent": 6051}}, {"model": "template.logicnode", "pk": 6053, "fields": {"state_transition": 1497, "node_type": "S", "subcondition": 17, "parent": 6054}}, {"model": "template.logicnode", "pk": 6054, "fields": {"state_transition": 1497, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6055, "fields": {"state_transition": 1498, "node_type": "N", "subcondition": null, "parent": 6058}}, {"model": "template.logicnode", "pk": 6056, "fields": {"state_transition": 1498, "node_type": "S", "subcondition": 23, "parent": 6055}}, {"model": "template.logicnode", "pk": 6057, "fields": {"state_transition": 1498, "node_type": "S", "subcondition": 25, "parent": 6058}}, {"model": "template.logicnode", "pk": 6058, "fields": {"state_transition": 1498, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6059, "fields": {"state_transition": 1499, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6060, "fields": {"state_transition": 1499, "node_type": "S", "subcondition": 23, "parent": 6059}}, {"model": "template.logicnode", "pk": 6061, "fields": {"state_transition": 1500, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6062, "fields": {"state_transition": 1501, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6063, "fields": {"state_transition": 1502, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6064, "fields": {"state_transition": 1503, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6065, "fields": {"state_transition": 1504, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6066, "fields": {"state_transition": 1505, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6067, "fields": {"state_transition": 1506, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6068, "fields": {"state_transition": 1507, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6069, "fields": {"state_transition": 1508, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6070, "fields": {"state_transition": 1509, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6071, "fields": {"state_transition": 1510, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6072, "fields": {"state_transition": 1511, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6073, "fields": {"state_transition": 1512, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6074, "fields": {"state_transition": 1513, "node_type": "N", "subcondition": null, "parent": 6080}}, {"model": "template.logicnode", "pk": 6075, "fields": {"state_transition": 1513, "node_type": "S", "subcondition": 23, "parent": 6074}}, {"model": "template.logicnode", "pk": 6076, "fields": {"state_transition": 1513, "node_type": "S", "subcondition": 11, "parent": 6080}}, {"model": "template.logicnode", "pk": 6077, "fields": {"state_transition": 1513, "node_type": "S", "subcondition": 13, "parent": 6080}}, {"model": "template.logicnode", "pk": 6078, "fields": {"state_transition": 1513, "node_type": "S", "subcondition": 17, "parent": 6080}}, {"model": "template.logicnode", "pk": 6079, "fields": {"state_transition": 1513, "node_type": "S", "subcondition": 25, "parent": 6080}}, {"model": "template.logicnode", "pk": 6080, "fields": {"state_transition": 1513, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6081, "fields": {"state_transition": 1514, "node_type": "N", "subcondition": null, "parent": 6086}}, {"model": "template.logicnode", "pk": 6082, "fields": {"state_transition": 1514, "node_type": "S", "subcondition": 23, "parent": 6081}}, {"model": "template.logicnode", "pk": 6083, "fields": {"state_transition": 1514, "node_type": "S", "subcondition": 11, "parent": 6086}}, {"model": "template.logicnode", "pk": 6084, "fields": {"state_transition": 1514, "node_type": "S", "subcondition": 13, "parent": 6086}}, {"model": "template.logicnode", "pk": 6085, "fields": {"state_transition": 1514, "node_type": "S", "subcondition": 17, "parent": 6086}}, {"model": "template.logicnode", "pk": 6086, "fields": {"state_transition": 1514, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6087, "fields": {"state_transition": 1515, "node_type": "N", "subcondition": null, "parent": 6092}}, {"model": "template.logicnode", "pk": 6088, "fields": {"state_transition": 1515, "node_type": "S", "subcondition": 23, "parent": 6087}}, {"model": "template.logicnode", "pk": 6089, "fields": {"state_transition": 1515, "node_type": "S", "subcondition": 11, "parent": 6092}}, {"model": "template.logicnode", "pk": 6090, "fields": {"state_transition": 1515, "node_type": "S", "subcondition": 13, "parent": 6092}}, {"model": "template.logicnode", "pk": 6091, "fields": {"state_transition": 1515, "node_type": "S", "subcondition": 25, "parent": 6092}}, {"model": "template.logicnode", "pk": 6092, "fields": {"state_transition": 1515, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6093, "fields": {"state_transition": 1516, "node_type": "N", "subcondition": null, "parent": 6097}}, {"model": "template.logicnode", "pk": 6094, "fields": {"state_transition": 1516, "node_type": "S", "subcondition": 23, "parent": 6093}}, {"model": "template.logicnode", "pk": 6095, "fields": {"state_transition": 1516, "node_type": "S", "subcondition": 11, "parent": 6097}}, {"model": "template.logicnode", "pk": 6096, "fields": {"state_transition": 1516, "node_type": "S", "subcondition": 13, "parent": 6097}}, {"model": "template.logicnode", "pk": 6097, "fields": {"state_transition": 1516, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6098, "fields": {"state_transition": 1517, "node_type": "N", "subcondition": null, "parent": 6103}}, {"model": "template.logicnode", "pk": 6099, "fields": {"state_transition": 1517, "node_type": "S", "subcondition": 23, "parent": 6098}}, {"model": "template.logicnode", "pk": 6100, "fields": {"state_transition": 1517, "node_type": "S", "subcondition": 11, "parent": 6103}}, {"model": "template.logicnode", "pk": 6101, "fields": {"state_transition": 1517, "node_type": "S", "subcondition": 17, "parent": 6103}}, {"model": "template.logicnode", "pk": 6102, "fields": {"state_transition": 1517, "node_type": "S", "subcondition": 25, "parent": 6103}}, {"model": "template.logicnode", "pk": 6103, "fields": {"state_transition": 1517, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6104, "fields": {"state_transition": 1518, "node_type": "N", "subcondition": null, "parent": 6108}}, {"model": "template.logicnode", "pk": 6105, "fields": {"state_transition": 1518, "node_type": "S", "subcondition": 23, "parent": 6104}}, {"model": "template.logicnode", "pk": 6106, "fields": {"state_transition": 1518, "node_type": "S", "subcondition": 11, "parent": 6108}}, {"model": "template.logicnode", "pk": 6107, "fields": {"state_transition": 1518, "node_type": "S", "subcondition": 17, "parent": 6108}}, {"model": "template.logicnode", "pk": 6108, "fields": {"state_transition": 1518, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6109, "fields": {"state_transition": 1519, "node_type": "N", "subcondition": null, "parent": 6113}}, {"model": "template.logicnode", "pk": 6110, "fields": {"state_transition": 1519, "node_type": "S", "subcondition": 23, "parent": 6109}}, {"model": "template.logicnode", "pk": 6111, "fields": {"state_transition": 1519, "node_type": "S", "subcondition": 11, "parent": 6113}}, {"model": "template.logicnode", "pk": 6112, "fields": {"state_transition": 1519, "node_type": "S", "subcondition": 25, "parent": 6113}}, {"model": "template.logicnode", "pk": 6113, "fields": {"state_transition": 1519, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6114, "fields": {"state_transition": 1520, "node_type": "N", "subcondition": null, "parent": 6117}}, {"model": "template.logicnode", "pk": 6115, "fields": {"state_transition": 1520, "node_type": "S", "subcondition": 23, "parent": 6114}}, {"model": "template.logicnode", "pk": 6116, "fields": {"state_transition": 1520, "node_type": "S", "subcondition": 11, "parent": 6117}}, {"model": "template.logicnode", "pk": 6117, "fields": {"state_transition": 1520, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6118, "fields": {"state_transition": 1521, "node_type": "N", "subcondition": null, "parent": 6123}}, {"model": "template.logicnode", "pk": 6119, "fields": {"state_transition": 1521, "node_type": "S", "subcondition": 23, "parent": 6118}}, {"model": "template.logicnode", "pk": 6120, "fields": {"state_transition": 1521, "node_type": "S", "subcondition": 13, "parent": 6123}}, {"model": "template.logicnode", "pk": 6121, "fields": {"state_transition": 1521, "node_type": "S", "subcondition": 17, "parent": 6123}}, {"model": "template.logicnode", "pk": 6122, "fields": {"state_transition": 1521, "node_type": "S", "subcondition": 25, "parent": 6123}}, {"model": "template.logicnode", "pk": 6123, "fields": {"state_transition": 1521, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6124, "fields": {"state_transition": 1522, "node_type": "N", "subcondition": null, "parent": 6128}}, {"model": "template.logicnode", "pk": 6125, "fields": {"state_transition": 1522, "node_type": "S", "subcondition": 23, "parent": 6124}}, {"model": "template.logicnode", "pk": 6126, "fields": {"state_transition": 1522, "node_type": "S", "subcondition": 13, "parent": 6128}}, {"model": "template.logicnode", "pk": 6127, "fields": {"state_transition": 1522, "node_type": "S", "subcondition": 17, "parent": 6128}}, {"model": "template.logicnode", "pk": 6128, "fields": {"state_transition": 1522, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6129, "fields": {"state_transition": 1523, "node_type": "N", "subcondition": null, "parent": 6133}}, {"model": "template.logicnode", "pk": 6130, "fields": {"state_transition": 1523, "node_type": "S", "subcondition": 23, "parent": 6129}}, {"model": "template.logicnode", "pk": 6131, "fields": {"state_transition": 1523, "node_type": "S", "subcondition": 13, "parent": 6133}}, {"model": "template.logicnode", "pk": 6132, "fields": {"state_transition": 1523, "node_type": "S", "subcondition": 25, "parent": 6133}}, {"model": "template.logicnode", "pk": 6133, "fields": {"state_transition": 1523, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6134, "fields": {"state_transition": 1524, "node_type": "N", "subcondition": null, "parent": 6137}}, {"model": "template.logicnode", "pk": 6135, "fields": {"state_transition": 1524, "node_type": "S", "subcondition": 23, "parent": 6134}}, {"model": "template.logicnode", "pk": 6136, "fields": {"state_transition": 1524, "node_type": "S", "subcondition": 13, "parent": 6137}}, {"model": "template.logicnode", "pk": 6137, "fields": {"state_transition": 1524, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6138, "fields": {"state_transition": 1525, "node_type": "N", "subcondition": null, "parent": 6142}}, {"model": "template.logicnode", "pk": 6139, "fields": {"state_transition": 1525, "node_type": "S", "subcondition": 23, "parent": 6138}}, {"model": "template.logicnode", "pk": 6140, "fields": {"state_transition": 1525, "node_type": "S", "subcondition": 17, "parent": 6142}}, {"model": "template.logicnode", "pk": 6141, "fields": {"state_transition": 1525, "node_type": "S", "subcondition": 25, "parent": 6142}}, {"model": "template.logicnode", "pk": 6142, "fields": {"state_transition": 1525, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6143, "fields": {"state_transition": 1526, "node_type": "N", "subcondition": null, "parent": 6146}}, {"model": "template.logicnode", "pk": 6144, "fields": {"state_transition": 1526, "node_type": "S", "subcondition": 23, "parent": 6143}}, {"model": "template.logicnode", "pk": 6145, "fields": {"state_transition": 1526, "node_type": "S", "subcondition": 17, "parent": 6146}}, {"model": "template.logicnode", "pk": 6146, "fields": {"state_transition": 1526, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6147, "fields": {"state_transition": 1527, "node_type": "N", "subcondition": null, "parent": 6150}}, {"model": "template.logicnode", "pk": 6148, "fields": {"state_transition": 1527, "node_type": "S", "subcondition": 23, "parent": 6147}}, {"model": "template.logicnode", "pk": 6149, "fields": {"state_transition": 1527, "node_type": "S", "subcondition": 25, "parent": 6150}}, {"model": "template.logicnode", "pk": 6150, "fields": {"state_transition": 1527, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6151, "fields": {"state_transition": 1528, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6152, "fields": {"state_transition": 1528, "node_type": "S", "subcondition": 23, "parent": 6151}}, {"model": "template.logicnode", "pk": 6153, "fields": {"state_transition": 1529, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6154, "fields": {"state_transition": 1530, "node_type": "N", "subcondition": null, "parent": 6160}}, {"model": "template.logicnode", "pk": 6155, "fields": {"state_transition": 1530, "node_type": "S", "subcondition": 23, "parent": 6154}}, {"model": "template.logicnode", "pk": 6156, "fields": {"state_transition": 1530, "node_type": "S", "subcondition": 11, "parent": 6160}}, {"model": "template.logicnode", "pk": 6157, "fields": {"state_transition": 1530, "node_type": "S", "subcondition": 13, "parent": 6160}}, {"model": "template.logicnode", "pk": 6158, "fields": {"state_transition": 1530, "node_type": "S", "subcondition": 17, "parent": 6160}}, {"model": "template.logicnode", "pk": 6159, "fields": {"state_transition": 1530, "node_type": "S", "subcondition": 25, "parent": 6160}}, {"model": "template.logicnode", "pk": 6160, "fields": {"state_transition": 1530, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6161, "fields": {"state_transition": 1531, "node_type": "N", "subcondition": null, "parent": 6166}}, {"model": "template.logicnode", "pk": 6162, "fields": {"state_transition": 1531, "node_type": "S", "subcondition": 23, "parent": 6161}}, {"model": "template.logicnode", "pk": 6163, "fields": {"state_transition": 1531, "node_type": "S", "subcondition": 11, "parent": 6166}}, {"model": "template.logicnode", "pk": 6164, "fields": {"state_transition": 1531, "node_type": "S", "subcondition": 13, "parent": 6166}}, {"model": "template.logicnode", "pk": 6165, "fields": {"state_transition": 1531, "node_type": "S", "subcondition": 17, "parent": 6166}}, {"model": "template.logicnode", "pk": 6166, "fields": {"state_transition": 1531, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6167, "fields": {"state_transition": 1532, "node_type": "N", "subcondition": null, "parent": 6172}}, {"model": "template.logicnode", "pk": 6168, "fields": {"state_transition": 1532, "node_type": "S", "subcondition": 23, "parent": 6167}}, {"model": "template.logicnode", "pk": 6169, "fields": {"state_transition": 1532, "node_type": "S", "subcondition": 11, "parent": 6172}}, {"model": "template.logicnode", "pk": 6170, "fields": {"state_transition": 1532, "node_type": "S", "subcondition": 13, "parent": 6172}}, {"model": "template.logicnode", "pk": 6171, "fields": {"state_transition": 1532, "node_type": "S", "subcondition": 25, "parent": 6172}}, {"model": "template.logicnode", "pk": 6172, "fields": {"state_transition": 1532, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6173, "fields": {"state_transition": 1533, "node_type": "N", "subcondition": null, "parent": 6177}}, {"model": "template.logicnode", "pk": 6174, "fields": {"state_transition": 1533, "node_type": "S", "subcondition": 23, "parent": 6173}}, {"model": "template.logicnode", "pk": 6175, "fields": {"state_transition": 1533, "node_type": "S", "subcondition": 11, "parent": 6177}}, {"model": "template.logicnode", "pk": 6176, "fields": {"state_transition": 1533, "node_type": "S", "subcondition": 13, "parent": 6177}}, {"model": "template.logicnode", "pk": 6177, "fields": {"state_transition": 1533, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6178, "fields": {"state_transition": 1534, "node_type": "N", "subcondition": null, "parent": 6183}}, {"model": "template.logicnode", "pk": 6179, "fields": {"state_transition": 1534, "node_type": "S", "subcondition": 23, "parent": 6178}}, {"model": "template.logicnode", "pk": 6180, "fields": {"state_transition": 1534, "node_type": "S", "subcondition": 11, "parent": 6183}}, {"model": "template.logicnode", "pk": 6181, "fields": {"state_transition": 1534, "node_type": "S", "subcondition": 17, "parent": 6183}}, {"model": "template.logicnode", "pk": 6182, "fields": {"state_transition": 1534, "node_type": "S", "subcondition": 25, "parent": 6183}}, {"model": "template.logicnode", "pk": 6183, "fields": {"state_transition": 1534, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6184, "fields": {"state_transition": 1535, "node_type": "N", "subcondition": null, "parent": 6188}}, {"model": "template.logicnode", "pk": 6185, "fields": {"state_transition": 1535, "node_type": "S", "subcondition": 23, "parent": 6184}}, {"model": "template.logicnode", "pk": 6186, "fields": {"state_transition": 1535, "node_type": "S", "subcondition": 11, "parent": 6188}}, {"model": "template.logicnode", "pk": 6187, "fields": {"state_transition": 1535, "node_type": "S", "subcondition": 17, "parent": 6188}}, {"model": "template.logicnode", "pk": 6188, "fields": {"state_transition": 1535, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6189, "fields": {"state_transition": 1536, "node_type": "N", "subcondition": null, "parent": 6193}}, {"model": "template.logicnode", "pk": 6190, "fields": {"state_transition": 1536, "node_type": "S", "subcondition": 23, "parent": 6189}}, {"model": "template.logicnode", "pk": 6191, "fields": {"state_transition": 1536, "node_type": "S", "subcondition": 11, "parent": 6193}}, {"model": "template.logicnode", "pk": 6192, "fields": {"state_transition": 1536, "node_type": "S", "subcondition": 25, "parent": 6193}}, {"model": "template.logicnode", "pk": 6193, "fields": {"state_transition": 1536, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6194, "fields": {"state_transition": 1537, "node_type": "N", "subcondition": null, "parent": 6197}}, {"model": "template.logicnode", "pk": 6195, "fields": {"state_transition": 1537, "node_type": "S", "subcondition": 23, "parent": 6194}}, {"model": "template.logicnode", "pk": 6196, "fields": {"state_transition": 1537, "node_type": "S", "subcondition": 11, "parent": 6197}}, {"model": "template.logicnode", "pk": 6197, "fields": {"state_transition": 1537, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6198, "fields": {"state_transition": 1538, "node_type": "N", "subcondition": null, "parent": 6203}}, {"model": "template.logicnode", "pk": 6199, "fields": {"state_transition": 1538, "node_type": "S", "subcondition": 23, "parent": 6198}}, {"model": "template.logicnode", "pk": 6200, "fields": {"state_transition": 1538, "node_type": "S", "subcondition": 13, "parent": 6203}}, {"model": "template.logicnode", "pk": 6201, "fields": {"state_transition": 1538, "node_type": "S", "subcondition": 17, "parent": 6203}}, {"model": "template.logicnode", "pk": 6202, "fields": {"state_transition": 1538, "node_type": "S", "subcondition": 25, "parent": 6203}}, {"model": "template.logicnode", "pk": 6203, "fields": {"state_transition": 1538, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6204, "fields": {"state_transition": 1539, "node_type": "N", "subcondition": null, "parent": 6208}}, {"model": "template.logicnode", "pk": 6205, "fields": {"state_transition": 1539, "node_type": "S", "subcondition": 23, "parent": 6204}}, {"model": "template.logicnode", "pk": 6206, "fields": {"state_transition": 1539, "node_type": "S", "subcondition": 13, "parent": 6208}}, {"model": "template.logicnode", "pk": 6207, "fields": {"state_transition": 1539, "node_type": "S", "subcondition": 17, "parent": 6208}}, {"model": "template.logicnode", "pk": 6208, "fields": {"state_transition": 1539, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6209, "fields": {"state_transition": 1540, "node_type": "N", "subcondition": null, "parent": 6213}}, {"model": "template.logicnode", "pk": 6210, "fields": {"state_transition": 1540, "node_type": "S", "subcondition": 23, "parent": 6209}}, {"model": "template.logicnode", "pk": 6211, "fields": {"state_transition": 1540, "node_type": "S", "subcondition": 13, "parent": 6213}}, {"model": "template.logicnode", "pk": 6212, "fields": {"state_transition": 1540, "node_type": "S", "subcondition": 25, "parent": 6213}}, {"model": "template.logicnode", "pk": 6213, "fields": {"state_transition": 1540, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6214, "fields": {"state_transition": 1541, "node_type": "N", "subcondition": null, "parent": 6217}}, {"model": "template.logicnode", "pk": 6215, "fields": {"state_transition": 1541, "node_type": "S", "subcondition": 23, "parent": 6214}}, {"model": "template.logicnode", "pk": 6216, "fields": {"state_transition": 1541, "node_type": "S", "subcondition": 13, "parent": 6217}}, {"model": "template.logicnode", "pk": 6217, "fields": {"state_transition": 1541, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6218, "fields": {"state_transition": 1542, "node_type": "N", "subcondition": null, "parent": 6222}}, {"model": "template.logicnode", "pk": 6219, "fields": {"state_transition": 1542, "node_type": "S", "subcondition": 23, "parent": 6218}}, {"model": "template.logicnode", "pk": 6220, "fields": {"state_transition": 1542, "node_type": "S", "subcondition": 17, "parent": 6222}}, {"model": "template.logicnode", "pk": 6221, "fields": {"state_transition": 1542, "node_type": "S", "subcondition": 25, "parent": 6222}}, {"model": "template.logicnode", "pk": 6222, "fields": {"state_transition": 1542, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6223, "fields": {"state_transition": 1543, "node_type": "N", "subcondition": null, "parent": 6226}}, {"model": "template.logicnode", "pk": 6224, "fields": {"state_transition": 1543, "node_type": "S", "subcondition": 23, "parent": 6223}}, {"model": "template.logicnode", "pk": 6225, "fields": {"state_transition": 1543, "node_type": "S", "subcondition": 17, "parent": 6226}}, {"model": "template.logicnode", "pk": 6226, "fields": {"state_transition": 1543, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6227, "fields": {"state_transition": 1544, "node_type": "N", "subcondition": null, "parent": 6230}}, {"model": "template.logicnode", "pk": 6228, "fields": {"state_transition": 1544, "node_type": "S", "subcondition": 23, "parent": 6227}}, {"model": "template.logicnode", "pk": 6229, "fields": {"state_transition": 1544, "node_type": "S", "subcondition": 25, "parent": 6230}}, {"model": "template.logicnode", "pk": 6230, "fields": {"state_transition": 1544, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6231, "fields": {"state_transition": 1545, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6232, "fields": {"state_transition": 1545, "node_type": "S", "subcondition": 23, "parent": 6231}}, {"model": "template.logicnode", "pk": 6233, "fields": {"state_transition": 1546, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6234, "fields": {"state_transition": 1547, "node_type": "N", "subcondition": null, "parent": 6240}}, {"model": "template.logicnode", "pk": 6235, "fields": {"state_transition": 1547, "node_type": "S", "subcondition": 23, "parent": 6234}}, {"model": "template.logicnode", "pk": 6236, "fields": {"state_transition": 1547, "node_type": "S", "subcondition": 11, "parent": 6240}}, {"model": "template.logicnode", "pk": 6237, "fields": {"state_transition": 1547, "node_type": "S", "subcondition": 13, "parent": 6240}}, {"model": "template.logicnode", "pk": 6238, "fields": {"state_transition": 1547, "node_type": "S", "subcondition": 17, "parent": 6240}}, {"model": "template.logicnode", "pk": 6239, "fields": {"state_transition": 1547, "node_type": "S", "subcondition": 25, "parent": 6240}}, {"model": "template.logicnode", "pk": 6240, "fields": {"state_transition": 1547, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6241, "fields": {"state_transition": 1548, "node_type": "N", "subcondition": null, "parent": 6246}}, {"model": "template.logicnode", "pk": 6242, "fields": {"state_transition": 1548, "node_type": "S", "subcondition": 23, "parent": 6241}}, {"model": "template.logicnode", "pk": 6243, "fields": {"state_transition": 1548, "node_type": "S", "subcondition": 11, "parent": 6246}}, {"model": "template.logicnode", "pk": 6244, "fields": {"state_transition": 1548, "node_type": "S", "subcondition": 13, "parent": 6246}}, {"model": "template.logicnode", "pk": 6245, "fields": {"state_transition": 1548, "node_type": "S", "subcondition": 17, "parent": 6246}}, {"model": "template.logicnode", "pk": 6246, "fields": {"state_transition": 1548, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6247, "fields": {"state_transition": 1549, "node_type": "N", "subcondition": null, "parent": 6252}}, {"model": "template.logicnode", "pk": 6248, "fields": {"state_transition": 1549, "node_type": "S", "subcondition": 23, "parent": 6247}}, {"model": "template.logicnode", "pk": 6249, "fields": {"state_transition": 1549, "node_type": "S", "subcondition": 11, "parent": 6252}}, {"model": "template.logicnode", "pk": 6250, "fields": {"state_transition": 1549, "node_type": "S", "subcondition": 13, "parent": 6252}}, {"model": "template.logicnode", "pk": 6251, "fields": {"state_transition": 1549, "node_type": "S", "subcondition": 25, "parent": 6252}}, {"model": "template.logicnode", "pk": 6252, "fields": {"state_transition": 1549, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6253, "fields": {"state_transition": 1550, "node_type": "N", "subcondition": null, "parent": 6257}}, {"model": "template.logicnode", "pk": 6254, "fields": {"state_transition": 1550, "node_type": "S", "subcondition": 23, "parent": 6253}}, {"model": "template.logicnode", "pk": 6255, "fields": {"state_transition": 1550, "node_type": "S", "subcondition": 11, "parent": 6257}}, {"model": "template.logicnode", "pk": 6256, "fields": {"state_transition": 1550, "node_type": "S", "subcondition": 13, "parent": 6257}}, {"model": "template.logicnode", "pk": 6257, "fields": {"state_transition": 1550, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6258, "fields": {"state_transition": 1551, "node_type": "N", "subcondition": null, "parent": 6263}}, {"model": "template.logicnode", "pk": 6259, "fields": {"state_transition": 1551, "node_type": "S", "subcondition": 23, "parent": 6258}}, {"model": "template.logicnode", "pk": 6260, "fields": {"state_transition": 1551, "node_type": "S", "subcondition": 11, "parent": 6263}}, {"model": "template.logicnode", "pk": 6261, "fields": {"state_transition": 1551, "node_type": "S", "subcondition": 17, "parent": 6263}}, {"model": "template.logicnode", "pk": 6262, "fields": {"state_transition": 1551, "node_type": "S", "subcondition": 25, "parent": 6263}}, {"model": "template.logicnode", "pk": 6263, "fields": {"state_transition": 1551, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6264, "fields": {"state_transition": 1552, "node_type": "N", "subcondition": null, "parent": 6268}}, {"model": "template.logicnode", "pk": 6265, "fields": {"state_transition": 1552, "node_type": "S", "subcondition": 23, "parent": 6264}}, {"model": "template.logicnode", "pk": 6266, "fields": {"state_transition": 1552, "node_type": "S", "subcondition": 11, "parent": 6268}}, {"model": "template.logicnode", "pk": 6267, "fields": {"state_transition": 1552, "node_type": "S", "subcondition": 17, "parent": 6268}}, {"model": "template.logicnode", "pk": 6268, "fields": {"state_transition": 1552, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6269, "fields": {"state_transition": 1553, "node_type": "N", "subcondition": null, "parent": 6273}}, {"model": "template.logicnode", "pk": 6270, "fields": {"state_transition": 1553, "node_type": "S", "subcondition": 23, "parent": 6269}}, {"model": "template.logicnode", "pk": 6271, "fields": {"state_transition": 1553, "node_type": "S", "subcondition": 11, "parent": 6273}}, {"model": "template.logicnode", "pk": 6272, "fields": {"state_transition": 1553, "node_type": "S", "subcondition": 25, "parent": 6273}}, {"model": "template.logicnode", "pk": 6273, "fields": {"state_transition": 1553, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6274, "fields": {"state_transition": 1554, "node_type": "N", "subcondition": null, "parent": 6277}}, {"model": "template.logicnode", "pk": 6275, "fields": {"state_transition": 1554, "node_type": "S", "subcondition": 23, "parent": 6274}}, {"model": "template.logicnode", "pk": 6276, "fields": {"state_transition": 1554, "node_type": "S", "subcondition": 11, "parent": 6277}}, {"model": "template.logicnode", "pk": 6277, "fields": {"state_transition": 1554, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6278, "fields": {"state_transition": 1555, "node_type": "N", "subcondition": null, "parent": 6283}}, {"model": "template.logicnode", "pk": 6279, "fields": {"state_transition": 1555, "node_type": "S", "subcondition": 23, "parent": 6278}}, {"model": "template.logicnode", "pk": 6280, "fields": {"state_transition": 1555, "node_type": "S", "subcondition": 13, "parent": 6283}}, {"model": "template.logicnode", "pk": 6281, "fields": {"state_transition": 1555, "node_type": "S", "subcondition": 17, "parent": 6283}}, {"model": "template.logicnode", "pk": 6282, "fields": {"state_transition": 1555, "node_type": "S", "subcondition": 25, "parent": 6283}}, {"model": "template.logicnode", "pk": 6283, "fields": {"state_transition": 1555, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6284, "fields": {"state_transition": 1556, "node_type": "N", "subcondition": null, "parent": 6288}}, {"model": "template.logicnode", "pk": 6285, "fields": {"state_transition": 1556, "node_type": "S", "subcondition": 23, "parent": 6284}}, {"model": "template.logicnode", "pk": 6286, "fields": {"state_transition": 1556, "node_type": "S", "subcondition": 13, "parent": 6288}}, {"model": "template.logicnode", "pk": 6287, "fields": {"state_transition": 1556, "node_type": "S", "subcondition": 17, "parent": 6288}}, {"model": "template.logicnode", "pk": 6288, "fields": {"state_transition": 1556, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6289, "fields": {"state_transition": 1557, "node_type": "N", "subcondition": null, "parent": 6293}}, {"model": "template.logicnode", "pk": 6290, "fields": {"state_transition": 1557, "node_type": "S", "subcondition": 23, "parent": 6289}}, {"model": "template.logicnode", "pk": 6291, "fields": {"state_transition": 1557, "node_type": "S", "subcondition": 13, "parent": 6293}}, {"model": "template.logicnode", "pk": 6292, "fields": {"state_transition": 1557, "node_type": "S", "subcondition": 25, "parent": 6293}}, {"model": "template.logicnode", "pk": 6293, "fields": {"state_transition": 1557, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6294, "fields": {"state_transition": 1558, "node_type": "N", "subcondition": null, "parent": 6297}}, {"model": "template.logicnode", "pk": 6295, "fields": {"state_transition": 1558, "node_type": "S", "subcondition": 23, "parent": 6294}}, {"model": "template.logicnode", "pk": 6296, "fields": {"state_transition": 1558, "node_type": "S", "subcondition": 13, "parent": 6297}}, {"model": "template.logicnode", "pk": 6297, "fields": {"state_transition": 1558, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6298, "fields": {"state_transition": 1559, "node_type": "N", "subcondition": null, "parent": 6302}}, {"model": "template.logicnode", "pk": 6299, "fields": {"state_transition": 1559, "node_type": "S", "subcondition": 23, "parent": 6298}}, {"model": "template.logicnode", "pk": 6300, "fields": {"state_transition": 1559, "node_type": "S", "subcondition": 17, "parent": 6302}}, {"model": "template.logicnode", "pk": 6301, "fields": {"state_transition": 1559, "node_type": "S", "subcondition": 25, "parent": 6302}}, {"model": "template.logicnode", "pk": 6302, "fields": {"state_transition": 1559, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6303, "fields": {"state_transition": 1560, "node_type": "N", "subcondition": null, "parent": 6306}}, {"model": "template.logicnode", "pk": 6304, "fields": {"state_transition": 1560, "node_type": "S", "subcondition": 23, "parent": 6303}}, {"model": "template.logicnode", "pk": 6305, "fields": {"state_transition": 1560, "node_type": "S", "subcondition": 17, "parent": 6306}}, {"model": "template.logicnode", "pk": 6306, "fields": {"state_transition": 1560, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6307, "fields": {"state_transition": 1561, "node_type": "N", "subcondition": null, "parent": 6310}}, {"model": "template.logicnode", "pk": 6308, "fields": {"state_transition": 1561, "node_type": "S", "subcondition": 23, "parent": 6307}}, {"model": "template.logicnode", "pk": 6309, "fields": {"state_transition": 1561, "node_type": "S", "subcondition": 25, "parent": 6310}}, {"model": "template.logicnode", "pk": 6310, "fields": {"state_transition": 1561, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6311, "fields": {"state_transition": 1562, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6312, "fields": {"state_transition": 1562, "node_type": "S", "subcondition": 23, "parent": 6311}}, {"model": "template.logicnode", "pk": 6313, "fields": {"state_transition": 1563, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6314, "fields": {"state_transition": 1564, "node_type": "N", "subcondition": null, "parent": 6320}}, {"model": "template.logicnode", "pk": 6315, "fields": {"state_transition": 1564, "node_type": "S", "subcondition": 23, "parent": 6314}}, {"model": "template.logicnode", "pk": 6316, "fields": {"state_transition": 1564, "node_type": "S", "subcondition": 11, "parent": 6320}}, {"model": "template.logicnode", "pk": 6317, "fields": {"state_transition": 1564, "node_type": "S", "subcondition": 13, "parent": 6320}}, {"model": "template.logicnode", "pk": 6318, "fields": {"state_transition": 1564, "node_type": "S", "subcondition": 17, "parent": 6320}}, {"model": "template.logicnode", "pk": 6319, "fields": {"state_transition": 1564, "node_type": "S", "subcondition": 25, "parent": 6320}}, {"model": "template.logicnode", "pk": 6320, "fields": {"state_transition": 1564, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6321, "fields": {"state_transition": 1565, "node_type": "N", "subcondition": null, "parent": 6326}}, {"model": "template.logicnode", "pk": 6322, "fields": {"state_transition": 1565, "node_type": "S", "subcondition": 23, "parent": 6321}}, {"model": "template.logicnode", "pk": 6323, "fields": {"state_transition": 1565, "node_type": "S", "subcondition": 11, "parent": 6326}}, {"model": "template.logicnode", "pk": 6324, "fields": {"state_transition": 1565, "node_type": "S", "subcondition": 13, "parent": 6326}}, {"model": "template.logicnode", "pk": 6325, "fields": {"state_transition": 1565, "node_type": "S", "subcondition": 17, "parent": 6326}}, {"model": "template.logicnode", "pk": 6326, "fields": {"state_transition": 1565, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6327, "fields": {"state_transition": 1566, "node_type": "N", "subcondition": null, "parent": 6332}}, {"model": "template.logicnode", "pk": 6328, "fields": {"state_transition": 1566, "node_type": "S", "subcondition": 23, "parent": 6327}}, {"model": "template.logicnode", "pk": 6329, "fields": {"state_transition": 1566, "node_type": "S", "subcondition": 11, "parent": 6332}}, {"model": "template.logicnode", "pk": 6330, "fields": {"state_transition": 1566, "node_type": "S", "subcondition": 13, "parent": 6332}}, {"model": "template.logicnode", "pk": 6331, "fields": {"state_transition": 1566, "node_type": "S", "subcondition": 25, "parent": 6332}}, {"model": "template.logicnode", "pk": 6332, "fields": {"state_transition": 1566, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6333, "fields": {"state_transition": 1567, "node_type": "N", "subcondition": null, "parent": 6337}}, {"model": "template.logicnode", "pk": 6334, "fields": {"state_transition": 1567, "node_type": "S", "subcondition": 23, "parent": 6333}}, {"model": "template.logicnode", "pk": 6335, "fields": {"state_transition": 1567, "node_type": "S", "subcondition": 11, "parent": 6337}}, {"model": "template.logicnode", "pk": 6336, "fields": {"state_transition": 1567, "node_type": "S", "subcondition": 13, "parent": 6337}}, {"model": "template.logicnode", "pk": 6337, "fields": {"state_transition": 1567, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6338, "fields": {"state_transition": 1568, "node_type": "N", "subcondition": null, "parent": 6343}}, {"model": "template.logicnode", "pk": 6339, "fields": {"state_transition": 1568, "node_type": "S", "subcondition": 23, "parent": 6338}}, {"model": "template.logicnode", "pk": 6340, "fields": {"state_transition": 1568, "node_type": "S", "subcondition": 11, "parent": 6343}}, {"model": "template.logicnode", "pk": 6341, "fields": {"state_transition": 1568, "node_type": "S", "subcondition": 17, "parent": 6343}}, {"model": "template.logicnode", "pk": 6342, "fields": {"state_transition": 1568, "node_type": "S", "subcondition": 25, "parent": 6343}}, {"model": "template.logicnode", "pk": 6343, "fields": {"state_transition": 1568, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6344, "fields": {"state_transition": 1569, "node_type": "N", "subcondition": null, "parent": 6348}}, {"model": "template.logicnode", "pk": 6345, "fields": {"state_transition": 1569, "node_type": "S", "subcondition": 23, "parent": 6344}}, {"model": "template.logicnode", "pk": 6346, "fields": {"state_transition": 1569, "node_type": "S", "subcondition": 11, "parent": 6348}}, {"model": "template.logicnode", "pk": 6347, "fields": {"state_transition": 1569, "node_type": "S", "subcondition": 17, "parent": 6348}}, {"model": "template.logicnode", "pk": 6348, "fields": {"state_transition": 1569, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6349, "fields": {"state_transition": 1570, "node_type": "N", "subcondition": null, "parent": 6353}}, {"model": "template.logicnode", "pk": 6350, "fields": {"state_transition": 1570, "node_type": "S", "subcondition": 23, "parent": 6349}}, {"model": "template.logicnode", "pk": 6351, "fields": {"state_transition": 1570, "node_type": "S", "subcondition": 11, "parent": 6353}}, {"model": "template.logicnode", "pk": 6352, "fields": {"state_transition": 1570, "node_type": "S", "subcondition": 25, "parent": 6353}}, {"model": "template.logicnode", "pk": 6353, "fields": {"state_transition": 1570, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6354, "fields": {"state_transition": 1571, "node_type": "N", "subcondition": null, "parent": 6357}}, {"model": "template.logicnode", "pk": 6355, "fields": {"state_transition": 1571, "node_type": "S", "subcondition": 23, "parent": 6354}}, {"model": "template.logicnode", "pk": 6356, "fields": {"state_transition": 1571, "node_type": "S", "subcondition": 11, "parent": 6357}}, {"model": "template.logicnode", "pk": 6357, "fields": {"state_transition": 1571, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6358, "fields": {"state_transition": 1572, "node_type": "N", "subcondition": null, "parent": 6363}}, {"model": "template.logicnode", "pk": 6359, "fields": {"state_transition": 1572, "node_type": "S", "subcondition": 23, "parent": 6358}}, {"model": "template.logicnode", "pk": 6360, "fields": {"state_transition": 1572, "node_type": "S", "subcondition": 13, "parent": 6363}}, {"model": "template.logicnode", "pk": 6361, "fields": {"state_transition": 1572, "node_type": "S", "subcondition": 17, "parent": 6363}}, {"model": "template.logicnode", "pk": 6362, "fields": {"state_transition": 1572, "node_type": "S", "subcondition": 25, "parent": 6363}}, {"model": "template.logicnode", "pk": 6363, "fields": {"state_transition": 1572, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6364, "fields": {"state_transition": 1573, "node_type": "N", "subcondition": null, "parent": 6368}}, {"model": "template.logicnode", "pk": 6365, "fields": {"state_transition": 1573, "node_type": "S", "subcondition": 23, "parent": 6364}}, {"model": "template.logicnode", "pk": 6366, "fields": {"state_transition": 1573, "node_type": "S", "subcondition": 13, "parent": 6368}}, {"model": "template.logicnode", "pk": 6367, "fields": {"state_transition": 1573, "node_type": "S", "subcondition": 17, "parent": 6368}}, {"model": "template.logicnode", "pk": 6368, "fields": {"state_transition": 1573, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6369, "fields": {"state_transition": 1574, "node_type": "N", "subcondition": null, "parent": 6373}}, {"model": "template.logicnode", "pk": 6370, "fields": {"state_transition": 1574, "node_type": "S", "subcondition": 23, "parent": 6369}}, {"model": "template.logicnode", "pk": 6371, "fields": {"state_transition": 1574, "node_type": "S", "subcondition": 13, "parent": 6373}}, {"model": "template.logicnode", "pk": 6372, "fields": {"state_transition": 1574, "node_type": "S", "subcondition": 25, "parent": 6373}}, {"model": "template.logicnode", "pk": 6373, "fields": {"state_transition": 1574, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6374, "fields": {"state_transition": 1575, "node_type": "N", "subcondition": null, "parent": 6377}}, {"model": "template.logicnode", "pk": 6375, "fields": {"state_transition": 1575, "node_type": "S", "subcondition": 23, "parent": 6374}}, {"model": "template.logicnode", "pk": 6376, "fields": {"state_transition": 1575, "node_type": "S", "subcondition": 13, "parent": 6377}}, {"model": "template.logicnode", "pk": 6377, "fields": {"state_transition": 1575, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6378, "fields": {"state_transition": 1576, "node_type": "N", "subcondition": null, "parent": 6382}}, {"model": "template.logicnode", "pk": 6379, "fields": {"state_transition": 1576, "node_type": "S", "subcondition": 23, "parent": 6378}}, {"model": "template.logicnode", "pk": 6380, "fields": {"state_transition": 1576, "node_type": "S", "subcondition": 17, "parent": 6382}}, {"model": "template.logicnode", "pk": 6381, "fields": {"state_transition": 1576, "node_type": "S", "subcondition": 25, "parent": 6382}}, {"model": "template.logicnode", "pk": 6382, "fields": {"state_transition": 1576, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6383, "fields": {"state_transition": 1577, "node_type": "N", "subcondition": null, "parent": 6386}}, {"model": "template.logicnode", "pk": 6384, "fields": {"state_transition": 1577, "node_type": "S", "subcondition": 23, "parent": 6383}}, {"model": "template.logicnode", "pk": 6385, "fields": {"state_transition": 1577, "node_type": "S", "subcondition": 17, "parent": 6386}}, {"model": "template.logicnode", "pk": 6386, "fields": {"state_transition": 1577, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6387, "fields": {"state_transition": 1578, "node_type": "N", "subcondition": null, "parent": 6390}}, {"model": "template.logicnode", "pk": 6388, "fields": {"state_transition": 1578, "node_type": "S", "subcondition": 23, "parent": 6387}}, {"model": "template.logicnode", "pk": 6389, "fields": {"state_transition": 1578, "node_type": "S", "subcondition": 25, "parent": 6390}}, {"model": "template.logicnode", "pk": 6390, "fields": {"state_transition": 1578, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6391, "fields": {"state_transition": 1579, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6392, "fields": {"state_transition": 1579, "node_type": "S", "subcondition": 23, "parent": 6391}}, {"model": "template.logicnode", "pk": 6393, "fields": {"state_transition": 1580, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6394, "fields": {"state_transition": 1581, "node_type": "N", "subcondition": null, "parent": 6400}}, {"model": "template.logicnode", "pk": 6395, "fields": {"state_transition": 1581, "node_type": "S", "subcondition": 23, "parent": 6394}}, {"model": "template.logicnode", "pk": 6396, "fields": {"state_transition": 1581, "node_type": "S", "subcondition": 11, "parent": 6400}}, {"model": "template.logicnode", "pk": 6397, "fields": {"state_transition": 1581, "node_type": "S", "subcondition": 13, "parent": 6400}}, {"model": "template.logicnode", "pk": 6398, "fields": {"state_transition": 1581, "node_type": "S", "subcondition": 17, "parent": 6400}}, {"model": "template.logicnode", "pk": 6399, "fields": {"state_transition": 1581, "node_type": "S", "subcondition": 25, "parent": 6400}}, {"model": "template.logicnode", "pk": 6400, "fields": {"state_transition": 1581, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6401, "fields": {"state_transition": 1582, "node_type": "N", "subcondition": null, "parent": 6406}}, {"model": "template.logicnode", "pk": 6402, "fields": {"state_transition": 1582, "node_type": "S", "subcondition": 23, "parent": 6401}}, {"model": "template.logicnode", "pk": 6403, "fields": {"state_transition": 1582, "node_type": "S", "subcondition": 11, "parent": 6406}}, {"model": "template.logicnode", "pk": 6404, "fields": {"state_transition": 1582, "node_type": "S", "subcondition": 13, "parent": 6406}}, {"model": "template.logicnode", "pk": 6405, "fields": {"state_transition": 1582, "node_type": "S", "subcondition": 17, "parent": 6406}}, {"model": "template.logicnode", "pk": 6406, "fields": {"state_transition": 1582, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6407, "fields": {"state_transition": 1583, "node_type": "N", "subcondition": null, "parent": 6412}}, {"model": "template.logicnode", "pk": 6408, "fields": {"state_transition": 1583, "node_type": "S", "subcondition": 23, "parent": 6407}}, {"model": "template.logicnode", "pk": 6409, "fields": {"state_transition": 1583, "node_type": "S", "subcondition": 11, "parent": 6412}}, {"model": "template.logicnode", "pk": 6410, "fields": {"state_transition": 1583, "node_type": "S", "subcondition": 13, "parent": 6412}}, {"model": "template.logicnode", "pk": 6411, "fields": {"state_transition": 1583, "node_type": "S", "subcondition": 25, "parent": 6412}}, {"model": "template.logicnode", "pk": 6412, "fields": {"state_transition": 1583, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6413, "fields": {"state_transition": 1584, "node_type": "N", "subcondition": null, "parent": 6417}}, {"model": "template.logicnode", "pk": 6414, "fields": {"state_transition": 1584, "node_type": "S", "subcondition": 23, "parent": 6413}}, {"model": "template.logicnode", "pk": 6415, "fields": {"state_transition": 1584, "node_type": "S", "subcondition": 11, "parent": 6417}}, {"model": "template.logicnode", "pk": 6416, "fields": {"state_transition": 1584, "node_type": "S", "subcondition": 13, "parent": 6417}}, {"model": "template.logicnode", "pk": 6417, "fields": {"state_transition": 1584, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6418, "fields": {"state_transition": 1585, "node_type": "N", "subcondition": null, "parent": 6423}}, {"model": "template.logicnode", "pk": 6419, "fields": {"state_transition": 1585, "node_type": "S", "subcondition": 23, "parent": 6418}}, {"model": "template.logicnode", "pk": 6420, "fields": {"state_transition": 1585, "node_type": "S", "subcondition": 11, "parent": 6423}}, {"model": "template.logicnode", "pk": 6421, "fields": {"state_transition": 1585, "node_type": "S", "subcondition": 17, "parent": 6423}}, {"model": "template.logicnode", "pk": 6422, "fields": {"state_transition": 1585, "node_type": "S", "subcondition": 25, "parent": 6423}}, {"model": "template.logicnode", "pk": 6423, "fields": {"state_transition": 1585, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6424, "fields": {"state_transition": 1586, "node_type": "N", "subcondition": null, "parent": 6428}}, {"model": "template.logicnode", "pk": 6425, "fields": {"state_transition": 1586, "node_type": "S", "subcondition": 23, "parent": 6424}}, {"model": "template.logicnode", "pk": 6426, "fields": {"state_transition": 1586, "node_type": "S", "subcondition": 11, "parent": 6428}}, {"model": "template.logicnode", "pk": 6427, "fields": {"state_transition": 1586, "node_type": "S", "subcondition": 17, "parent": 6428}}, {"model": "template.logicnode", "pk": 6428, "fields": {"state_transition": 1586, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6429, "fields": {"state_transition": 1587, "node_type": "N", "subcondition": null, "parent": 6433}}, {"model": "template.logicnode", "pk": 6430, "fields": {"state_transition": 1587, "node_type": "S", "subcondition": 23, "parent": 6429}}, {"model": "template.logicnode", "pk": 6431, "fields": {"state_transition": 1587, "node_type": "S", "subcondition": 11, "parent": 6433}}, {"model": "template.logicnode", "pk": 6432, "fields": {"state_transition": 1587, "node_type": "S", "subcondition": 25, "parent": 6433}}, {"model": "template.logicnode", "pk": 6433, "fields": {"state_transition": 1587, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6434, "fields": {"state_transition": 1588, "node_type": "N", "subcondition": null, "parent": 6437}}, {"model": "template.logicnode", "pk": 6435, "fields": {"state_transition": 1588, "node_type": "S", "subcondition": 23, "parent": 6434}}, {"model": "template.logicnode", "pk": 6436, "fields": {"state_transition": 1588, "node_type": "S", "subcondition": 11, "parent": 6437}}, {"model": "template.logicnode", "pk": 6437, "fields": {"state_transition": 1588, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6438, "fields": {"state_transition": 1589, "node_type": "N", "subcondition": null, "parent": 6443}}, {"model": "template.logicnode", "pk": 6439, "fields": {"state_transition": 1589, "node_type": "S", "subcondition": 23, "parent": 6438}}, {"model": "template.logicnode", "pk": 6440, "fields": {"state_transition": 1589, "node_type": "S", "subcondition": 13, "parent": 6443}}, {"model": "template.logicnode", "pk": 6441, "fields": {"state_transition": 1589, "node_type": "S", "subcondition": 17, "parent": 6443}}, {"model": "template.logicnode", "pk": 6442, "fields": {"state_transition": 1589, "node_type": "S", "subcondition": 25, "parent": 6443}}, {"model": "template.logicnode", "pk": 6443, "fields": {"state_transition": 1589, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6444, "fields": {"state_transition": 1590, "node_type": "N", "subcondition": null, "parent": 6448}}, {"model": "template.logicnode", "pk": 6445, "fields": {"state_transition": 1590, "node_type": "S", "subcondition": 23, "parent": 6444}}, {"model": "template.logicnode", "pk": 6446, "fields": {"state_transition": 1590, "node_type": "S", "subcondition": 13, "parent": 6448}}, {"model": "template.logicnode", "pk": 6447, "fields": {"state_transition": 1590, "node_type": "S", "subcondition": 17, "parent": 6448}}, {"model": "template.logicnode", "pk": 6448, "fields": {"state_transition": 1590, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6449, "fields": {"state_transition": 1591, "node_type": "N", "subcondition": null, "parent": 6453}}, {"model": "template.logicnode", "pk": 6450, "fields": {"state_transition": 1591, "node_type": "S", "subcondition": 23, "parent": 6449}}, {"model": "template.logicnode", "pk": 6451, "fields": {"state_transition": 1591, "node_type": "S", "subcondition": 13, "parent": 6453}}, {"model": "template.logicnode", "pk": 6452, "fields": {"state_transition": 1591, "node_type": "S", "subcondition": 25, "parent": 6453}}, {"model": "template.logicnode", "pk": 6453, "fields": {"state_transition": 1591, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6454, "fields": {"state_transition": 1592, "node_type": "N", "subcondition": null, "parent": 6457}}, {"model": "template.logicnode", "pk": 6455, "fields": {"state_transition": 1592, "node_type": "S", "subcondition": 23, "parent": 6454}}, {"model": "template.logicnode", "pk": 6456, "fields": {"state_transition": 1592, "node_type": "S", "subcondition": 13, "parent": 6457}}, {"model": "template.logicnode", "pk": 6457, "fields": {"state_transition": 1592, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6458, "fields": {"state_transition": 1593, "node_type": "N", "subcondition": null, "parent": 6462}}, {"model": "template.logicnode", "pk": 6459, "fields": {"state_transition": 1593, "node_type": "S", "subcondition": 23, "parent": 6458}}, {"model": "template.logicnode", "pk": 6460, "fields": {"state_transition": 1593, "node_type": "S", "subcondition": 17, "parent": 6462}}, {"model": "template.logicnode", "pk": 6461, "fields": {"state_transition": 1593, "node_type": "S", "subcondition": 25, "parent": 6462}}, {"model": "template.logicnode", "pk": 6462, "fields": {"state_transition": 1593, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6463, "fields": {"state_transition": 1594, "node_type": "N", "subcondition": null, "parent": 6466}}, {"model": "template.logicnode", "pk": 6464, "fields": {"state_transition": 1594, "node_type": "S", "subcondition": 23, "parent": 6463}}, {"model": "template.logicnode", "pk": 6465, "fields": {"state_transition": 1594, "node_type": "S", "subcondition": 17, "parent": 6466}}, {"model": "template.logicnode", "pk": 6466, "fields": {"state_transition": 1594, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6467, "fields": {"state_transition": 1595, "node_type": "N", "subcondition": null, "parent": 6470}}, {"model": "template.logicnode", "pk": 6468, "fields": {"state_transition": 1595, "node_type": "S", "subcondition": 23, "parent": 6467}}, {"model": "template.logicnode", "pk": 6469, "fields": {"state_transition": 1595, "node_type": "S", "subcondition": 25, "parent": 6470}}, {"model": "template.logicnode", "pk": 6470, "fields": {"state_transition": 1595, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6471, "fields": {"state_transition": 1596, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6472, "fields": {"state_transition": 1596, "node_type": "S", "subcondition": 23, "parent": 6471}}, {"model": "template.logicnode", "pk": 6473, "fields": {"state_transition": 1597, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6474, "fields": {"state_transition": 1598, "node_type": "N", "subcondition": null, "parent": 6480}}, {"model": "template.logicnode", "pk": 6475, "fields": {"state_transition": 1598, "node_type": "S", "subcondition": 23, "parent": 6474}}, {"model": "template.logicnode", "pk": 6476, "fields": {"state_transition": 1598, "node_type": "S", "subcondition": 11, "parent": 6480}}, {"model": "template.logicnode", "pk": 6477, "fields": {"state_transition": 1598, "node_type": "S", "subcondition": 13, "parent": 6480}}, {"model": "template.logicnode", "pk": 6478, "fields": {"state_transition": 1598, "node_type": "S", "subcondition": 17, "parent": 6480}}, {"model": "template.logicnode", "pk": 6479, "fields": {"state_transition": 1598, "node_type": "S", "subcondition": 25, "parent": 6480}}, {"model": "template.logicnode", "pk": 6480, "fields": {"state_transition": 1598, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6481, "fields": {"state_transition": 1599, "node_type": "N", "subcondition": null, "parent": 6486}}, {"model": "template.logicnode", "pk": 6482, "fields": {"state_transition": 1599, "node_type": "S", "subcondition": 23, "parent": 6481}}, {"model": "template.logicnode", "pk": 6483, "fields": {"state_transition": 1599, "node_type": "S", "subcondition": 11, "parent": 6486}}, {"model": "template.logicnode", "pk": 6484, "fields": {"state_transition": 1599, "node_type": "S", "subcondition": 13, "parent": 6486}}, {"model": "template.logicnode", "pk": 6485, "fields": {"state_transition": 1599, "node_type": "S", "subcondition": 17, "parent": 6486}}, {"model": "template.logicnode", "pk": 6486, "fields": {"state_transition": 1599, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6487, "fields": {"state_transition": 1600, "node_type": "N", "subcondition": null, "parent": 6492}}, {"model": "template.logicnode", "pk": 6488, "fields": {"state_transition": 1600, "node_type": "S", "subcondition": 23, "parent": 6487}}, {"model": "template.logicnode", "pk": 6489, "fields": {"state_transition": 1600, "node_type": "S", "subcondition": 11, "parent": 6492}}, {"model": "template.logicnode", "pk": 6490, "fields": {"state_transition": 1600, "node_type": "S", "subcondition": 13, "parent": 6492}}, {"model": "template.logicnode", "pk": 6491, "fields": {"state_transition": 1600, "node_type": "S", "subcondition": 25, "parent": 6492}}, {"model": "template.logicnode", "pk": 6492, "fields": {"state_transition": 1600, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6493, "fields": {"state_transition": 1601, "node_type": "N", "subcondition": null, "parent": 6497}}, {"model": "template.logicnode", "pk": 6494, "fields": {"state_transition": 1601, "node_type": "S", "subcondition": 23, "parent": 6493}}, {"model": "template.logicnode", "pk": 6495, "fields": {"state_transition": 1601, "node_type": "S", "subcondition": 11, "parent": 6497}}, {"model": "template.logicnode", "pk": 6496, "fields": {"state_transition": 1601, "node_type": "S", "subcondition": 13, "parent": 6497}}, {"model": "template.logicnode", "pk": 6497, "fields": {"state_transition": 1601, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6498, "fields": {"state_transition": 1602, "node_type": "N", "subcondition": null, "parent": 6503}}, {"model": "template.logicnode", "pk": 6499, "fields": {"state_transition": 1602, "node_type": "S", "subcondition": 23, "parent": 6498}}, {"model": "template.logicnode", "pk": 6500, "fields": {"state_transition": 1602, "node_type": "S", "subcondition": 11, "parent": 6503}}, {"model": "template.logicnode", "pk": 6501, "fields": {"state_transition": 1602, "node_type": "S", "subcondition": 17, "parent": 6503}}, {"model": "template.logicnode", "pk": 6502, "fields": {"state_transition": 1602, "node_type": "S", "subcondition": 25, "parent": 6503}}, {"model": "template.logicnode", "pk": 6503, "fields": {"state_transition": 1602, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6504, "fields": {"state_transition": 1603, "node_type": "N", "subcondition": null, "parent": 6508}}, {"model": "template.logicnode", "pk": 6505, "fields": {"state_transition": 1603, "node_type": "S", "subcondition": 23, "parent": 6504}}, {"model": "template.logicnode", "pk": 6506, "fields": {"state_transition": 1603, "node_type": "S", "subcondition": 11, "parent": 6508}}, {"model": "template.logicnode", "pk": 6507, "fields": {"state_transition": 1603, "node_type": "S", "subcondition": 17, "parent": 6508}}, {"model": "template.logicnode", "pk": 6508, "fields": {"state_transition": 1603, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6509, "fields": {"state_transition": 1604, "node_type": "N", "subcondition": null, "parent": 6513}}, {"model": "template.logicnode", "pk": 6510, "fields": {"state_transition": 1604, "node_type": "S", "subcondition": 23, "parent": 6509}}, {"model": "template.logicnode", "pk": 6511, "fields": {"state_transition": 1604, "node_type": "S", "subcondition": 11, "parent": 6513}}, {"model": "template.logicnode", "pk": 6512, "fields": {"state_transition": 1604, "node_type": "S", "subcondition": 25, "parent": 6513}}, {"model": "template.logicnode", "pk": 6513, "fields": {"state_transition": 1604, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6514, "fields": {"state_transition": 1605, "node_type": "N", "subcondition": null, "parent": 6517}}, {"model": "template.logicnode", "pk": 6515, "fields": {"state_transition": 1605, "node_type": "S", "subcondition": 23, "parent": 6514}}, {"model": "template.logicnode", "pk": 6516, "fields": {"state_transition": 1605, "node_type": "S", "subcondition": 11, "parent": 6517}}, {"model": "template.logicnode", "pk": 6517, "fields": {"state_transition": 1605, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6518, "fields": {"state_transition": 1606, "node_type": "N", "subcondition": null, "parent": 6523}}, {"model": "template.logicnode", "pk": 6519, "fields": {"state_transition": 1606, "node_type": "S", "subcondition": 23, "parent": 6518}}, {"model": "template.logicnode", "pk": 6520, "fields": {"state_transition": 1606, "node_type": "S", "subcondition": 13, "parent": 6523}}, {"model": "template.logicnode", "pk": 6521, "fields": {"state_transition": 1606, "node_type": "S", "subcondition": 17, "parent": 6523}}, {"model": "template.logicnode", "pk": 6522, "fields": {"state_transition": 1606, "node_type": "S", "subcondition": 25, "parent": 6523}}, {"model": "template.logicnode", "pk": 6523, "fields": {"state_transition": 1606, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6524, "fields": {"state_transition": 1607, "node_type": "N", "subcondition": null, "parent": 6528}}, {"model": "template.logicnode", "pk": 6525, "fields": {"state_transition": 1607, "node_type": "S", "subcondition": 23, "parent": 6524}}, {"model": "template.logicnode", "pk": 6526, "fields": {"state_transition": 1607, "node_type": "S", "subcondition": 13, "parent": 6528}}, {"model": "template.logicnode", "pk": 6527, "fields": {"state_transition": 1607, "node_type": "S", "subcondition": 17, "parent": 6528}}, {"model": "template.logicnode", "pk": 6528, "fields": {"state_transition": 1607, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6529, "fields": {"state_transition": 1608, "node_type": "N", "subcondition": null, "parent": 6533}}, {"model": "template.logicnode", "pk": 6530, "fields": {"state_transition": 1608, "node_type": "S", "subcondition": 23, "parent": 6529}}, {"model": "template.logicnode", "pk": 6531, "fields": {"state_transition": 1608, "node_type": "S", "subcondition": 13, "parent": 6533}}, {"model": "template.logicnode", "pk": 6532, "fields": {"state_transition": 1608, "node_type": "S", "subcondition": 25, "parent": 6533}}, {"model": "template.logicnode", "pk": 6533, "fields": {"state_transition": 1608, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6534, "fields": {"state_transition": 1609, "node_type": "N", "subcondition": null, "parent": 6537}}, {"model": "template.logicnode", "pk": 6535, "fields": {"state_transition": 1609, "node_type": "S", "subcondition": 23, "parent": 6534}}, {"model": "template.logicnode", "pk": 6536, "fields": {"state_transition": 1609, "node_type": "S", "subcondition": 13, "parent": 6537}}, {"model": "template.logicnode", "pk": 6537, "fields": {"state_transition": 1609, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6538, "fields": {"state_transition": 1610, "node_type": "N", "subcondition": null, "parent": 6542}}, {"model": "template.logicnode", "pk": 6539, "fields": {"state_transition": 1610, "node_type": "S", "subcondition": 23, "parent": 6538}}, {"model": "template.logicnode", "pk": 6540, "fields": {"state_transition": 1610, "node_type": "S", "subcondition": 17, "parent": 6542}}, {"model": "template.logicnode", "pk": 6541, "fields": {"state_transition": 1610, "node_type": "S", "subcondition": 25, "parent": 6542}}, {"model": "template.logicnode", "pk": 6542, "fields": {"state_transition": 1610, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6543, "fields": {"state_transition": 1611, "node_type": "N", "subcondition": null, "parent": 6546}}, {"model": "template.logicnode", "pk": 6544, "fields": {"state_transition": 1611, "node_type": "S", "subcondition": 23, "parent": 6543}}, {"model": "template.logicnode", "pk": 6545, "fields": {"state_transition": 1611, "node_type": "S", "subcondition": 17, "parent": 6546}}, {"model": "template.logicnode", "pk": 6546, "fields": {"state_transition": 1611, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6547, "fields": {"state_transition": 1612, "node_type": "N", "subcondition": null, "parent": 6550}}, {"model": "template.logicnode", "pk": 6548, "fields": {"state_transition": 1612, "node_type": "S", "subcondition": 23, "parent": 6547}}, {"model": "template.logicnode", "pk": 6549, "fields": {"state_transition": 1612, "node_type": "S", "subcondition": 25, "parent": 6550}}, {"model": "template.logicnode", "pk": 6550, "fields": {"state_transition": 1612, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6551, "fields": {"state_transition": 1613, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6552, "fields": {"state_transition": 1613, "node_type": "S", "subcondition": 23, "parent": 6551}}, {"model": "template.logicnode", "pk": 6553, "fields": {"state_transition": 1614, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6554, "fields": {"state_transition": 1615, "node_type": "N", "subcondition": null, "parent": 6560}}, {"model": "template.logicnode", "pk": 6555, "fields": {"state_transition": 1615, "node_type": "S", "subcondition": 23, "parent": 6554}}, {"model": "template.logicnode", "pk": 6556, "fields": {"state_transition": 1615, "node_type": "S", "subcondition": 11, "parent": 6560}}, {"model": "template.logicnode", "pk": 6557, "fields": {"state_transition": 1615, "node_type": "S", "subcondition": 13, "parent": 6560}}, {"model": "template.logicnode", "pk": 6558, "fields": {"state_transition": 1615, "node_type": "S", "subcondition": 17, "parent": 6560}}, {"model": "template.logicnode", "pk": 6559, "fields": {"state_transition": 1615, "node_type": "S", "subcondition": 25, "parent": 6560}}, {"model": "template.logicnode", "pk": 6560, "fields": {"state_transition": 1615, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6561, "fields": {"state_transition": 1616, "node_type": "N", "subcondition": null, "parent": 6566}}, {"model": "template.logicnode", "pk": 6562, "fields": {"state_transition": 1616, "node_type": "S", "subcondition": 23, "parent": 6561}}, {"model": "template.logicnode", "pk": 6563, "fields": {"state_transition": 1616, "node_type": "S", "subcondition": 11, "parent": 6566}}, {"model": "template.logicnode", "pk": 6564, "fields": {"state_transition": 1616, "node_type": "S", "subcondition": 13, "parent": 6566}}, {"model": "template.logicnode", "pk": 6565, "fields": {"state_transition": 1616, "node_type": "S", "subcondition": 17, "parent": 6566}}, {"model": "template.logicnode", "pk": 6566, "fields": {"state_transition": 1616, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6567, "fields": {"state_transition": 1617, "node_type": "N", "subcondition": null, "parent": 6572}}, {"model": "template.logicnode", "pk": 6568, "fields": {"state_transition": 1617, "node_type": "S", "subcondition": 23, "parent": 6567}}, {"model": "template.logicnode", "pk": 6569, "fields": {"state_transition": 1617, "node_type": "S", "subcondition": 11, "parent": 6572}}, {"model": "template.logicnode", "pk": 6570, "fields": {"state_transition": 1617, "node_type": "S", "subcondition": 13, "parent": 6572}}, {"model": "template.logicnode", "pk": 6571, "fields": {"state_transition": 1617, "node_type": "S", "subcondition": 25, "parent": 6572}}, {"model": "template.logicnode", "pk": 6572, "fields": {"state_transition": 1617, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6573, "fields": {"state_transition": 1618, "node_type": "N", "subcondition": null, "parent": 6577}}, {"model": "template.logicnode", "pk": 6574, "fields": {"state_transition": 1618, "node_type": "S", "subcondition": 23, "parent": 6573}}, {"model": "template.logicnode", "pk": 6575, "fields": {"state_transition": 1618, "node_type": "S", "subcondition": 11, "parent": 6577}}, {"model": "template.logicnode", "pk": 6576, "fields": {"state_transition": 1618, "node_type": "S", "subcondition": 13, "parent": 6577}}, {"model": "template.logicnode", "pk": 6577, "fields": {"state_transition": 1618, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6578, "fields": {"state_transition": 1619, "node_type": "N", "subcondition": null, "parent": 6583}}, {"model": "template.logicnode", "pk": 6579, "fields": {"state_transition": 1619, "node_type": "S", "subcondition": 23, "parent": 6578}}, {"model": "template.logicnode", "pk": 6580, "fields": {"state_transition": 1619, "node_type": "S", "subcondition": 11, "parent": 6583}}, {"model": "template.logicnode", "pk": 6581, "fields": {"state_transition": 1619, "node_type": "S", "subcondition": 17, "parent": 6583}}, {"model": "template.logicnode", "pk": 6582, "fields": {"state_transition": 1619, "node_type": "S", "subcondition": 25, "parent": 6583}}, {"model": "template.logicnode", "pk": 6583, "fields": {"state_transition": 1619, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6584, "fields": {"state_transition": 1620, "node_type": "N", "subcondition": null, "parent": 6588}}, {"model": "template.logicnode", "pk": 6585, "fields": {"state_transition": 1620, "node_type": "S", "subcondition": 23, "parent": 6584}}, {"model": "template.logicnode", "pk": 6586, "fields": {"state_transition": 1620, "node_type": "S", "subcondition": 11, "parent": 6588}}, {"model": "template.logicnode", "pk": 6587, "fields": {"state_transition": 1620, "node_type": "S", "subcondition": 17, "parent": 6588}}, {"model": "template.logicnode", "pk": 6588, "fields": {"state_transition": 1620, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6589, "fields": {"state_transition": 1621, "node_type": "N", "subcondition": null, "parent": 6593}}, {"model": "template.logicnode", "pk": 6590, "fields": {"state_transition": 1621, "node_type": "S", "subcondition": 23, "parent": 6589}}, {"model": "template.logicnode", "pk": 6591, "fields": {"state_transition": 1621, "node_type": "S", "subcondition": 11, "parent": 6593}}, {"model": "template.logicnode", "pk": 6592, "fields": {"state_transition": 1621, "node_type": "S", "subcondition": 25, "parent": 6593}}, {"model": "template.logicnode", "pk": 6593, "fields": {"state_transition": 1621, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6594, "fields": {"state_transition": 1622, "node_type": "N", "subcondition": null, "parent": 6597}}, {"model": "template.logicnode", "pk": 6595, "fields": {"state_transition": 1622, "node_type": "S", "subcondition": 23, "parent": 6594}}, {"model": "template.logicnode", "pk": 6596, "fields": {"state_transition": 1622, "node_type": "S", "subcondition": 11, "parent": 6597}}, {"model": "template.logicnode", "pk": 6597, "fields": {"state_transition": 1622, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6598, "fields": {"state_transition": 1623, "node_type": "N", "subcondition": null, "parent": 6603}}, {"model": "template.logicnode", "pk": 6599, "fields": {"state_transition": 1623, "node_type": "S", "subcondition": 23, "parent": 6598}}, {"model": "template.logicnode", "pk": 6600, "fields": {"state_transition": 1623, "node_type": "S", "subcondition": 13, "parent": 6603}}, {"model": "template.logicnode", "pk": 6601, "fields": {"state_transition": 1623, "node_type": "S", "subcondition": 17, "parent": 6603}}, {"model": "template.logicnode", "pk": 6602, "fields": {"state_transition": 1623, "node_type": "S", "subcondition": 25, "parent": 6603}}, {"model": "template.logicnode", "pk": 6603, "fields": {"state_transition": 1623, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6604, "fields": {"state_transition": 1624, "node_type": "N", "subcondition": null, "parent": 6608}}, {"model": "template.logicnode", "pk": 6605, "fields": {"state_transition": 1624, "node_type": "S", "subcondition": 23, "parent": 6604}}, {"model": "template.logicnode", "pk": 6606, "fields": {"state_transition": 1624, "node_type": "S", "subcondition": 13, "parent": 6608}}, {"model": "template.logicnode", "pk": 6607, "fields": {"state_transition": 1624, "node_type": "S", "subcondition": 17, "parent": 6608}}, {"model": "template.logicnode", "pk": 6608, "fields": {"state_transition": 1624, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6609, "fields": {"state_transition": 1625, "node_type": "N", "subcondition": null, "parent": 6613}}, {"model": "template.logicnode", "pk": 6610, "fields": {"state_transition": 1625, "node_type": "S", "subcondition": 23, "parent": 6609}}, {"model": "template.logicnode", "pk": 6611, "fields": {"state_transition": 1625, "node_type": "S", "subcondition": 13, "parent": 6613}}, {"model": "template.logicnode", "pk": 6612, "fields": {"state_transition": 1625, "node_type": "S", "subcondition": 25, "parent": 6613}}, {"model": "template.logicnode", "pk": 6613, "fields": {"state_transition": 1625, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6614, "fields": {"state_transition": 1626, "node_type": "N", "subcondition": null, "parent": 6617}}, {"model": "template.logicnode", "pk": 6615, "fields": {"state_transition": 1626, "node_type": "S", "subcondition": 23, "parent": 6614}}, {"model": "template.logicnode", "pk": 6616, "fields": {"state_transition": 1626, "node_type": "S", "subcondition": 13, "parent": 6617}}, {"model": "template.logicnode", "pk": 6617, "fields": {"state_transition": 1626, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6618, "fields": {"state_transition": 1627, "node_type": "N", "subcondition": null, "parent": 6622}}, {"model": "template.logicnode", "pk": 6619, "fields": {"state_transition": 1627, "node_type": "S", "subcondition": 23, "parent": 6618}}, {"model": "template.logicnode", "pk": 6620, "fields": {"state_transition": 1627, "node_type": "S", "subcondition": 17, "parent": 6622}}, {"model": "template.logicnode", "pk": 6621, "fields": {"state_transition": 1627, "node_type": "S", "subcondition": 25, "parent": 6622}}, {"model": "template.logicnode", "pk": 6622, "fields": {"state_transition": 1627, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6623, "fields": {"state_transition": 1628, "node_type": "N", "subcondition": null, "parent": 6626}}, {"model": "template.logicnode", "pk": 6624, "fields": {"state_transition": 1628, "node_type": "S", "subcondition": 23, "parent": 6623}}, {"model": "template.logicnode", "pk": 6625, "fields": {"state_transition": 1628, "node_type": "S", "subcondition": 17, "parent": 6626}}, {"model": "template.logicnode", "pk": 6626, "fields": {"state_transition": 1628, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6627, "fields": {"state_transition": 1629, "node_type": "N", "subcondition": null, "parent": 6630}}, {"model": "template.logicnode", "pk": 6628, "fields": {"state_transition": 1629, "node_type": "S", "subcondition": 23, "parent": 6627}}, {"model": "template.logicnode", "pk": 6629, "fields": {"state_transition": 1629, "node_type": "S", "subcondition": 25, "parent": 6630}}, {"model": "template.logicnode", "pk": 6630, "fields": {"state_transition": 1629, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6631, "fields": {"state_transition": 1630, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6632, "fields": {"state_transition": 1630, "node_type": "S", "subcondition": 23, "parent": 6631}}, {"model": "template.logicnode", "pk": 6633, "fields": {"state_transition": 1631, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6634, "fields": {"state_transition": 1632, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6635, "fields": {"state_transition": 1633, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6636, "fields": {"state_transition": 1634, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6637, "fields": {"state_transition": 1635, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6638, "fields": {"state_transition": 1636, "node_type": "N", "subcondition": null, "parent": 6642}}, {"model": "template.logicnode", "pk": 6639, "fields": {"state_transition": 1636, "node_type": "S", "subcondition": 23, "parent": 6638}}, {"model": "template.logicnode", "pk": 6640, "fields": {"state_transition": 1636, "node_type": "S", "subcondition": 14, "parent": 6642}}, {"model": "template.logicnode", "pk": 6641, "fields": {"state_transition": 1636, "node_type": "S", "subcondition": 16, "parent": 6642}}, {"model": "template.logicnode", "pk": 6642, "fields": {"state_transition": 1636, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6643, "fields": {"state_transition": 1637, "node_type": "N", "subcondition": null, "parent": 6646}}, {"model": "template.logicnode", "pk": 6644, "fields": {"state_transition": 1637, "node_type": "S", "subcondition": 23, "parent": 6643}}, {"model": "template.logicnode", "pk": 6645, "fields": {"state_transition": 1637, "node_type": "S", "subcondition": 14, "parent": 6646}}, {"model": "template.logicnode", "pk": 6646, "fields": {"state_transition": 1637, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6647, "fields": {"state_transition": 1638, "node_type": "N", "subcondition": null, "parent": 6651}}, {"model": "template.logicnode", "pk": 6648, "fields": {"state_transition": 1638, "node_type": "S", "subcondition": 23, "parent": 6647}}, {"model": "template.logicnode", "pk": 6649, "fields": {"state_transition": 1638, "node_type": "S", "subcondition": 15, "parent": 6651}}, {"model": "template.logicnode", "pk": 6650, "fields": {"state_transition": 1638, "node_type": "S", "subcondition": 16, "parent": 6651}}, {"model": "template.logicnode", "pk": 6651, "fields": {"state_transition": 1638, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6652, "fields": {"state_transition": 1639, "node_type": "N", "subcondition": null, "parent": 6655}}, {"model": "template.logicnode", "pk": 6653, "fields": {"state_transition": 1639, "node_type": "S", "subcondition": 23, "parent": 6652}}, {"model": "template.logicnode", "pk": 6654, "fields": {"state_transition": 1639, "node_type": "S", "subcondition": 15, "parent": 6655}}, {"model": "template.logicnode", "pk": 6655, "fields": {"state_transition": 1639, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6656, "fields": {"state_transition": 1640, "node_type": "N", "subcondition": null, "parent": 6659}}, {"model": "template.logicnode", "pk": 6657, "fields": {"state_transition": 1640, "node_type": "S", "subcondition": 23, "parent": 6656}}, {"model": "template.logicnode", "pk": 6658, "fields": {"state_transition": 1640, "node_type": "S", "subcondition": 16, "parent": 6659}}, {"model": "template.logicnode", "pk": 6659, "fields": {"state_transition": 1640, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6660, "fields": {"state_transition": 1641, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6661, "fields": {"state_transition": 1641, "node_type": "S", "subcondition": 23, "parent": 6660}}, {"model": "template.logicnode", "pk": 6662, "fields": {"state_transition": 1642, "node_type": "S", "subcondition": 23, "parent": 6664}}, {"model": "template.logicnode", "pk": 6663, "fields": {"state_transition": 1642, "node_type": "S", "subcondition": 16, "parent": 6664}}, {"model": "template.logicnode", "pk": 6664, "fields": {"state_transition": 1642, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6665, "fields": {"state_transition": 1643, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6666, "fields": {"state_transition": 1644, "node_type": "N", "subcondition": null, "parent": 6670}}, {"model": "template.logicnode", "pk": 6667, "fields": {"state_transition": 1644, "node_type": "S", "subcondition": 23, "parent": 6666}}, {"model": "template.logicnode", "pk": 6668, "fields": {"state_transition": 1644, "node_type": "S", "subcondition": 14, "parent": 6670}}, {"model": "template.logicnode", "pk": 6669, "fields": {"state_transition": 1644, "node_type": "S", "subcondition": 16, "parent": 6670}}, {"model": "template.logicnode", "pk": 6670, "fields": {"state_transition": 1644, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6671, "fields": {"state_transition": 1645, "node_type": "N", "subcondition": null, "parent": 6674}}, {"model": "template.logicnode", "pk": 6672, "fields": {"state_transition": 1645, "node_type": "S", "subcondition": 23, "parent": 6671}}, {"model": "template.logicnode", "pk": 6673, "fields": {"state_transition": 1645, "node_type": "S", "subcondition": 14, "parent": 6674}}, {"model": "template.logicnode", "pk": 6674, "fields": {"state_transition": 1645, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6675, "fields": {"state_transition": 1646, "node_type": "N", "subcondition": null, "parent": 6679}}, {"model": "template.logicnode", "pk": 6676, "fields": {"state_transition": 1646, "node_type": "S", "subcondition": 23, "parent": 6675}}, {"model": "template.logicnode", "pk": 6677, "fields": {"state_transition": 1646, "node_type": "S", "subcondition": 15, "parent": 6679}}, {"model": "template.logicnode", "pk": 6678, "fields": {"state_transition": 1646, "node_type": "S", "subcondition": 16, "parent": 6679}}, {"model": "template.logicnode", "pk": 6679, "fields": {"state_transition": 1646, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6680, "fields": {"state_transition": 1647, "node_type": "N", "subcondition": null, "parent": 6683}}, {"model": "template.logicnode", "pk": 6681, "fields": {"state_transition": 1647, "node_type": "S", "subcondition": 23, "parent": 6680}}, {"model": "template.logicnode", "pk": 6682, "fields": {"state_transition": 1647, "node_type": "S", "subcondition": 15, "parent": 6683}}, {"model": "template.logicnode", "pk": 6683, "fields": {"state_transition": 1647, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6684, "fields": {"state_transition": 1648, "node_type": "N", "subcondition": null, "parent": 6687}}, {"model": "template.logicnode", "pk": 6685, "fields": {"state_transition": 1648, "node_type": "S", "subcondition": 23, "parent": 6684}}, {"model": "template.logicnode", "pk": 6686, "fields": {"state_transition": 1648, "node_type": "S", "subcondition": 16, "parent": 6687}}, {"model": "template.logicnode", "pk": 6687, "fields": {"state_transition": 1648, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6688, "fields": {"state_transition": 1649, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6689, "fields": {"state_transition": 1649, "node_type": "S", "subcondition": 23, "parent": 6688}}, {"model": "template.logicnode", "pk": 6690, "fields": {"state_transition": 1650, "node_type": "S", "subcondition": 23, "parent": 6692}}, {"model": "template.logicnode", "pk": 6691, "fields": {"state_transition": 1650, "node_type": "S", "subcondition": 16, "parent": 6692}}, {"model": "template.logicnode", "pk": 6692, "fields": {"state_transition": 1650, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6693, "fields": {"state_transition": 1651, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6694, "fields": {"state_transition": 1652, "node_type": "N", "subcondition": null, "parent": 6698}}, {"model": "template.logicnode", "pk": 6695, "fields": {"state_transition": 1652, "node_type": "S", "subcondition": 23, "parent": 6694}}, {"model": "template.logicnode", "pk": 6696, "fields": {"state_transition": 1652, "node_type": "S", "subcondition": 14, "parent": 6698}}, {"model": "template.logicnode", "pk": 6697, "fields": {"state_transition": 1652, "node_type": "S", "subcondition": 16, "parent": 6698}}, {"model": "template.logicnode", "pk": 6698, "fields": {"state_transition": 1652, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6699, "fields": {"state_transition": 1653, "node_type": "N", "subcondition": null, "parent": 6702}}, {"model": "template.logicnode", "pk": 6700, "fields": {"state_transition": 1653, "node_type": "S", "subcondition": 23, "parent": 6699}}, {"model": "template.logicnode", "pk": 6701, "fields": {"state_transition": 1653, "node_type": "S", "subcondition": 14, "parent": 6702}}, {"model": "template.logicnode", "pk": 6702, "fields": {"state_transition": 1653, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6703, "fields": {"state_transition": 1654, "node_type": "N", "subcondition": null, "parent": 6707}}, {"model": "template.logicnode", "pk": 6704, "fields": {"state_transition": 1654, "node_type": "S", "subcondition": 23, "parent": 6703}}, {"model": "template.logicnode", "pk": 6705, "fields": {"state_transition": 1654, "node_type": "S", "subcondition": 15, "parent": 6707}}, {"model": "template.logicnode", "pk": 6706, "fields": {"state_transition": 1654, "node_type": "S", "subcondition": 16, "parent": 6707}}, {"model": "template.logicnode", "pk": 6707, "fields": {"state_transition": 1654, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6708, "fields": {"state_transition": 1655, "node_type": "N", "subcondition": null, "parent": 6711}}, {"model": "template.logicnode", "pk": 6709, "fields": {"state_transition": 1655, "node_type": "S", "subcondition": 23, "parent": 6708}}, {"model": "template.logicnode", "pk": 6710, "fields": {"state_transition": 1655, "node_type": "S", "subcondition": 15, "parent": 6711}}, {"model": "template.logicnode", "pk": 6711, "fields": {"state_transition": 1655, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6712, "fields": {"state_transition": 1656, "node_type": "N", "subcondition": null, "parent": 6715}}, {"model": "template.logicnode", "pk": 6713, "fields": {"state_transition": 1656, "node_type": "S", "subcondition": 23, "parent": 6712}}, {"model": "template.logicnode", "pk": 6714, "fields": {"state_transition": 1656, "node_type": "S", "subcondition": 16, "parent": 6715}}, {"model": "template.logicnode", "pk": 6715, "fields": {"state_transition": 1656, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6716, "fields": {"state_transition": 1657, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6717, "fields": {"state_transition": 1657, "node_type": "S", "subcondition": 23, "parent": 6716}}, {"model": "template.logicnode", "pk": 6718, "fields": {"state_transition": 1658, "node_type": "S", "subcondition": 23, "parent": 6720}}, {"model": "template.logicnode", "pk": 6719, "fields": {"state_transition": 1658, "node_type": "S", "subcondition": 16, "parent": 6720}}, {"model": "template.logicnode", "pk": 6720, "fields": {"state_transition": 1658, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6721, "fields": {"state_transition": 1659, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6722, "fields": {"state_transition": 1660, "node_type": "N", "subcondition": null, "parent": 6726}}, {"model": "template.logicnode", "pk": 6723, "fields": {"state_transition": 1660, "node_type": "S", "subcondition": 23, "parent": 6722}}, {"model": "template.logicnode", "pk": 6724, "fields": {"state_transition": 1660, "node_type": "S", "subcondition": 14, "parent": 6726}}, {"model": "template.logicnode", "pk": 6725, "fields": {"state_transition": 1660, "node_type": "S", "subcondition": 16, "parent": 6726}}, {"model": "template.logicnode", "pk": 6726, "fields": {"state_transition": 1660, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6727, "fields": {"state_transition": 1661, "node_type": "N", "subcondition": null, "parent": 6730}}, {"model": "template.logicnode", "pk": 6728, "fields": {"state_transition": 1661, "node_type": "S", "subcondition": 23, "parent": 6727}}, {"model": "template.logicnode", "pk": 6729, "fields": {"state_transition": 1661, "node_type": "S", "subcondition": 14, "parent": 6730}}, {"model": "template.logicnode", "pk": 6730, "fields": {"state_transition": 1661, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6731, "fields": {"state_transition": 1662, "node_type": "N", "subcondition": null, "parent": 6735}}, {"model": "template.logicnode", "pk": 6732, "fields": {"state_transition": 1662, "node_type": "S", "subcondition": 23, "parent": 6731}}, {"model": "template.logicnode", "pk": 6733, "fields": {"state_transition": 1662, "node_type": "S", "subcondition": 15, "parent": 6735}}, {"model": "template.logicnode", "pk": 6734, "fields": {"state_transition": 1662, "node_type": "S", "subcondition": 16, "parent": 6735}}, {"model": "template.logicnode", "pk": 6735, "fields": {"state_transition": 1662, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6736, "fields": {"state_transition": 1663, "node_type": "N", "subcondition": null, "parent": 6739}}, {"model": "template.logicnode", "pk": 6737, "fields": {"state_transition": 1663, "node_type": "S", "subcondition": 23, "parent": 6736}}, {"model": "template.logicnode", "pk": 6738, "fields": {"state_transition": 1663, "node_type": "S", "subcondition": 15, "parent": 6739}}, {"model": "template.logicnode", "pk": 6739, "fields": {"state_transition": 1663, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6740, "fields": {"state_transition": 1664, "node_type": "N", "subcondition": null, "parent": 6743}}, {"model": "template.logicnode", "pk": 6741, "fields": {"state_transition": 1664, "node_type": "S", "subcondition": 23, "parent": 6740}}, {"model": "template.logicnode", "pk": 6742, "fields": {"state_transition": 1664, "node_type": "S", "subcondition": 16, "parent": 6743}}, {"model": "template.logicnode", "pk": 6743, "fields": {"state_transition": 1664, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6744, "fields": {"state_transition": 1665, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6745, "fields": {"state_transition": 1665, "node_type": "S", "subcondition": 23, "parent": 6744}}, {"model": "template.logicnode", "pk": 6746, "fields": {"state_transition": 1666, "node_type": "S", "subcondition": 23, "parent": 6748}}, {"model": "template.logicnode", "pk": 6747, "fields": {"state_transition": 1666, "node_type": "S", "subcondition": 16, "parent": 6748}}, {"model": "template.logicnode", "pk": 6748, "fields": {"state_transition": 1666, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6749, "fields": {"state_transition": 1667, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6750, "fields": {"state_transition": 1668, "node_type": "N", "subcondition": null, "parent": 6754}}, {"model": "template.logicnode", "pk": 6751, "fields": {"state_transition": 1668, "node_type": "S", "subcondition": 23, "parent": 6750}}, {"model": "template.logicnode", "pk": 6752, "fields": {"state_transition": 1668, "node_type": "S", "subcondition": 14, "parent": 6754}}, {"model": "template.logicnode", "pk": 6753, "fields": {"state_transition": 1668, "node_type": "S", "subcondition": 16, "parent": 6754}}, {"model": "template.logicnode", "pk": 6754, "fields": {"state_transition": 1668, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6755, "fields": {"state_transition": 1669, "node_type": "N", "subcondition": null, "parent": 6758}}, {"model": "template.logicnode", "pk": 6756, "fields": {"state_transition": 1669, "node_type": "S", "subcondition": 23, "parent": 6755}}, {"model": "template.logicnode", "pk": 6757, "fields": {"state_transition": 1669, "node_type": "S", "subcondition": 14, "parent": 6758}}, {"model": "template.logicnode", "pk": 6758, "fields": {"state_transition": 1669, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6759, "fields": {"state_transition": 1670, "node_type": "N", "subcondition": null, "parent": 6763}}, {"model": "template.logicnode", "pk": 6760, "fields": {"state_transition": 1670, "node_type": "S", "subcondition": 23, "parent": 6759}}, {"model": "template.logicnode", "pk": 6761, "fields": {"state_transition": 1670, "node_type": "S", "subcondition": 15, "parent": 6763}}, {"model": "template.logicnode", "pk": 6762, "fields": {"state_transition": 1670, "node_type": "S", "subcondition": 16, "parent": 6763}}, {"model": "template.logicnode", "pk": 6763, "fields": {"state_transition": 1670, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6764, "fields": {"state_transition": 1671, "node_type": "N", "subcondition": null, "parent": 6767}}, {"model": "template.logicnode", "pk": 6765, "fields": {"state_transition": 1671, "node_type": "S", "subcondition": 23, "parent": 6764}}, {"model": "template.logicnode", "pk": 6766, "fields": {"state_transition": 1671, "node_type": "S", "subcondition": 15, "parent": 6767}}, {"model": "template.logicnode", "pk": 6767, "fields": {"state_transition": 1671, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6768, "fields": {"state_transition": 1672, "node_type": "N", "subcondition": null, "parent": 6771}}, {"model": "template.logicnode", "pk": 6769, "fields": {"state_transition": 1672, "node_type": "S", "subcondition": 23, "parent": 6768}}, {"model": "template.logicnode", "pk": 6770, "fields": {"state_transition": 1672, "node_type": "S", "subcondition": 16, "parent": 6771}}, {"model": "template.logicnode", "pk": 6771, "fields": {"state_transition": 1672, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6772, "fields": {"state_transition": 1673, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6773, "fields": {"state_transition": 1673, "node_type": "S", "subcondition": 23, "parent": 6772}}, {"model": "template.logicnode", "pk": 6774, "fields": {"state_transition": 1674, "node_type": "S", "subcondition": 23, "parent": 6776}}, {"model": "template.logicnode", "pk": 6775, "fields": {"state_transition": 1674, "node_type": "S", "subcondition": 16, "parent": 6776}}, {"model": "template.logicnode", "pk": 6776, "fields": {"state_transition": 1674, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6777, "fields": {"state_transition": 1675, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6778, "fields": {"state_transition": 1676, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6779, "fields": {"state_transition": 1677, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6780, "fields": {"state_transition": 1678, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6781, "fields": {"state_transition": 1679, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6782, "fields": {"state_transition": 1680, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6783, "fields": {"state_transition": 1681, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6784, "fields": {"state_transition": 1682, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6785, "fields": {"state_transition": 1683, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6786, "fields": {"state_transition": 1684, "node_type": "N", "subcondition": null, "parent": 6790}}, {"model": "template.logicnode", "pk": 6787, "fields": {"state_transition": 1684, "node_type": "S", "subcondition": 23, "parent": 6786}}, {"model": "template.logicnode", "pk": 6788, "fields": {"state_transition": 1684, "node_type": "S", "subcondition": 3, "parent": 6790}}, {"model": "template.logicnode", "pk": 6789, "fields": {"state_transition": 1684, "node_type": "S", "subcondition": 19, "parent": 6790}}, {"model": "template.logicnode", "pk": 6790, "fields": {"state_transition": 1684, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6791, "fields": {"state_transition": 1685, "node_type": "N", "subcondition": null, "parent": 6795}}, {"model": "template.logicnode", "pk": 6792, "fields": {"state_transition": 1685, "node_type": "S", "subcondition": 23, "parent": 6791}}, {"model": "template.logicnode", "pk": 6793, "fields": {"state_transition": 1685, "node_type": "S", "subcondition": 3, "parent": 6795}}, {"model": "template.logicnode", "pk": 6794, "fields": {"state_transition": 1685, "node_type": "S", "subcondition": 20, "parent": 6795}}, {"model": "template.logicnode", "pk": 6795, "fields": {"state_transition": 1685, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6796, "fields": {"state_transition": 1686, "node_type": "N", "subcondition": null, "parent": 6800}}, {"model": "template.logicnode", "pk": 6797, "fields": {"state_transition": 1686, "node_type": "S", "subcondition": 23, "parent": 6796}}, {"model": "template.logicnode", "pk": 6798, "fields": {"state_transition": 1686, "node_type": "S", "subcondition": 3, "parent": 6800}}, {"model": "template.logicnode", "pk": 6799, "fields": {"state_transition": 1686, "node_type": "S", "subcondition": 21, "parent": 6800}}, {"model": "template.logicnode", "pk": 6800, "fields": {"state_transition": 1686, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6801, "fields": {"state_transition": 1687, "node_type": "N", "subcondition": null, "parent": 6805}}, {"model": "template.logicnode", "pk": 6802, "fields": {"state_transition": 1687, "node_type": "S", "subcondition": 23, "parent": 6801}}, {"model": "template.logicnode", "pk": 6803, "fields": {"state_transition": 1687, "node_type": "S", "subcondition": 3, "parent": 6805}}, {"model": "template.logicnode", "pk": 6804, "fields": {"state_transition": 1687, "node_type": "S", "subcondition": 22, "parent": 6805}}, {"model": "template.logicnode", "pk": 6805, "fields": {"state_transition": 1687, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6806, "fields": {"state_transition": 1688, "node_type": "N", "subcondition": null, "parent": 6810}}, {"model": "template.logicnode", "pk": 6807, "fields": {"state_transition": 1688, "node_type": "S", "subcondition": 23, "parent": 6806}}, {"model": "template.logicnode", "pk": 6808, "fields": {"state_transition": 1688, "node_type": "S", "subcondition": 4, "parent": 6810}}, {"model": "template.logicnode", "pk": 6809, "fields": {"state_transition": 1688, "node_type": "S", "subcondition": 19, "parent": 6810}}, {"model": "template.logicnode", "pk": 6810, "fields": {"state_transition": 1688, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6811, "fields": {"state_transition": 1689, "node_type": "N", "subcondition": null, "parent": 6815}}, {"model": "template.logicnode", "pk": 6812, "fields": {"state_transition": 1689, "node_type": "S", "subcondition": 23, "parent": 6811}}, {"model": "template.logicnode", "pk": 6813, "fields": {"state_transition": 1689, "node_type": "S", "subcondition": 4, "parent": 6815}}, {"model": "template.logicnode", "pk": 6814, "fields": {"state_transition": 1689, "node_type": "S", "subcondition": 20, "parent": 6815}}, {"model": "template.logicnode", "pk": 6815, "fields": {"state_transition": 1689, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6816, "fields": {"state_transition": 1690, "node_type": "N", "subcondition": null, "parent": 6820}}, {"model": "template.logicnode", "pk": 6817, "fields": {"state_transition": 1690, "node_type": "S", "subcondition": 23, "parent": 6816}}, {"model": "template.logicnode", "pk": 6818, "fields": {"state_transition": 1690, "node_type": "S", "subcondition": 4, "parent": 6820}}, {"model": "template.logicnode", "pk": 6819, "fields": {"state_transition": 1690, "node_type": "S", "subcondition": 21, "parent": 6820}}, {"model": "template.logicnode", "pk": 6820, "fields": {"state_transition": 1690, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6821, "fields": {"state_transition": 1691, "node_type": "N", "subcondition": null, "parent": 6825}}, {"model": "template.logicnode", "pk": 6822, "fields": {"state_transition": 1691, "node_type": "S", "subcondition": 23, "parent": 6821}}, {"model": "template.logicnode", "pk": 6823, "fields": {"state_transition": 1691, "node_type": "S", "subcondition": 4, "parent": 6825}}, {"model": "template.logicnode", "pk": 6824, "fields": {"state_transition": 1691, "node_type": "S", "subcondition": 22, "parent": 6825}}, {"model": "template.logicnode", "pk": 6825, "fields": {"state_transition": 1691, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6826, "fields": {"state_transition": 1692, "node_type": "N", "subcondition": null, "parent": 6830}}, {"model": "template.logicnode", "pk": 6827, "fields": {"state_transition": 1692, "node_type": "S", "subcondition": 23, "parent": 6826}}, {"model": "template.logicnode", "pk": 6828, "fields": {"state_transition": 1692, "node_type": "S", "subcondition": 5, "parent": 6830}}, {"model": "template.logicnode", "pk": 6829, "fields": {"state_transition": 1692, "node_type": "S", "subcondition": 19, "parent": 6830}}, {"model": "template.logicnode", "pk": 6830, "fields": {"state_transition": 1692, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6831, "fields": {"state_transition": 1693, "node_type": "N", "subcondition": null, "parent": 6835}}, {"model": "template.logicnode", "pk": 6832, "fields": {"state_transition": 1693, "node_type": "S", "subcondition": 23, "parent": 6831}}, {"model": "template.logicnode", "pk": 6833, "fields": {"state_transition": 1693, "node_type": "S", "subcondition": 5, "parent": 6835}}, {"model": "template.logicnode", "pk": 6834, "fields": {"state_transition": 1693, "node_type": "S", "subcondition": 20, "parent": 6835}}, {"model": "template.logicnode", "pk": 6835, "fields": {"state_transition": 1693, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6836, "fields": {"state_transition": 1694, "node_type": "N", "subcondition": null, "parent": 6840}}, {"model": "template.logicnode", "pk": 6837, "fields": {"state_transition": 1694, "node_type": "S", "subcondition": 23, "parent": 6836}}, {"model": "template.logicnode", "pk": 6838, "fields": {"state_transition": 1694, "node_type": "S", "subcondition": 5, "parent": 6840}}, {"model": "template.logicnode", "pk": 6839, "fields": {"state_transition": 1694, "node_type": "S", "subcondition": 21, "parent": 6840}}, {"model": "template.logicnode", "pk": 6840, "fields": {"state_transition": 1694, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6841, "fields": {"state_transition": 1695, "node_type": "N", "subcondition": null, "parent": 6845}}, {"model": "template.logicnode", "pk": 6842, "fields": {"state_transition": 1695, "node_type": "S", "subcondition": 23, "parent": 6841}}, {"model": "template.logicnode", "pk": 6843, "fields": {"state_transition": 1695, "node_type": "S", "subcondition": 5, "parent": 6845}}, {"model": "template.logicnode", "pk": 6844, "fields": {"state_transition": 1695, "node_type": "S", "subcondition": 22, "parent": 6845}}, {"model": "template.logicnode", "pk": 6845, "fields": {"state_transition": 1695, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6846, "fields": {"state_transition": 1696, "node_type": "N", "subcondition": null, "parent": 6850}}, {"model": "template.logicnode", "pk": 6847, "fields": {"state_transition": 1696, "node_type": "S", "subcondition": 23, "parent": 6846}}, {"model": "template.logicnode", "pk": 6848, "fields": {"state_transition": 1696, "node_type": "S", "subcondition": 6, "parent": 6850}}, {"model": "template.logicnode", "pk": 6849, "fields": {"state_transition": 1696, "node_type": "S", "subcondition": 19, "parent": 6850}}, {"model": "template.logicnode", "pk": 6850, "fields": {"state_transition": 1696, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6851, "fields": {"state_transition": 1697, "node_type": "N", "subcondition": null, "parent": 6855}}, {"model": "template.logicnode", "pk": 6852, "fields": {"state_transition": 1697, "node_type": "S", "subcondition": 23, "parent": 6851}}, {"model": "template.logicnode", "pk": 6853, "fields": {"state_transition": 1697, "node_type": "S", "subcondition": 6, "parent": 6855}}, {"model": "template.logicnode", "pk": 6854, "fields": {"state_transition": 1697, "node_type": "S", "subcondition": 20, "parent": 6855}}, {"model": "template.logicnode", "pk": 6855, "fields": {"state_transition": 1697, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6856, "fields": {"state_transition": 1698, "node_type": "N", "subcondition": null, "parent": 6860}}, {"model": "template.logicnode", "pk": 6857, "fields": {"state_transition": 1698, "node_type": "S", "subcondition": 23, "parent": 6856}}, {"model": "template.logicnode", "pk": 6858, "fields": {"state_transition": 1698, "node_type": "S", "subcondition": 6, "parent": 6860}}, {"model": "template.logicnode", "pk": 6859, "fields": {"state_transition": 1698, "node_type": "S", "subcondition": 21, "parent": 6860}}, {"model": "template.logicnode", "pk": 6860, "fields": {"state_transition": 1698, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6861, "fields": {"state_transition": 1699, "node_type": "N", "subcondition": null, "parent": 6865}}, {"model": "template.logicnode", "pk": 6862, "fields": {"state_transition": 1699, "node_type": "S", "subcondition": 23, "parent": 6861}}, {"model": "template.logicnode", "pk": 6863, "fields": {"state_transition": 1699, "node_type": "S", "subcondition": 6, "parent": 6865}}, {"model": "template.logicnode", "pk": 6864, "fields": {"state_transition": 1699, "node_type": "S", "subcondition": 22, "parent": 6865}}, {"model": "template.logicnode", "pk": 6865, "fields": {"state_transition": 1699, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6866, "fields": {"state_transition": 1700, "node_type": "S", "subcondition": 23, "parent": 6869}}, {"model": "template.logicnode", "pk": 6867, "fields": {"state_transition": 1700, "node_type": "S", "subcondition": 3, "parent": 6869}}, {"model": "template.logicnode", "pk": 6868, "fields": {"state_transition": 1700, "node_type": "S", "subcondition": 19, "parent": 6869}}, {"model": "template.logicnode", "pk": 6869, "fields": {"state_transition": 1700, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6870, "fields": {"state_transition": 1701, "node_type": "S", "subcondition": 23, "parent": 6873}}, {"model": "template.logicnode", "pk": 6871, "fields": {"state_transition": 1701, "node_type": "S", "subcondition": 3, "parent": 6873}}, {"model": "template.logicnode", "pk": 6872, "fields": {"state_transition": 1701, "node_type": "S", "subcondition": 20, "parent": 6873}}, {"model": "template.logicnode", "pk": 6873, "fields": {"state_transition": 1701, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6874, "fields": {"state_transition": 1702, "node_type": "S", "subcondition": 23, "parent": 6877}}, {"model": "template.logicnode", "pk": 6875, "fields": {"state_transition": 1702, "node_type": "S", "subcondition": 3, "parent": 6877}}, {"model": "template.logicnode", "pk": 6876, "fields": {"state_transition": 1702, "node_type": "S", "subcondition": 21, "parent": 6877}}, {"model": "template.logicnode", "pk": 6877, "fields": {"state_transition": 1702, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6878, "fields": {"state_transition": 1703, "node_type": "S", "subcondition": 23, "parent": 6881}}, {"model": "template.logicnode", "pk": 6879, "fields": {"state_transition": 1703, "node_type": "S", "subcondition": 3, "parent": 6881}}, {"model": "template.logicnode", "pk": 6880, "fields": {"state_transition": 1703, "node_type": "S", "subcondition": 22, "parent": 6881}}, {"model": "template.logicnode", "pk": 6881, "fields": {"state_transition": 1703, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6882, "fields": {"state_transition": 1704, "node_type": "S", "subcondition": 23, "parent": 6885}}, {"model": "template.logicnode", "pk": 6883, "fields": {"state_transition": 1704, "node_type": "S", "subcondition": 4, "parent": 6885}}, {"model": "template.logicnode", "pk": 6884, "fields": {"state_transition": 1704, "node_type": "S", "subcondition": 19, "parent": 6885}}, {"model": "template.logicnode", "pk": 6885, "fields": {"state_transition": 1704, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6886, "fields": {"state_transition": 1705, "node_type": "S", "subcondition": 23, "parent": 6889}}, {"model": "template.logicnode", "pk": 6887, "fields": {"state_transition": 1705, "node_type": "S", "subcondition": 4, "parent": 6889}}, {"model": "template.logicnode", "pk": 6888, "fields": {"state_transition": 1705, "node_type": "S", "subcondition": 20, "parent": 6889}}, {"model": "template.logicnode", "pk": 6889, "fields": {"state_transition": 1705, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6890, "fields": {"state_transition": 1706, "node_type": "S", "subcondition": 23, "parent": 6893}}, {"model": "template.logicnode", "pk": 6891, "fields": {"state_transition": 1706, "node_type": "S", "subcondition": 4, "parent": 6893}}, {"model": "template.logicnode", "pk": 6892, "fields": {"state_transition": 1706, "node_type": "S", "subcondition": 21, "parent": 6893}}, {"model": "template.logicnode", "pk": 6893, "fields": {"state_transition": 1706, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6894, "fields": {"state_transition": 1707, "node_type": "S", "subcondition": 23, "parent": 6897}}, {"model": "template.logicnode", "pk": 6895, "fields": {"state_transition": 1707, "node_type": "S", "subcondition": 4, "parent": 6897}}, {"model": "template.logicnode", "pk": 6896, "fields": {"state_transition": 1707, "node_type": "S", "subcondition": 22, "parent": 6897}}, {"model": "template.logicnode", "pk": 6897, "fields": {"state_transition": 1707, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6898, "fields": {"state_transition": 1708, "node_type": "S", "subcondition": 23, "parent": 6901}}, {"model": "template.logicnode", "pk": 6899, "fields": {"state_transition": 1708, "node_type": "S", "subcondition": 5, "parent": 6901}}, {"model": "template.logicnode", "pk": 6900, "fields": {"state_transition": 1708, "node_type": "S", "subcondition": 19, "parent": 6901}}, {"model": "template.logicnode", "pk": 6901, "fields": {"state_transition": 1708, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6902, "fields": {"state_transition": 1709, "node_type": "S", "subcondition": 23, "parent": 6905}}, {"model": "template.logicnode", "pk": 6903, "fields": {"state_transition": 1709, "node_type": "S", "subcondition": 5, "parent": 6905}}, {"model": "template.logicnode", "pk": 6904, "fields": {"state_transition": 1709, "node_type": "S", "subcondition": 20, "parent": 6905}}, {"model": "template.logicnode", "pk": 6905, "fields": {"state_transition": 1709, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6906, "fields": {"state_transition": 1710, "node_type": "S", "subcondition": 23, "parent": 6909}}, {"model": "template.logicnode", "pk": 6907, "fields": {"state_transition": 1710, "node_type": "S", "subcondition": 5, "parent": 6909}}, {"model": "template.logicnode", "pk": 6908, "fields": {"state_transition": 1710, "node_type": "S", "subcondition": 21, "parent": 6909}}, {"model": "template.logicnode", "pk": 6909, "fields": {"state_transition": 1710, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6910, "fields": {"state_transition": 1711, "node_type": "S", "subcondition": 23, "parent": 6913}}, {"model": "template.logicnode", "pk": 6911, "fields": {"state_transition": 1711, "node_type": "S", "subcondition": 5, "parent": 6913}}, {"model": "template.logicnode", "pk": 6912, "fields": {"state_transition": 1711, "node_type": "S", "subcondition": 22, "parent": 6913}}, {"model": "template.logicnode", "pk": 6913, "fields": {"state_transition": 1711, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6914, "fields": {"state_transition": 1712, "node_type": "S", "subcondition": 23, "parent": 6917}}, {"model": "template.logicnode", "pk": 6915, "fields": {"state_transition": 1712, "node_type": "S", "subcondition": 6, "parent": 6917}}, {"model": "template.logicnode", "pk": 6916, "fields": {"state_transition": 1712, "node_type": "S", "subcondition": 19, "parent": 6917}}, {"model": "template.logicnode", "pk": 6917, "fields": {"state_transition": 1712, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6918, "fields": {"state_transition": 1713, "node_type": "S", "subcondition": 23, "parent": 6921}}, {"model": "template.logicnode", "pk": 6919, "fields": {"state_transition": 1713, "node_type": "S", "subcondition": 6, "parent": 6921}}, {"model": "template.logicnode", "pk": 6920, "fields": {"state_transition": 1713, "node_type": "S", "subcondition": 20, "parent": 6921}}, {"model": "template.logicnode", "pk": 6921, "fields": {"state_transition": 1713, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6922, "fields": {"state_transition": 1714, "node_type": "S", "subcondition": 23, "parent": 6925}}, {"model": "template.logicnode", "pk": 6923, "fields": {"state_transition": 1714, "node_type": "S", "subcondition": 6, "parent": 6925}}, {"model": "template.logicnode", "pk": 6924, "fields": {"state_transition": 1714, "node_type": "S", "subcondition": 21, "parent": 6925}}, {"model": "template.logicnode", "pk": 6925, "fields": {"state_transition": 1714, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6926, "fields": {"state_transition": 1715, "node_type": "S", "subcondition": 23, "parent": 6929}}, {"model": "template.logicnode", "pk": 6927, "fields": {"state_transition": 1715, "node_type": "S", "subcondition": 6, "parent": 6929}}, {"model": "template.logicnode", "pk": 6928, "fields": {"state_transition": 1715, "node_type": "S", "subcondition": 22, "parent": 6929}}, {"model": "template.logicnode", "pk": 6929, "fields": {"state_transition": 1715, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6930, "fields": {"state_transition": 1716, "node_type": "N", "subcondition": null, "parent": 6934}}, {"model": "template.logicnode", "pk": 6931, "fields": {"state_transition": 1716, "node_type": "S", "subcondition": 23, "parent": 6930}}, {"model": "template.logicnode", "pk": 6932, "fields": {"state_transition": 1716, "node_type": "S", "subcondition": 3, "parent": 6934}}, {"model": "template.logicnode", "pk": 6933, "fields": {"state_transition": 1716, "node_type": "S", "subcondition": 19, "parent": 6934}}, {"model": "template.logicnode", "pk": 6934, "fields": {"state_transition": 1716, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6935, "fields": {"state_transition": 1717, "node_type": "N", "subcondition": null, "parent": 6939}}, {"model": "template.logicnode", "pk": 6936, "fields": {"state_transition": 1717, "node_type": "S", "subcondition": 23, "parent": 6935}}, {"model": "template.logicnode", "pk": 6937, "fields": {"state_transition": 1717, "node_type": "S", "subcondition": 3, "parent": 6939}}, {"model": "template.logicnode", "pk": 6938, "fields": {"state_transition": 1717, "node_type": "S", "subcondition": 20, "parent": 6939}}, {"model": "template.logicnode", "pk": 6939, "fields": {"state_transition": 1717, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6940, "fields": {"state_transition": 1718, "node_type": "N", "subcondition": null, "parent": 6944}}, {"model": "template.logicnode", "pk": 6941, "fields": {"state_transition": 1718, "node_type": "S", "subcondition": 23, "parent": 6940}}, {"model": "template.logicnode", "pk": 6942, "fields": {"state_transition": 1718, "node_type": "S", "subcondition": 3, "parent": 6944}}, {"model": "template.logicnode", "pk": 6943, "fields": {"state_transition": 1718, "node_type": "S", "subcondition": 21, "parent": 6944}}, {"model": "template.logicnode", "pk": 6944, "fields": {"state_transition": 1718, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6945, "fields": {"state_transition": 1719, "node_type": "N", "subcondition": null, "parent": 6949}}, {"model": "template.logicnode", "pk": 6946, "fields": {"state_transition": 1719, "node_type": "S", "subcondition": 23, "parent": 6945}}, {"model": "template.logicnode", "pk": 6947, "fields": {"state_transition": 1719, "node_type": "S", "subcondition": 3, "parent": 6949}}, {"model": "template.logicnode", "pk": 6948, "fields": {"state_transition": 1719, "node_type": "S", "subcondition": 22, "parent": 6949}}, {"model": "template.logicnode", "pk": 6949, "fields": {"state_transition": 1719, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6950, "fields": {"state_transition": 1720, "node_type": "N", "subcondition": null, "parent": 6954}}, {"model": "template.logicnode", "pk": 6951, "fields": {"state_transition": 1720, "node_type": "S", "subcondition": 23, "parent": 6950}}, {"model": "template.logicnode", "pk": 6952, "fields": {"state_transition": 1720, "node_type": "S", "subcondition": 4, "parent": 6954}}, {"model": "template.logicnode", "pk": 6953, "fields": {"state_transition": 1720, "node_type": "S", "subcondition": 19, "parent": 6954}}, {"model": "template.logicnode", "pk": 6954, "fields": {"state_transition": 1720, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6955, "fields": {"state_transition": 1721, "node_type": "N", "subcondition": null, "parent": 6959}}, {"model": "template.logicnode", "pk": 6956, "fields": {"state_transition": 1721, "node_type": "S", "subcondition": 23, "parent": 6955}}, {"model": "template.logicnode", "pk": 6957, "fields": {"state_transition": 1721, "node_type": "S", "subcondition": 4, "parent": 6959}}, {"model": "template.logicnode", "pk": 6958, "fields": {"state_transition": 1721, "node_type": "S", "subcondition": 20, "parent": 6959}}, {"model": "template.logicnode", "pk": 6959, "fields": {"state_transition": 1721, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6960, "fields": {"state_transition": 1722, "node_type": "N", "subcondition": null, "parent": 6964}}, {"model": "template.logicnode", "pk": 6961, "fields": {"state_transition": 1722, "node_type": "S", "subcondition": 23, "parent": 6960}}, {"model": "template.logicnode", "pk": 6962, "fields": {"state_transition": 1722, "node_type": "S", "subcondition": 4, "parent": 6964}}, {"model": "template.logicnode", "pk": 6963, "fields": {"state_transition": 1722, "node_type": "S", "subcondition": 21, "parent": 6964}}, {"model": "template.logicnode", "pk": 6964, "fields": {"state_transition": 1722, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6965, "fields": {"state_transition": 1723, "node_type": "N", "subcondition": null, "parent": 6969}}, {"model": "template.logicnode", "pk": 6966, "fields": {"state_transition": 1723, "node_type": "S", "subcondition": 23, "parent": 6965}}, {"model": "template.logicnode", "pk": 6967, "fields": {"state_transition": 1723, "node_type": "S", "subcondition": 4, "parent": 6969}}, {"model": "template.logicnode", "pk": 6968, "fields": {"state_transition": 1723, "node_type": "S", "subcondition": 22, "parent": 6969}}, {"model": "template.logicnode", "pk": 6969, "fields": {"state_transition": 1723, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6970, "fields": {"state_transition": 1724, "node_type": "N", "subcondition": null, "parent": 6974}}, {"model": "template.logicnode", "pk": 6971, "fields": {"state_transition": 1724, "node_type": "S", "subcondition": 23, "parent": 6970}}, {"model": "template.logicnode", "pk": 6972, "fields": {"state_transition": 1724, "node_type": "S", "subcondition": 5, "parent": 6974}}, {"model": "template.logicnode", "pk": 6973, "fields": {"state_transition": 1724, "node_type": "S", "subcondition": 19, "parent": 6974}}, {"model": "template.logicnode", "pk": 6974, "fields": {"state_transition": 1724, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6975, "fields": {"state_transition": 1725, "node_type": "N", "subcondition": null, "parent": 6979}}, {"model": "template.logicnode", "pk": 6976, "fields": {"state_transition": 1725, "node_type": "S", "subcondition": 23, "parent": 6975}}, {"model": "template.logicnode", "pk": 6977, "fields": {"state_transition": 1725, "node_type": "S", "subcondition": 5, "parent": 6979}}, {"model": "template.logicnode", "pk": 6978, "fields": {"state_transition": 1725, "node_type": "S", "subcondition": 20, "parent": 6979}}, {"model": "template.logicnode", "pk": 6979, "fields": {"state_transition": 1725, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6980, "fields": {"state_transition": 1726, "node_type": "N", "subcondition": null, "parent": 6984}}, {"model": "template.logicnode", "pk": 6981, "fields": {"state_transition": 1726, "node_type": "S", "subcondition": 23, "parent": 6980}}, {"model": "template.logicnode", "pk": 6982, "fields": {"state_transition": 1726, "node_type": "S", "subcondition": 5, "parent": 6984}}, {"model": "template.logicnode", "pk": 6983, "fields": {"state_transition": 1726, "node_type": "S", "subcondition": 21, "parent": 6984}}, {"model": "template.logicnode", "pk": 6984, "fields": {"state_transition": 1726, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6985, "fields": {"state_transition": 1727, "node_type": "N", "subcondition": null, "parent": 6989}}, {"model": "template.logicnode", "pk": 6986, "fields": {"state_transition": 1727, "node_type": "S", "subcondition": 23, "parent": 6985}}, {"model": "template.logicnode", "pk": 6987, "fields": {"state_transition": 1727, "node_type": "S", "subcondition": 5, "parent": 6989}}, {"model": "template.logicnode", "pk": 6988, "fields": {"state_transition": 1727, "node_type": "S", "subcondition": 22, "parent": 6989}}, {"model": "template.logicnode", "pk": 6989, "fields": {"state_transition": 1727, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6990, "fields": {"state_transition": 1728, "node_type": "N", "subcondition": null, "parent": 6994}}, {"model": "template.logicnode", "pk": 6991, "fields": {"state_transition": 1728, "node_type": "S", "subcondition": 23, "parent": 6990}}, {"model": "template.logicnode", "pk": 6992, "fields": {"state_transition": 1728, "node_type": "S", "subcondition": 6, "parent": 6994}}, {"model": "template.logicnode", "pk": 6993, "fields": {"state_transition": 1728, "node_type": "S", "subcondition": 19, "parent": 6994}}, {"model": "template.logicnode", "pk": 6994, "fields": {"state_transition": 1728, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6995, "fields": {"state_transition": 1729, "node_type": "N", "subcondition": null, "parent": 6999}}, {"model": "template.logicnode", "pk": 6996, "fields": {"state_transition": 1729, "node_type": "S", "subcondition": 23, "parent": 6995}}, {"model": "template.logicnode", "pk": 6997, "fields": {"state_transition": 1729, "node_type": "S", "subcondition": 6, "parent": 6999}}, {"model": "template.logicnode", "pk": 6998, "fields": {"state_transition": 1729, "node_type": "S", "subcondition": 20, "parent": 6999}}, {"model": "template.logicnode", "pk": 6999, "fields": {"state_transition": 1729, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7000, "fields": {"state_transition": 1730, "node_type": "N", "subcondition": null, "parent": 7004}}, {"model": "template.logicnode", "pk": 7001, "fields": {"state_transition": 1730, "node_type": "S", "subcondition": 23, "parent": 7000}}, {"model": "template.logicnode", "pk": 7002, "fields": {"state_transition": 1730, "node_type": "S", "subcondition": 6, "parent": 7004}}, {"model": "template.logicnode", "pk": 7003, "fields": {"state_transition": 1730, "node_type": "S", "subcondition": 21, "parent": 7004}}, {"model": "template.logicnode", "pk": 7004, "fields": {"state_transition": 1730, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7005, "fields": {"state_transition": 1731, "node_type": "N", "subcondition": null, "parent": 7009}}, {"model": "template.logicnode", "pk": 7006, "fields": {"state_transition": 1731, "node_type": "S", "subcondition": 23, "parent": 7005}}, {"model": "template.logicnode", "pk": 7007, "fields": {"state_transition": 1731, "node_type": "S", "subcondition": 6, "parent": 7009}}, {"model": "template.logicnode", "pk": 7008, "fields": {"state_transition": 1731, "node_type": "S", "subcondition": 22, "parent": 7009}}, {"model": "template.logicnode", "pk": 7009, "fields": {"state_transition": 1731, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7010, "fields": {"state_transition": 1732, "node_type": "S", "subcondition": 23, "parent": 7013}}, {"model": "template.logicnode", "pk": 7011, "fields": {"state_transition": 1732, "node_type": "S", "subcondition": 3, "parent": 7013}}, {"model": "template.logicnode", "pk": 7012, "fields": {"state_transition": 1732, "node_type": "S", "subcondition": 19, "parent": 7013}}, {"model": "template.logicnode", "pk": 7013, "fields": {"state_transition": 1732, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7014, "fields": {"state_transition": 1733, "node_type": "S", "subcondition": 23, "parent": 7017}}, {"model": "template.logicnode", "pk": 7015, "fields": {"state_transition": 1733, "node_type": "S", "subcondition": 3, "parent": 7017}}, {"model": "template.logicnode", "pk": 7016, "fields": {"state_transition": 1733, "node_type": "S", "subcondition": 20, "parent": 7017}}, {"model": "template.logicnode", "pk": 7017, "fields": {"state_transition": 1733, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7018, "fields": {"state_transition": 1734, "node_type": "S", "subcondition": 23, "parent": 7021}}, {"model": "template.logicnode", "pk": 7019, "fields": {"state_transition": 1734, "node_type": "S", "subcondition": 3, "parent": 7021}}, {"model": "template.logicnode", "pk": 7020, "fields": {"state_transition": 1734, "node_type": "S", "subcondition": 21, "parent": 7021}}, {"model": "template.logicnode", "pk": 7021, "fields": {"state_transition": 1734, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7022, "fields": {"state_transition": 1735, "node_type": "S", "subcondition": 23, "parent": 7025}}, {"model": "template.logicnode", "pk": 7023, "fields": {"state_transition": 1735, "node_type": "S", "subcondition": 3, "parent": 7025}}, {"model": "template.logicnode", "pk": 7024, "fields": {"state_transition": 1735, "node_type": "S", "subcondition": 22, "parent": 7025}}, {"model": "template.logicnode", "pk": 7025, "fields": {"state_transition": 1735, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7026, "fields": {"state_transition": 1736, "node_type": "S", "subcondition": 23, "parent": 7029}}, {"model": "template.logicnode", "pk": 7027, "fields": {"state_transition": 1736, "node_type": "S", "subcondition": 4, "parent": 7029}}, {"model": "template.logicnode", "pk": 7028, "fields": {"state_transition": 1736, "node_type": "S", "subcondition": 19, "parent": 7029}}, {"model": "template.logicnode", "pk": 7029, "fields": {"state_transition": 1736, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7030, "fields": {"state_transition": 1737, "node_type": "S", "subcondition": 23, "parent": 7033}}, {"model": "template.logicnode", "pk": 7031, "fields": {"state_transition": 1737, "node_type": "S", "subcondition": 4, "parent": 7033}}, {"model": "template.logicnode", "pk": 7032, "fields": {"state_transition": 1737, "node_type": "S", "subcondition": 20, "parent": 7033}}, {"model": "template.logicnode", "pk": 7033, "fields": {"state_transition": 1737, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7034, "fields": {"state_transition": 1738, "node_type": "S", "subcondition": 23, "parent": 7037}}, {"model": "template.logicnode", "pk": 7035, "fields": {"state_transition": 1738, "node_type": "S", "subcondition": 4, "parent": 7037}}, {"model": "template.logicnode", "pk": 7036, "fields": {"state_transition": 1738, "node_type": "S", "subcondition": 21, "parent": 7037}}, {"model": "template.logicnode", "pk": 7037, "fields": {"state_transition": 1738, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7038, "fields": {"state_transition": 1739, "node_type": "S", "subcondition": 23, "parent": 7041}}, {"model": "template.logicnode", "pk": 7039, "fields": {"state_transition": 1739, "node_type": "S", "subcondition": 4, "parent": 7041}}, {"model": "template.logicnode", "pk": 7040, "fields": {"state_transition": 1739, "node_type": "S", "subcondition": 22, "parent": 7041}}, {"model": "template.logicnode", "pk": 7041, "fields": {"state_transition": 1739, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7042, "fields": {"state_transition": 1740, "node_type": "S", "subcondition": 23, "parent": 7045}}, {"model": "template.logicnode", "pk": 7043, "fields": {"state_transition": 1740, "node_type": "S", "subcondition": 5, "parent": 7045}}, {"model": "template.logicnode", "pk": 7044, "fields": {"state_transition": 1740, "node_type": "S", "subcondition": 19, "parent": 7045}}, {"model": "template.logicnode", "pk": 7045, "fields": {"state_transition": 1740, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7046, "fields": {"state_transition": 1741, "node_type": "S", "subcondition": 23, "parent": 7049}}, {"model": "template.logicnode", "pk": 7047, "fields": {"state_transition": 1741, "node_type": "S", "subcondition": 5, "parent": 7049}}, {"model": "template.logicnode", "pk": 7048, "fields": {"state_transition": 1741, "node_type": "S", "subcondition": 20, "parent": 7049}}, {"model": "template.logicnode", "pk": 7049, "fields": {"state_transition": 1741, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7050, "fields": {"state_transition": 1742, "node_type": "S", "subcondition": 23, "parent": 7053}}, {"model": "template.logicnode", "pk": 7051, "fields": {"state_transition": 1742, "node_type": "S", "subcondition": 5, "parent": 7053}}, {"model": "template.logicnode", "pk": 7052, "fields": {"state_transition": 1742, "node_type": "S", "subcondition": 21, "parent": 7053}}, {"model": "template.logicnode", "pk": 7053, "fields": {"state_transition": 1742, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7054, "fields": {"state_transition": 1743, "node_type": "S", "subcondition": 23, "parent": 7057}}, {"model": "template.logicnode", "pk": 7055, "fields": {"state_transition": 1743, "node_type": "S", "subcondition": 5, "parent": 7057}}, {"model": "template.logicnode", "pk": 7056, "fields": {"state_transition": 1743, "node_type": "S", "subcondition": 22, "parent": 7057}}, {"model": "template.logicnode", "pk": 7057, "fields": {"state_transition": 1743, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7058, "fields": {"state_transition": 1744, "node_type": "S", "subcondition": 23, "parent": 7061}}, {"model": "template.logicnode", "pk": 7059, "fields": {"state_transition": 1744, "node_type": "S", "subcondition": 6, "parent": 7061}}, {"model": "template.logicnode", "pk": 7060, "fields": {"state_transition": 1744, "node_type": "S", "subcondition": 19, "parent": 7061}}, {"model": "template.logicnode", "pk": 7061, "fields": {"state_transition": 1744, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7062, "fields": {"state_transition": 1745, "node_type": "S", "subcondition": 23, "parent": 7065}}, {"model": "template.logicnode", "pk": 7063, "fields": {"state_transition": 1745, "node_type": "S", "subcondition": 6, "parent": 7065}}, {"model": "template.logicnode", "pk": 7064, "fields": {"state_transition": 1745, "node_type": "S", "subcondition": 20, "parent": 7065}}, {"model": "template.logicnode", "pk": 7065, "fields": {"state_transition": 1745, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7066, "fields": {"state_transition": 1746, "node_type": "S", "subcondition": 23, "parent": 7069}}, {"model": "template.logicnode", "pk": 7067, "fields": {"state_transition": 1746, "node_type": "S", "subcondition": 6, "parent": 7069}}, {"model": "template.logicnode", "pk": 7068, "fields": {"state_transition": 1746, "node_type": "S", "subcondition": 21, "parent": 7069}}, {"model": "template.logicnode", "pk": 7069, "fields": {"state_transition": 1746, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7070, "fields": {"state_transition": 1747, "node_type": "S", "subcondition": 23, "parent": 7073}}, {"model": "template.logicnode", "pk": 7071, "fields": {"state_transition": 1747, "node_type": "S", "subcondition": 6, "parent": 7073}}, {"model": "template.logicnode", "pk": 7072, "fields": {"state_transition": 1747, "node_type": "S", "subcondition": 22, "parent": 7073}}, {"model": "template.logicnode", "pk": 7073, "fields": {"state_transition": 1747, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7074, "fields": {"state_transition": 1748, "node_type": "N", "subcondition": null, "parent": 7078}}, {"model": "template.logicnode", "pk": 7075, "fields": {"state_transition": 1748, "node_type": "S", "subcondition": 23, "parent": 7074}}, {"model": "template.logicnode", "pk": 7076, "fields": {"state_transition": 1748, "node_type": "S", "subcondition": 3, "parent": 7078}}, {"model": "template.logicnode", "pk": 7077, "fields": {"state_transition": 1748, "node_type": "S", "subcondition": 19, "parent": 7078}}, {"model": "template.logicnode", "pk": 7078, "fields": {"state_transition": 1748, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7079, "fields": {"state_transition": 1749, "node_type": "N", "subcondition": null, "parent": 7083}}, {"model": "template.logicnode", "pk": 7080, "fields": {"state_transition": 1749, "node_type": "S", "subcondition": 23, "parent": 7079}}, {"model": "template.logicnode", "pk": 7081, "fields": {"state_transition": 1749, "node_type": "S", "subcondition": 3, "parent": 7083}}, {"model": "template.logicnode", "pk": 7082, "fields": {"state_transition": 1749, "node_type": "S", "subcondition": 20, "parent": 7083}}, {"model": "template.logicnode", "pk": 7083, "fields": {"state_transition": 1749, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7084, "fields": {"state_transition": 1750, "node_type": "N", "subcondition": null, "parent": 7088}}, {"model": "template.logicnode", "pk": 7085, "fields": {"state_transition": 1750, "node_type": "S", "subcondition": 23, "parent": 7084}}, {"model": "template.logicnode", "pk": 7086, "fields": {"state_transition": 1750, "node_type": "S", "subcondition": 3, "parent": 7088}}, {"model": "template.logicnode", "pk": 7087, "fields": {"state_transition": 1750, "node_type": "S", "subcondition": 21, "parent": 7088}}, {"model": "template.logicnode", "pk": 7088, "fields": {"state_transition": 1750, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7089, "fields": {"state_transition": 1751, "node_type": "N", "subcondition": null, "parent": 7093}}, {"model": "template.logicnode", "pk": 7090, "fields": {"state_transition": 1751, "node_type": "S", "subcondition": 23, "parent": 7089}}, {"model": "template.logicnode", "pk": 7091, "fields": {"state_transition": 1751, "node_type": "S", "subcondition": 3, "parent": 7093}}, {"model": "template.logicnode", "pk": 7092, "fields": {"state_transition": 1751, "node_type": "S", "subcondition": 22, "parent": 7093}}, {"model": "template.logicnode", "pk": 7093, "fields": {"state_transition": 1751, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7094, "fields": {"state_transition": 1752, "node_type": "N", "subcondition": null, "parent": 7098}}, {"model": "template.logicnode", "pk": 7095, "fields": {"state_transition": 1752, "node_type": "S", "subcondition": 23, "parent": 7094}}, {"model": "template.logicnode", "pk": 7096, "fields": {"state_transition": 1752, "node_type": "S", "subcondition": 4, "parent": 7098}}, {"model": "template.logicnode", "pk": 7097, "fields": {"state_transition": 1752, "node_type": "S", "subcondition": 19, "parent": 7098}}, {"model": "template.logicnode", "pk": 7098, "fields": {"state_transition": 1752, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7099, "fields": {"state_transition": 1753, "node_type": "N", "subcondition": null, "parent": 7103}}, {"model": "template.logicnode", "pk": 7100, "fields": {"state_transition": 1753, "node_type": "S", "subcondition": 23, "parent": 7099}}, {"model": "template.logicnode", "pk": 7101, "fields": {"state_transition": 1753, "node_type": "S", "subcondition": 4, "parent": 7103}}, {"model": "template.logicnode", "pk": 7102, "fields": {"state_transition": 1753, "node_type": "S", "subcondition": 20, "parent": 7103}}, {"model": "template.logicnode", "pk": 7103, "fields": {"state_transition": 1753, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7104, "fields": {"state_transition": 1754, "node_type": "N", "subcondition": null, "parent": 7108}}, {"model": "template.logicnode", "pk": 7105, "fields": {"state_transition": 1754, "node_type": "S", "subcondition": 23, "parent": 7104}}, {"model": "template.logicnode", "pk": 7106, "fields": {"state_transition": 1754, "node_type": "S", "subcondition": 4, "parent": 7108}}, {"model": "template.logicnode", "pk": 7107, "fields": {"state_transition": 1754, "node_type": "S", "subcondition": 21, "parent": 7108}}, {"model": "template.logicnode", "pk": 7108, "fields": {"state_transition": 1754, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7109, "fields": {"state_transition": 1755, "node_type": "N", "subcondition": null, "parent": 7113}}, {"model": "template.logicnode", "pk": 7110, "fields": {"state_transition": 1755, "node_type": "S", "subcondition": 23, "parent": 7109}}, {"model": "template.logicnode", "pk": 7111, "fields": {"state_transition": 1755, "node_type": "S", "subcondition": 4, "parent": 7113}}, {"model": "template.logicnode", "pk": 7112, "fields": {"state_transition": 1755, "node_type": "S", "subcondition": 22, "parent": 7113}}, {"model": "template.logicnode", "pk": 7113, "fields": {"state_transition": 1755, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7114, "fields": {"state_transition": 1756, "node_type": "N", "subcondition": null, "parent": 7118}}, {"model": "template.logicnode", "pk": 7115, "fields": {"state_transition": 1756, "node_type": "S", "subcondition": 23, "parent": 7114}}, {"model": "template.logicnode", "pk": 7116, "fields": {"state_transition": 1756, "node_type": "S", "subcondition": 5, "parent": 7118}}, {"model": "template.logicnode", "pk": 7117, "fields": {"state_transition": 1756, "node_type": "S", "subcondition": 19, "parent": 7118}}, {"model": "template.logicnode", "pk": 7118, "fields": {"state_transition": 1756, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7119, "fields": {"state_transition": 1757, "node_type": "N", "subcondition": null, "parent": 7123}}, {"model": "template.logicnode", "pk": 7120, "fields": {"state_transition": 1757, "node_type": "S", "subcondition": 23, "parent": 7119}}, {"model": "template.logicnode", "pk": 7121, "fields": {"state_transition": 1757, "node_type": "S", "subcondition": 5, "parent": 7123}}, {"model": "template.logicnode", "pk": 7122, "fields": {"state_transition": 1757, "node_type": "S", "subcondition": 20, "parent": 7123}}, {"model": "template.logicnode", "pk": 7123, "fields": {"state_transition": 1757, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7124, "fields": {"state_transition": 1758, "node_type": "N", "subcondition": null, "parent": 7128}}, {"model": "template.logicnode", "pk": 7125, "fields": {"state_transition": 1758, "node_type": "S", "subcondition": 23, "parent": 7124}}, {"model": "template.logicnode", "pk": 7126, "fields": {"state_transition": 1758, "node_type": "S", "subcondition": 5, "parent": 7128}}, {"model": "template.logicnode", "pk": 7127, "fields": {"state_transition": 1758, "node_type": "S", "subcondition": 21, "parent": 7128}}, {"model": "template.logicnode", "pk": 7128, "fields": {"state_transition": 1758, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7129, "fields": {"state_transition": 1759, "node_type": "N", "subcondition": null, "parent": 7133}}, {"model": "template.logicnode", "pk": 7130, "fields": {"state_transition": 1759, "node_type": "S", "subcondition": 23, "parent": 7129}}, {"model": "template.logicnode", "pk": 7131, "fields": {"state_transition": 1759, "node_type": "S", "subcondition": 5, "parent": 7133}}, {"model": "template.logicnode", "pk": 7132, "fields": {"state_transition": 1759, "node_type": "S", "subcondition": 22, "parent": 7133}}, {"model": "template.logicnode", "pk": 7133, "fields": {"state_transition": 1759, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7134, "fields": {"state_transition": 1760, "node_type": "N", "subcondition": null, "parent": 7138}}, {"model": "template.logicnode", "pk": 7135, "fields": {"state_transition": 1760, "node_type": "S", "subcondition": 23, "parent": 7134}}, {"model": "template.logicnode", "pk": 7136, "fields": {"state_transition": 1760, "node_type": "S", "subcondition": 6, "parent": 7138}}, {"model": "template.logicnode", "pk": 7137, "fields": {"state_transition": 1760, "node_type": "S", "subcondition": 19, "parent": 7138}}, {"model": "template.logicnode", "pk": 7138, "fields": {"state_transition": 1760, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7139, "fields": {"state_transition": 1761, "node_type": "N", "subcondition": null, "parent": 7143}}, {"model": "template.logicnode", "pk": 7140, "fields": {"state_transition": 1761, "node_type": "S", "subcondition": 23, "parent": 7139}}, {"model": "template.logicnode", "pk": 7141, "fields": {"state_transition": 1761, "node_type": "S", "subcondition": 6, "parent": 7143}}, {"model": "template.logicnode", "pk": 7142, "fields": {"state_transition": 1761, "node_type": "S", "subcondition": 20, "parent": 7143}}, {"model": "template.logicnode", "pk": 7143, "fields": {"state_transition": 1761, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7144, "fields": {"state_transition": 1762, "node_type": "N", "subcondition": null, "parent": 7148}}, {"model": "template.logicnode", "pk": 7145, "fields": {"state_transition": 1762, "node_type": "S", "subcondition": 23, "parent": 7144}}, {"model": "template.logicnode", "pk": 7146, "fields": {"state_transition": 1762, "node_type": "S", "subcondition": 6, "parent": 7148}}, {"model": "template.logicnode", "pk": 7147, "fields": {"state_transition": 1762, "node_type": "S", "subcondition": 21, "parent": 7148}}, {"model": "template.logicnode", "pk": 7148, "fields": {"state_transition": 1762, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7149, "fields": {"state_transition": 1763, "node_type": "N", "subcondition": null, "parent": 7153}}, {"model": "template.logicnode", "pk": 7150, "fields": {"state_transition": 1763, "node_type": "S", "subcondition": 23, "parent": 7149}}, {"model": "template.logicnode", "pk": 7151, "fields": {"state_transition": 1763, "node_type": "S", "subcondition": 6, "parent": 7153}}, {"model": "template.logicnode", "pk": 7152, "fields": {"state_transition": 1763, "node_type": "S", "subcondition": 22, "parent": 7153}}, {"model": "template.logicnode", "pk": 7153, "fields": {"state_transition": 1763, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7154, "fields": {"state_transition": 1764, "node_type": "S", "subcondition": 23, "parent": 7157}}, {"model": "template.logicnode", "pk": 7155, "fields": {"state_transition": 1764, "node_type": "S", "subcondition": 3, "parent": 7157}}, {"model": "template.logicnode", "pk": 7156, "fields": {"state_transition": 1764, "node_type": "S", "subcondition": 19, "parent": 7157}}, {"model": "template.logicnode", "pk": 7157, "fields": {"state_transition": 1764, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7158, "fields": {"state_transition": 1765, "node_type": "S", "subcondition": 23, "parent": 7161}}, {"model": "template.logicnode", "pk": 7159, "fields": {"state_transition": 1765, "node_type": "S", "subcondition": 3, "parent": 7161}}, {"model": "template.logicnode", "pk": 7160, "fields": {"state_transition": 1765, "node_type": "S", "subcondition": 20, "parent": 7161}}, {"model": "template.logicnode", "pk": 7161, "fields": {"state_transition": 1765, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7162, "fields": {"state_transition": 1766, "node_type": "S", "subcondition": 23, "parent": 7165}}, {"model": "template.logicnode", "pk": 7163, "fields": {"state_transition": 1766, "node_type": "S", "subcondition": 3, "parent": 7165}}, {"model": "template.logicnode", "pk": 7164, "fields": {"state_transition": 1766, "node_type": "S", "subcondition": 21, "parent": 7165}}, {"model": "template.logicnode", "pk": 7165, "fields": {"state_transition": 1766, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7166, "fields": {"state_transition": 1767, "node_type": "S", "subcondition": 23, "parent": 7169}}, {"model": "template.logicnode", "pk": 7167, "fields": {"state_transition": 1767, "node_type": "S", "subcondition": 3, "parent": 7169}}, {"model": "template.logicnode", "pk": 7168, "fields": {"state_transition": 1767, "node_type": "S", "subcondition": 22, "parent": 7169}}, {"model": "template.logicnode", "pk": 7169, "fields": {"state_transition": 1767, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7170, "fields": {"state_transition": 1768, "node_type": "S", "subcondition": 23, "parent": 7173}}, {"model": "template.logicnode", "pk": 7171, "fields": {"state_transition": 1768, "node_type": "S", "subcondition": 4, "parent": 7173}}, {"model": "template.logicnode", "pk": 7172, "fields": {"state_transition": 1768, "node_type": "S", "subcondition": 19, "parent": 7173}}, {"model": "template.logicnode", "pk": 7173, "fields": {"state_transition": 1768, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7174, "fields": {"state_transition": 1769, "node_type": "S", "subcondition": 23, "parent": 7177}}, {"model": "template.logicnode", "pk": 7175, "fields": {"state_transition": 1769, "node_type": "S", "subcondition": 4, "parent": 7177}}, {"model": "template.logicnode", "pk": 7176, "fields": {"state_transition": 1769, "node_type": "S", "subcondition": 20, "parent": 7177}}, {"model": "template.logicnode", "pk": 7177, "fields": {"state_transition": 1769, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7178, "fields": {"state_transition": 1770, "node_type": "S", "subcondition": 23, "parent": 7181}}, {"model": "template.logicnode", "pk": 7179, "fields": {"state_transition": 1770, "node_type": "S", "subcondition": 4, "parent": 7181}}, {"model": "template.logicnode", "pk": 7180, "fields": {"state_transition": 1770, "node_type": "S", "subcondition": 21, "parent": 7181}}, {"model": "template.logicnode", "pk": 7181, "fields": {"state_transition": 1770, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7182, "fields": {"state_transition": 1771, "node_type": "S", "subcondition": 23, "parent": 7185}}, {"model": "template.logicnode", "pk": 7183, "fields": {"state_transition": 1771, "node_type": "S", "subcondition": 4, "parent": 7185}}, {"model": "template.logicnode", "pk": 7184, "fields": {"state_transition": 1771, "node_type": "S", "subcondition": 22, "parent": 7185}}, {"model": "template.logicnode", "pk": 7185, "fields": {"state_transition": 1771, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7186, "fields": {"state_transition": 1772, "node_type": "S", "subcondition": 23, "parent": 7189}}, {"model": "template.logicnode", "pk": 7187, "fields": {"state_transition": 1772, "node_type": "S", "subcondition": 5, "parent": 7189}}, {"model": "template.logicnode", "pk": 7188, "fields": {"state_transition": 1772, "node_type": "S", "subcondition": 19, "parent": 7189}}, {"model": "template.logicnode", "pk": 7189, "fields": {"state_transition": 1772, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7190, "fields": {"state_transition": 1773, "node_type": "S", "subcondition": 23, "parent": 7193}}, {"model": "template.logicnode", "pk": 7191, "fields": {"state_transition": 1773, "node_type": "S", "subcondition": 5, "parent": 7193}}, {"model": "template.logicnode", "pk": 7192, "fields": {"state_transition": 1773, "node_type": "S", "subcondition": 20, "parent": 7193}}, {"model": "template.logicnode", "pk": 7193, "fields": {"state_transition": 1773, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7194, "fields": {"state_transition": 1774, "node_type": "S", "subcondition": 23, "parent": 7197}}, {"model": "template.logicnode", "pk": 7195, "fields": {"state_transition": 1774, "node_type": "S", "subcondition": 5, "parent": 7197}}, {"model": "template.logicnode", "pk": 7196, "fields": {"state_transition": 1774, "node_type": "S", "subcondition": 21, "parent": 7197}}, {"model": "template.logicnode", "pk": 7197, "fields": {"state_transition": 1774, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7198, "fields": {"state_transition": 1775, "node_type": "S", "subcondition": 23, "parent": 7201}}, {"model": "template.logicnode", "pk": 7199, "fields": {"state_transition": 1775, "node_type": "S", "subcondition": 5, "parent": 7201}}, {"model": "template.logicnode", "pk": 7200, "fields": {"state_transition": 1775, "node_type": "S", "subcondition": 22, "parent": 7201}}, {"model": "template.logicnode", "pk": 7201, "fields": {"state_transition": 1775, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7202, "fields": {"state_transition": 1776, "node_type": "S", "subcondition": 23, "parent": 7205}}, {"model": "template.logicnode", "pk": 7203, "fields": {"state_transition": 1776, "node_type": "S", "subcondition": 6, "parent": 7205}}, {"model": "template.logicnode", "pk": 7204, "fields": {"state_transition": 1776, "node_type": "S", "subcondition": 19, "parent": 7205}}, {"model": "template.logicnode", "pk": 7205, "fields": {"state_transition": 1776, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7206, "fields": {"state_transition": 1777, "node_type": "S", "subcondition": 23, "parent": 7209}}, {"model": "template.logicnode", "pk": 7207, "fields": {"state_transition": 1777, "node_type": "S", "subcondition": 6, "parent": 7209}}, {"model": "template.logicnode", "pk": 7208, "fields": {"state_transition": 1777, "node_type": "S", "subcondition": 20, "parent": 7209}}, {"model": "template.logicnode", "pk": 7209, "fields": {"state_transition": 1777, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7210, "fields": {"state_transition": 1778, "node_type": "S", "subcondition": 23, "parent": 7213}}, {"model": "template.logicnode", "pk": 7211, "fields": {"state_transition": 1778, "node_type": "S", "subcondition": 6, "parent": 7213}}, {"model": "template.logicnode", "pk": 7212, "fields": {"state_transition": 1778, "node_type": "S", "subcondition": 21, "parent": 7213}}, {"model": "template.logicnode", "pk": 7213, "fields": {"state_transition": 1778, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7214, "fields": {"state_transition": 1779, "node_type": "S", "subcondition": 23, "parent": 7217}}, {"model": "template.logicnode", "pk": 7215, "fields": {"state_transition": 1779, "node_type": "S", "subcondition": 6, "parent": 7217}}, {"model": "template.logicnode", "pk": 7216, "fields": {"state_transition": 1779, "node_type": "S", "subcondition": 22, "parent": 7217}}, {"model": "template.logicnode", "pk": 7217, "fields": {"state_transition": 1779, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7218, "fields": {"state_transition": 1780, "node_type": "N", "subcondition": null, "parent": 7222}}, {"model": "template.logicnode", "pk": 7219, "fields": {"state_transition": 1780, "node_type": "S", "subcondition": 23, "parent": 7218}}, {"model": "template.logicnode", "pk": 7220, "fields": {"state_transition": 1780, "node_type": "S", "subcondition": 3, "parent": 7222}}, {"model": "template.logicnode", "pk": 7221, "fields": {"state_transition": 1780, "node_type": "S", "subcondition": 19, "parent": 7222}}, {"model": "template.logicnode", "pk": 7222, "fields": {"state_transition": 1780, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7223, "fields": {"state_transition": 1781, "node_type": "N", "subcondition": null, "parent": 7227}}, {"model": "template.logicnode", "pk": 7224, "fields": {"state_transition": 1781, "node_type": "S", "subcondition": 23, "parent": 7223}}, {"model": "template.logicnode", "pk": 7225, "fields": {"state_transition": 1781, "node_type": "S", "subcondition": 3, "parent": 7227}}, {"model": "template.logicnode", "pk": 7226, "fields": {"state_transition": 1781, "node_type": "S", "subcondition": 20, "parent": 7227}}, {"model": "template.logicnode", "pk": 7227, "fields": {"state_transition": 1781, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7228, "fields": {"state_transition": 1782, "node_type": "N", "subcondition": null, "parent": 7232}}, {"model": "template.logicnode", "pk": 7229, "fields": {"state_transition": 1782, "node_type": "S", "subcondition": 23, "parent": 7228}}, {"model": "template.logicnode", "pk": 7230, "fields": {"state_transition": 1782, "node_type": "S", "subcondition": 3, "parent": 7232}}, {"model": "template.logicnode", "pk": 7231, "fields": {"state_transition": 1782, "node_type": "S", "subcondition": 21, "parent": 7232}}, {"model": "template.logicnode", "pk": 7232, "fields": {"state_transition": 1782, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7233, "fields": {"state_transition": 1783, "node_type": "N", "subcondition": null, "parent": 7237}}, {"model": "template.logicnode", "pk": 7234, "fields": {"state_transition": 1783, "node_type": "S", "subcondition": 23, "parent": 7233}}, {"model": "template.logicnode", "pk": 7235, "fields": {"state_transition": 1783, "node_type": "S", "subcondition": 3, "parent": 7237}}, {"model": "template.logicnode", "pk": 7236, "fields": {"state_transition": 1783, "node_type": "S", "subcondition": 22, "parent": 7237}}, {"model": "template.logicnode", "pk": 7237, "fields": {"state_transition": 1783, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7238, "fields": {"state_transition": 1784, "node_type": "N", "subcondition": null, "parent": 7242}}, {"model": "template.logicnode", "pk": 7239, "fields": {"state_transition": 1784, "node_type": "S", "subcondition": 23, "parent": 7238}}, {"model": "template.logicnode", "pk": 7240, "fields": {"state_transition": 1784, "node_type": "S", "subcondition": 4, "parent": 7242}}, {"model": "template.logicnode", "pk": 7241, "fields": {"state_transition": 1784, "node_type": "S", "subcondition": 19, "parent": 7242}}, {"model": "template.logicnode", "pk": 7242, "fields": {"state_transition": 1784, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7243, "fields": {"state_transition": 1785, "node_type": "N", "subcondition": null, "parent": 7247}}, {"model": "template.logicnode", "pk": 7244, "fields": {"state_transition": 1785, "node_type": "S", "subcondition": 23, "parent": 7243}}, {"model": "template.logicnode", "pk": 7245, "fields": {"state_transition": 1785, "node_type": "S", "subcondition": 4, "parent": 7247}}, {"model": "template.logicnode", "pk": 7246, "fields": {"state_transition": 1785, "node_type": "S", "subcondition": 20, "parent": 7247}}, {"model": "template.logicnode", "pk": 7247, "fields": {"state_transition": 1785, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7248, "fields": {"state_transition": 1786, "node_type": "N", "subcondition": null, "parent": 7252}}, {"model": "template.logicnode", "pk": 7249, "fields": {"state_transition": 1786, "node_type": "S", "subcondition": 23, "parent": 7248}}, {"model": "template.logicnode", "pk": 7250, "fields": {"state_transition": 1786, "node_type": "S", "subcondition": 4, "parent": 7252}}, {"model": "template.logicnode", "pk": 7251, "fields": {"state_transition": 1786, "node_type": "S", "subcondition": 21, "parent": 7252}}, {"model": "template.logicnode", "pk": 7252, "fields": {"state_transition": 1786, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7253, "fields": {"state_transition": 1787, "node_type": "N", "subcondition": null, "parent": 7257}}, {"model": "template.logicnode", "pk": 7254, "fields": {"state_transition": 1787, "node_type": "S", "subcondition": 23, "parent": 7253}}, {"model": "template.logicnode", "pk": 7255, "fields": {"state_transition": 1787, "node_type": "S", "subcondition": 4, "parent": 7257}}, {"model": "template.logicnode", "pk": 7256, "fields": {"state_transition": 1787, "node_type": "S", "subcondition": 22, "parent": 7257}}, {"model": "template.logicnode", "pk": 7257, "fields": {"state_transition": 1787, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7258, "fields": {"state_transition": 1788, "node_type": "N", "subcondition": null, "parent": 7262}}, {"model": "template.logicnode", "pk": 7259, "fields": {"state_transition": 1788, "node_type": "S", "subcondition": 23, "parent": 7258}}, {"model": "template.logicnode", "pk": 7260, "fields": {"state_transition": 1788, "node_type": "S", "subcondition": 5, "parent": 7262}}, {"model": "template.logicnode", "pk": 7261, "fields": {"state_transition": 1788, "node_type": "S", "subcondition": 19, "parent": 7262}}, {"model": "template.logicnode", "pk": 7262, "fields": {"state_transition": 1788, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7263, "fields": {"state_transition": 1789, "node_type": "N", "subcondition": null, "parent": 7267}}, {"model": "template.logicnode", "pk": 7264, "fields": {"state_transition": 1789, "node_type": "S", "subcondition": 23, "parent": 7263}}, {"model": "template.logicnode", "pk": 7265, "fields": {"state_transition": 1789, "node_type": "S", "subcondition": 5, "parent": 7267}}, {"model": "template.logicnode", "pk": 7266, "fields": {"state_transition": 1789, "node_type": "S", "subcondition": 20, "parent": 7267}}, {"model": "template.logicnode", "pk": 7267, "fields": {"state_transition": 1789, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7268, "fields": {"state_transition": 1790, "node_type": "N", "subcondition": null, "parent": 7272}}, {"model": "template.logicnode", "pk": 7269, "fields": {"state_transition": 1790, "node_type": "S", "subcondition": 23, "parent": 7268}}, {"model": "template.logicnode", "pk": 7270, "fields": {"state_transition": 1790, "node_type": "S", "subcondition": 5, "parent": 7272}}, {"model": "template.logicnode", "pk": 7271, "fields": {"state_transition": 1790, "node_type": "S", "subcondition": 21, "parent": 7272}}, {"model": "template.logicnode", "pk": 7272, "fields": {"state_transition": 1790, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7273, "fields": {"state_transition": 1791, "node_type": "N", "subcondition": null, "parent": 7277}}, {"model": "template.logicnode", "pk": 7274, "fields": {"state_transition": 1791, "node_type": "S", "subcondition": 23, "parent": 7273}}, {"model": "template.logicnode", "pk": 7275, "fields": {"state_transition": 1791, "node_type": "S", "subcondition": 5, "parent": 7277}}, {"model": "template.logicnode", "pk": 7276, "fields": {"state_transition": 1791, "node_type": "S", "subcondition": 22, "parent": 7277}}, {"model": "template.logicnode", "pk": 7277, "fields": {"state_transition": 1791, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7278, "fields": {"state_transition": 1792, "node_type": "N", "subcondition": null, "parent": 7282}}, {"model": "template.logicnode", "pk": 7279, "fields": {"state_transition": 1792, "node_type": "S", "subcondition": 23, "parent": 7278}}, {"model": "template.logicnode", "pk": 7280, "fields": {"state_transition": 1792, "node_type": "S", "subcondition": 6, "parent": 7282}}, {"model": "template.logicnode", "pk": 7281, "fields": {"state_transition": 1792, "node_type": "S", "subcondition": 19, "parent": 7282}}, {"model": "template.logicnode", "pk": 7282, "fields": {"state_transition": 1792, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7283, "fields": {"state_transition": 1793, "node_type": "N", "subcondition": null, "parent": 7287}}, {"model": "template.logicnode", "pk": 7284, "fields": {"state_transition": 1793, "node_type": "S", "subcondition": 23, "parent": 7283}}, {"model": "template.logicnode", "pk": 7285, "fields": {"state_transition": 1793, "node_type": "S", "subcondition": 6, "parent": 7287}}, {"model": "template.logicnode", "pk": 7286, "fields": {"state_transition": 1793, "node_type": "S", "subcondition": 20, "parent": 7287}}, {"model": "template.logicnode", "pk": 7287, "fields": {"state_transition": 1793, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7288, "fields": {"state_transition": 1794, "node_type": "N", "subcondition": null, "parent": 7292}}, {"model": "template.logicnode", "pk": 7289, "fields": {"state_transition": 1794, "node_type": "S", "subcondition": 23, "parent": 7288}}, {"model": "template.logicnode", "pk": 7290, "fields": {"state_transition": 1794, "node_type": "S", "subcondition": 6, "parent": 7292}}, {"model": "template.logicnode", "pk": 7291, "fields": {"state_transition": 1794, "node_type": "S", "subcondition": 21, "parent": 7292}}, {"model": "template.logicnode", "pk": 7292, "fields": {"state_transition": 1794, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7293, "fields": {"state_transition": 1795, "node_type": "N", "subcondition": null, "parent": 7297}}, {"model": "template.logicnode", "pk": 7294, "fields": {"state_transition": 1795, "node_type": "S", "subcondition": 23, "parent": 7293}}, {"model": "template.logicnode", "pk": 7295, "fields": {"state_transition": 1795, "node_type": "S", "subcondition": 6, "parent": 7297}}, {"model": "template.logicnode", "pk": 7296, "fields": {"state_transition": 1795, "node_type": "S", "subcondition": 22, "parent": 7297}}, {"model": "template.logicnode", "pk": 7297, "fields": {"state_transition": 1795, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7298, "fields": {"state_transition": 1796, "node_type": "S", "subcondition": 23, "parent": 7301}}, {"model": "template.logicnode", "pk": 7299, "fields": {"state_transition": 1796, "node_type": "S", "subcondition": 3, "parent": 7301}}, {"model": "template.logicnode", "pk": 7300, "fields": {"state_transition": 1796, "node_type": "S", "subcondition": 19, "parent": 7301}}, {"model": "template.logicnode", "pk": 7301, "fields": {"state_transition": 1796, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7302, "fields": {"state_transition": 1797, "node_type": "S", "subcondition": 23, "parent": 7305}}, {"model": "template.logicnode", "pk": 7303, "fields": {"state_transition": 1797, "node_type": "S", "subcondition": 3, "parent": 7305}}, {"model": "template.logicnode", "pk": 7304, "fields": {"state_transition": 1797, "node_type": "S", "subcondition": 20, "parent": 7305}}, {"model": "template.logicnode", "pk": 7305, "fields": {"state_transition": 1797, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7306, "fields": {"state_transition": 1798, "node_type": "S", "subcondition": 23, "parent": 7309}}, {"model": "template.logicnode", "pk": 7307, "fields": {"state_transition": 1798, "node_type": "S", "subcondition": 3, "parent": 7309}}, {"model": "template.logicnode", "pk": 7308, "fields": {"state_transition": 1798, "node_type": "S", "subcondition": 21, "parent": 7309}}, {"model": "template.logicnode", "pk": 7309, "fields": {"state_transition": 1798, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7310, "fields": {"state_transition": 1799, "node_type": "S", "subcondition": 23, "parent": 7313}}, {"model": "template.logicnode", "pk": 7311, "fields": {"state_transition": 1799, "node_type": "S", "subcondition": 3, "parent": 7313}}, {"model": "template.logicnode", "pk": 7312, "fields": {"state_transition": 1799, "node_type": "S", "subcondition": 22, "parent": 7313}}, {"model": "template.logicnode", "pk": 7313, "fields": {"state_transition": 1799, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7314, "fields": {"state_transition": 1800, "node_type": "S", "subcondition": 23, "parent": 7317}}, {"model": "template.logicnode", "pk": 7315, "fields": {"state_transition": 1800, "node_type": "S", "subcondition": 4, "parent": 7317}}, {"model": "template.logicnode", "pk": 7316, "fields": {"state_transition": 1800, "node_type": "S", "subcondition": 19, "parent": 7317}}, {"model": "template.logicnode", "pk": 7317, "fields": {"state_transition": 1800, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7318, "fields": {"state_transition": 1801, "node_type": "S", "subcondition": 23, "parent": 7321}}, {"model": "template.logicnode", "pk": 7319, "fields": {"state_transition": 1801, "node_type": "S", "subcondition": 4, "parent": 7321}}, {"model": "template.logicnode", "pk": 7320, "fields": {"state_transition": 1801, "node_type": "S", "subcondition": 20, "parent": 7321}}, {"model": "template.logicnode", "pk": 7321, "fields": {"state_transition": 1801, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7322, "fields": {"state_transition": 1802, "node_type": "S", "subcondition": 23, "parent": 7325}}, {"model": "template.logicnode", "pk": 7323, "fields": {"state_transition": 1802, "node_type": "S", "subcondition": 4, "parent": 7325}}, {"model": "template.logicnode", "pk": 7324, "fields": {"state_transition": 1802, "node_type": "S", "subcondition": 21, "parent": 7325}}, {"model": "template.logicnode", "pk": 7325, "fields": {"state_transition": 1802, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7326, "fields": {"state_transition": 1803, "node_type": "S", "subcondition": 23, "parent": 7329}}, {"model": "template.logicnode", "pk": 7327, "fields": {"state_transition": 1803, "node_type": "S", "subcondition": 4, "parent": 7329}}, {"model": "template.logicnode", "pk": 7328, "fields": {"state_transition": 1803, "node_type": "S", "subcondition": 22, "parent": 7329}}, {"model": "template.logicnode", "pk": 7329, "fields": {"state_transition": 1803, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7330, "fields": {"state_transition": 1804, "node_type": "S", "subcondition": 23, "parent": 7333}}, {"model": "template.logicnode", "pk": 7331, "fields": {"state_transition": 1804, "node_type": "S", "subcondition": 5, "parent": 7333}}, {"model": "template.logicnode", "pk": 7332, "fields": {"state_transition": 1804, "node_type": "S", "subcondition": 19, "parent": 7333}}, {"model": "template.logicnode", "pk": 7333, "fields": {"state_transition": 1804, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7334, "fields": {"state_transition": 1805, "node_type": "S", "subcondition": 23, "parent": 7337}}, {"model": "template.logicnode", "pk": 7335, "fields": {"state_transition": 1805, "node_type": "S", "subcondition": 5, "parent": 7337}}, {"model": "template.logicnode", "pk": 7336, "fields": {"state_transition": 1805, "node_type": "S", "subcondition": 20, "parent": 7337}}, {"model": "template.logicnode", "pk": 7337, "fields": {"state_transition": 1805, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7338, "fields": {"state_transition": 1806, "node_type": "S", "subcondition": 23, "parent": 7341}}, {"model": "template.logicnode", "pk": 7339, "fields": {"state_transition": 1806, "node_type": "S", "subcondition": 5, "parent": 7341}}, {"model": "template.logicnode", "pk": 7340, "fields": {"state_transition": 1806, "node_type": "S", "subcondition": 21, "parent": 7341}}, {"model": "template.logicnode", "pk": 7341, "fields": {"state_transition": 1806, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7342, "fields": {"state_transition": 1807, "node_type": "S", "subcondition": 23, "parent": 7345}}, {"model": "template.logicnode", "pk": 7343, "fields": {"state_transition": 1807, "node_type": "S", "subcondition": 5, "parent": 7345}}, {"model": "template.logicnode", "pk": 7344, "fields": {"state_transition": 1807, "node_type": "S", "subcondition": 22, "parent": 7345}}, {"model": "template.logicnode", "pk": 7345, "fields": {"state_transition": 1807, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7346, "fields": {"state_transition": 1808, "node_type": "S", "subcondition": 23, "parent": 7349}}, {"model": "template.logicnode", "pk": 7347, "fields": {"state_transition": 1808, "node_type": "S", "subcondition": 6, "parent": 7349}}, {"model": "template.logicnode", "pk": 7348, "fields": {"state_transition": 1808, "node_type": "S", "subcondition": 19, "parent": 7349}}, {"model": "template.logicnode", "pk": 7349, "fields": {"state_transition": 1808, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7350, "fields": {"state_transition": 1809, "node_type": "S", "subcondition": 23, "parent": 7353}}, {"model": "template.logicnode", "pk": 7351, "fields": {"state_transition": 1809, "node_type": "S", "subcondition": 6, "parent": 7353}}, {"model": "template.logicnode", "pk": 7352, "fields": {"state_transition": 1809, "node_type": "S", "subcondition": 20, "parent": 7353}}, {"model": "template.logicnode", "pk": 7353, "fields": {"state_transition": 1809, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7354, "fields": {"state_transition": 1810, "node_type": "S", "subcondition": 23, "parent": 7357}}, {"model": "template.logicnode", "pk": 7355, "fields": {"state_transition": 1810, "node_type": "S", "subcondition": 6, "parent": 7357}}, {"model": "template.logicnode", "pk": 7356, "fields": {"state_transition": 1810, "node_type": "S", "subcondition": 21, "parent": 7357}}, {"model": "template.logicnode", "pk": 7357, "fields": {"state_transition": 1810, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7358, "fields": {"state_transition": 1811, "node_type": "S", "subcondition": 23, "parent": 7361}}, {"model": "template.logicnode", "pk": 7359, "fields": {"state_transition": 1811, "node_type": "S", "subcondition": 6, "parent": 7361}}, {"model": "template.logicnode", "pk": 7360, "fields": {"state_transition": 1811, "node_type": "S", "subcondition": 22, "parent": 7361}}, {"model": "template.logicnode", "pk": 7361, "fields": {"state_transition": 1811, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7362, "fields": {"state_transition": 1812, "node_type": "N", "subcondition": null, "parent": 7366}}, {"model": "template.logicnode", "pk": 7363, "fields": {"state_transition": 1812, "node_type": "S", "subcondition": 23, "parent": 7362}}, {"model": "template.logicnode", "pk": 7364, "fields": {"state_transition": 1812, "node_type": "S", "subcondition": 3, "parent": 7366}}, {"model": "template.logicnode", "pk": 7365, "fields": {"state_transition": 1812, "node_type": "S", "subcondition": 19, "parent": 7366}}, {"model": "template.logicnode", "pk": 7366, "fields": {"state_transition": 1812, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7367, "fields": {"state_transition": 1813, "node_type": "N", "subcondition": null, "parent": 7371}}, {"model": "template.logicnode", "pk": 7368, "fields": {"state_transition": 1813, "node_type": "S", "subcondition": 23, "parent": 7367}}, {"model": "template.logicnode", "pk": 7369, "fields": {"state_transition": 1813, "node_type": "S", "subcondition": 3, "parent": 7371}}, {"model": "template.logicnode", "pk": 7370, "fields": {"state_transition": 1813, "node_type": "S", "subcondition": 20, "parent": 7371}}, {"model": "template.logicnode", "pk": 7371, "fields": {"state_transition": 1813, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7372, "fields": {"state_transition": 1814, "node_type": "N", "subcondition": null, "parent": 7376}}, {"model": "template.logicnode", "pk": 7373, "fields": {"state_transition": 1814, "node_type": "S", "subcondition": 23, "parent": 7372}}, {"model": "template.logicnode", "pk": 7374, "fields": {"state_transition": 1814, "node_type": "S", "subcondition": 3, "parent": 7376}}, {"model": "template.logicnode", "pk": 7375, "fields": {"state_transition": 1814, "node_type": "S", "subcondition": 21, "parent": 7376}}, {"model": "template.logicnode", "pk": 7376, "fields": {"state_transition": 1814, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7377, "fields": {"state_transition": 1815, "node_type": "N", "subcondition": null, "parent": 7381}}, {"model": "template.logicnode", "pk": 7378, "fields": {"state_transition": 1815, "node_type": "S", "subcondition": 23, "parent": 7377}}, {"model": "template.logicnode", "pk": 7379, "fields": {"state_transition": 1815, "node_type": "S", "subcondition": 3, "parent": 7381}}, {"model": "template.logicnode", "pk": 7380, "fields": {"state_transition": 1815, "node_type": "S", "subcondition": 22, "parent": 7381}}, {"model": "template.logicnode", "pk": 7381, "fields": {"state_transition": 1815, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7382, "fields": {"state_transition": 1816, "node_type": "N", "subcondition": null, "parent": 7386}}, {"model": "template.logicnode", "pk": 7383, "fields": {"state_transition": 1816, "node_type": "S", "subcondition": 23, "parent": 7382}}, {"model": "template.logicnode", "pk": 7384, "fields": {"state_transition": 1816, "node_type": "S", "subcondition": 4, "parent": 7386}}, {"model": "template.logicnode", "pk": 7385, "fields": {"state_transition": 1816, "node_type": "S", "subcondition": 19, "parent": 7386}}, {"model": "template.logicnode", "pk": 7386, "fields": {"state_transition": 1816, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7387, "fields": {"state_transition": 1817, "node_type": "N", "subcondition": null, "parent": 7391}}, {"model": "template.logicnode", "pk": 7388, "fields": {"state_transition": 1817, "node_type": "S", "subcondition": 23, "parent": 7387}}, {"model": "template.logicnode", "pk": 7389, "fields": {"state_transition": 1817, "node_type": "S", "subcondition": 4, "parent": 7391}}, {"model": "template.logicnode", "pk": 7390, "fields": {"state_transition": 1817, "node_type": "S", "subcondition": 20, "parent": 7391}}, {"model": "template.logicnode", "pk": 7391, "fields": {"state_transition": 1817, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7392, "fields": {"state_transition": 1818, "node_type": "N", "subcondition": null, "parent": 7396}}, {"model": "template.logicnode", "pk": 7393, "fields": {"state_transition": 1818, "node_type": "S", "subcondition": 23, "parent": 7392}}, {"model": "template.logicnode", "pk": 7394, "fields": {"state_transition": 1818, "node_type": "S", "subcondition": 4, "parent": 7396}}, {"model": "template.logicnode", "pk": 7395, "fields": {"state_transition": 1818, "node_type": "S", "subcondition": 21, "parent": 7396}}, {"model": "template.logicnode", "pk": 7396, "fields": {"state_transition": 1818, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7397, "fields": {"state_transition": 1819, "node_type": "N", "subcondition": null, "parent": 7401}}, {"model": "template.logicnode", "pk": 7398, "fields": {"state_transition": 1819, "node_type": "S", "subcondition": 23, "parent": 7397}}, {"model": "template.logicnode", "pk": 7399, "fields": {"state_transition": 1819, "node_type": "S", "subcondition": 4, "parent": 7401}}, {"model": "template.logicnode", "pk": 7400, "fields": {"state_transition": 1819, "node_type": "S", "subcondition": 22, "parent": 7401}}, {"model": "template.logicnode", "pk": 7401, "fields": {"state_transition": 1819, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7402, "fields": {"state_transition": 1820, "node_type": "N", "subcondition": null, "parent": 7406}}, {"model": "template.logicnode", "pk": 7403, "fields": {"state_transition": 1820, "node_type": "S", "subcondition": 23, "parent": 7402}}, {"model": "template.logicnode", "pk": 7404, "fields": {"state_transition": 1820, "node_type": "S", "subcondition": 5, "parent": 7406}}, {"model": "template.logicnode", "pk": 7405, "fields": {"state_transition": 1820, "node_type": "S", "subcondition": 19, "parent": 7406}}, {"model": "template.logicnode", "pk": 7406, "fields": {"state_transition": 1820, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7407, "fields": {"state_transition": 1821, "node_type": "N", "subcondition": null, "parent": 7411}}, {"model": "template.logicnode", "pk": 7408, "fields": {"state_transition": 1821, "node_type": "S", "subcondition": 23, "parent": 7407}}, {"model": "template.logicnode", "pk": 7409, "fields": {"state_transition": 1821, "node_type": "S", "subcondition": 5, "parent": 7411}}, {"model": "template.logicnode", "pk": 7410, "fields": {"state_transition": 1821, "node_type": "S", "subcondition": 20, "parent": 7411}}, {"model": "template.logicnode", "pk": 7411, "fields": {"state_transition": 1821, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7412, "fields": {"state_transition": 1822, "node_type": "N", "subcondition": null, "parent": 7416}}, {"model": "template.logicnode", "pk": 7413, "fields": {"state_transition": 1822, "node_type": "S", "subcondition": 23, "parent": 7412}}, {"model": "template.logicnode", "pk": 7414, "fields": {"state_transition": 1822, "node_type": "S", "subcondition": 5, "parent": 7416}}, {"model": "template.logicnode", "pk": 7415, "fields": {"state_transition": 1822, "node_type": "S", "subcondition": 21, "parent": 7416}}, {"model": "template.logicnode", "pk": 7416, "fields": {"state_transition": 1822, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7417, "fields": {"state_transition": 1823, "node_type": "N", "subcondition": null, "parent": 7421}}, {"model": "template.logicnode", "pk": 7418, "fields": {"state_transition": 1823, "node_type": "S", "subcondition": 23, "parent": 7417}}, {"model": "template.logicnode", "pk": 7419, "fields": {"state_transition": 1823, "node_type": "S", "subcondition": 5, "parent": 7421}}, {"model": "template.logicnode", "pk": 7420, "fields": {"state_transition": 1823, "node_type": "S", "subcondition": 22, "parent": 7421}}, {"model": "template.logicnode", "pk": 7421, "fields": {"state_transition": 1823, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7422, "fields": {"state_transition": 1824, "node_type": "N", "subcondition": null, "parent": 7426}}, {"model": "template.logicnode", "pk": 7423, "fields": {"state_transition": 1824, "node_type": "S", "subcondition": 23, "parent": 7422}}, {"model": "template.logicnode", "pk": 7424, "fields": {"state_transition": 1824, "node_type": "S", "subcondition": 6, "parent": 7426}}, {"model": "template.logicnode", "pk": 7425, "fields": {"state_transition": 1824, "node_type": "S", "subcondition": 19, "parent": 7426}}, {"model": "template.logicnode", "pk": 7426, "fields": {"state_transition": 1824, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7427, "fields": {"state_transition": 1825, "node_type": "N", "subcondition": null, "parent": 7431}}, {"model": "template.logicnode", "pk": 7428, "fields": {"state_transition": 1825, "node_type": "S", "subcondition": 23, "parent": 7427}}, {"model": "template.logicnode", "pk": 7429, "fields": {"state_transition": 1825, "node_type": "S", "subcondition": 6, "parent": 7431}}, {"model": "template.logicnode", "pk": 7430, "fields": {"state_transition": 1825, "node_type": "S", "subcondition": 20, "parent": 7431}}, {"model": "template.logicnode", "pk": 7431, "fields": {"state_transition": 1825, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7432, "fields": {"state_transition": 1826, "node_type": "N", "subcondition": null, "parent": 7436}}, {"model": "template.logicnode", "pk": 7433, "fields": {"state_transition": 1826, "node_type": "S", "subcondition": 23, "parent": 7432}}, {"model": "template.logicnode", "pk": 7434, "fields": {"state_transition": 1826, "node_type": "S", "subcondition": 6, "parent": 7436}}, {"model": "template.logicnode", "pk": 7435, "fields": {"state_transition": 1826, "node_type": "S", "subcondition": 21, "parent": 7436}}, {"model": "template.logicnode", "pk": 7436, "fields": {"state_transition": 1826, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7437, "fields": {"state_transition": 1827, "node_type": "N", "subcondition": null, "parent": 7441}}, {"model": "template.logicnode", "pk": 7438, "fields": {"state_transition": 1827, "node_type": "S", "subcondition": 23, "parent": 7437}}, {"model": "template.logicnode", "pk": 7439, "fields": {"state_transition": 1827, "node_type": "S", "subcondition": 6, "parent": 7441}}, {"model": "template.logicnode", "pk": 7440, "fields": {"state_transition": 1827, "node_type": "S", "subcondition": 22, "parent": 7441}}, {"model": "template.logicnode", "pk": 7441, "fields": {"state_transition": 1827, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7442, "fields": {"state_transition": 1828, "node_type": "S", "subcondition": 23, "parent": 7445}}, {"model": "template.logicnode", "pk": 7443, "fields": {"state_transition": 1828, "node_type": "S", "subcondition": 3, "parent": 7445}}, {"model": "template.logicnode", "pk": 7444, "fields": {"state_transition": 1828, "node_type": "S", "subcondition": 19, "parent": 7445}}, {"model": "template.logicnode", "pk": 7445, "fields": {"state_transition": 1828, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7446, "fields": {"state_transition": 1829, "node_type": "S", "subcondition": 23, "parent": 7449}}, {"model": "template.logicnode", "pk": 7447, "fields": {"state_transition": 1829, "node_type": "S", "subcondition": 3, "parent": 7449}}, {"model": "template.logicnode", "pk": 7448, "fields": {"state_transition": 1829, "node_type": "S", "subcondition": 20, "parent": 7449}}, {"model": "template.logicnode", "pk": 7449, "fields": {"state_transition": 1829, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7450, "fields": {"state_transition": 1830, "node_type": "S", "subcondition": 23, "parent": 7453}}, {"model": "template.logicnode", "pk": 7451, "fields": {"state_transition": 1830, "node_type": "S", "subcondition": 3, "parent": 7453}}, {"model": "template.logicnode", "pk": 7452, "fields": {"state_transition": 1830, "node_type": "S", "subcondition": 21, "parent": 7453}}, {"model": "template.logicnode", "pk": 7453, "fields": {"state_transition": 1830, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7454, "fields": {"state_transition": 1831, "node_type": "S", "subcondition": 23, "parent": 7457}}, {"model": "template.logicnode", "pk": 7455, "fields": {"state_transition": 1831, "node_type": "S", "subcondition": 3, "parent": 7457}}, {"model": "template.logicnode", "pk": 7456, "fields": {"state_transition": 1831, "node_type": "S", "subcondition": 22, "parent": 7457}}, {"model": "template.logicnode", "pk": 7457, "fields": {"state_transition": 1831, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7458, "fields": {"state_transition": 1832, "node_type": "S", "subcondition": 23, "parent": 7461}}, {"model": "template.logicnode", "pk": 7459, "fields": {"state_transition": 1832, "node_type": "S", "subcondition": 4, "parent": 7461}}, {"model": "template.logicnode", "pk": 7460, "fields": {"state_transition": 1832, "node_type": "S", "subcondition": 19, "parent": 7461}}, {"model": "template.logicnode", "pk": 7461, "fields": {"state_transition": 1832, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7462, "fields": {"state_transition": 1833, "node_type": "S", "subcondition": 23, "parent": 7465}}, {"model": "template.logicnode", "pk": 7463, "fields": {"state_transition": 1833, "node_type": "S", "subcondition": 4, "parent": 7465}}, {"model": "template.logicnode", "pk": 7464, "fields": {"state_transition": 1833, "node_type": "S", "subcondition": 20, "parent": 7465}}, {"model": "template.logicnode", "pk": 7465, "fields": {"state_transition": 1833, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7466, "fields": {"state_transition": 1834, "node_type": "S", "subcondition": 23, "parent": 7469}}, {"model": "template.logicnode", "pk": 7467, "fields": {"state_transition": 1834, "node_type": "S", "subcondition": 4, "parent": 7469}}, {"model": "template.logicnode", "pk": 7468, "fields": {"state_transition": 1834, "node_type": "S", "subcondition": 21, "parent": 7469}}, {"model": "template.logicnode", "pk": 7469, "fields": {"state_transition": 1834, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7470, "fields": {"state_transition": 1835, "node_type": "S", "subcondition": 23, "parent": 7473}}, {"model": "template.logicnode", "pk": 7471, "fields": {"state_transition": 1835, "node_type": "S", "subcondition": 4, "parent": 7473}}, {"model": "template.logicnode", "pk": 7472, "fields": {"state_transition": 1835, "node_type": "S", "subcondition": 22, "parent": 7473}}, {"model": "template.logicnode", "pk": 7473, "fields": {"state_transition": 1835, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7474, "fields": {"state_transition": 1836, "node_type": "S", "subcondition": 23, "parent": 7477}}, {"model": "template.logicnode", "pk": 7475, "fields": {"state_transition": 1836, "node_type": "S", "subcondition": 5, "parent": 7477}}, {"model": "template.logicnode", "pk": 7476, "fields": {"state_transition": 1836, "node_type": "S", "subcondition": 19, "parent": 7477}}, {"model": "template.logicnode", "pk": 7477, "fields": {"state_transition": 1836, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7478, "fields": {"state_transition": 1837, "node_type": "S", "subcondition": 23, "parent": 7481}}, {"model": "template.logicnode", "pk": 7479, "fields": {"state_transition": 1837, "node_type": "S", "subcondition": 5, "parent": 7481}}, {"model": "template.logicnode", "pk": 7480, "fields": {"state_transition": 1837, "node_type": "S", "subcondition": 20, "parent": 7481}}, {"model": "template.logicnode", "pk": 7481, "fields": {"state_transition": 1837, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7482, "fields": {"state_transition": 1838, "node_type": "S", "subcondition": 23, "parent": 7485}}, {"model": "template.logicnode", "pk": 7483, "fields": {"state_transition": 1838, "node_type": "S", "subcondition": 5, "parent": 7485}}, {"model": "template.logicnode", "pk": 7484, "fields": {"state_transition": 1838, "node_type": "S", "subcondition": 21, "parent": 7485}}, {"model": "template.logicnode", "pk": 7485, "fields": {"state_transition": 1838, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7486, "fields": {"state_transition": 1839, "node_type": "S", "subcondition": 23, "parent": 7489}}, {"model": "template.logicnode", "pk": 7487, "fields": {"state_transition": 1839, "node_type": "S", "subcondition": 5, "parent": 7489}}, {"model": "template.logicnode", "pk": 7488, "fields": {"state_transition": 1839, "node_type": "S", "subcondition": 22, "parent": 7489}}, {"model": "template.logicnode", "pk": 7489, "fields": {"state_transition": 1839, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7490, "fields": {"state_transition": 1840, "node_type": "S", "subcondition": 23, "parent": 7493}}, {"model": "template.logicnode", "pk": 7491, "fields": {"state_transition": 1840, "node_type": "S", "subcondition": 6, "parent": 7493}}, {"model": "template.logicnode", "pk": 7492, "fields": {"state_transition": 1840, "node_type": "S", "subcondition": 19, "parent": 7493}}, {"model": "template.logicnode", "pk": 7493, "fields": {"state_transition": 1840, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7494, "fields": {"state_transition": 1841, "node_type": "S", "subcondition": 23, "parent": 7497}}, {"model": "template.logicnode", "pk": 7495, "fields": {"state_transition": 1841, "node_type": "S", "subcondition": 6, "parent": 7497}}, {"model": "template.logicnode", "pk": 7496, "fields": {"state_transition": 1841, "node_type": "S", "subcondition": 20, "parent": 7497}}, {"model": "template.logicnode", "pk": 7497, "fields": {"state_transition": 1841, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7498, "fields": {"state_transition": 1842, "node_type": "S", "subcondition": 23, "parent": 7501}}, {"model": "template.logicnode", "pk": 7499, "fields": {"state_transition": 1842, "node_type": "S", "subcondition": 6, "parent": 7501}}, {"model": "template.logicnode", "pk": 7500, "fields": {"state_transition": 1842, "node_type": "S", "subcondition": 21, "parent": 7501}}, {"model": "template.logicnode", "pk": 7501, "fields": {"state_transition": 1842, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7502, "fields": {"state_transition": 1843, "node_type": "S", "subcondition": 23, "parent": 7505}}, {"model": "template.logicnode", "pk": 7503, "fields": {"state_transition": 1843, "node_type": "S", "subcondition": 6, "parent": 7505}}, {"model": "template.logicnode", "pk": 7504, "fields": {"state_transition": 1843, "node_type": "S", "subcondition": 22, "parent": 7505}}, {"model": "template.logicnode", "pk": 7505, "fields": {"state_transition": 1843, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7506, "fields": {"state_transition": 1844, "node_type": "N", "subcondition": null, "parent": 7510}}, {"model": "template.logicnode", "pk": 7507, "fields": {"state_transition": 1844, "node_type": "S", "subcondition": 23, "parent": 7506}}, {"model": "template.logicnode", "pk": 7508, "fields": {"state_transition": 1844, "node_type": "S", "subcondition": 3, "parent": 7510}}, {"model": "template.logicnode", "pk": 7509, "fields": {"state_transition": 1844, "node_type": "S", "subcondition": 19, "parent": 7510}}, {"model": "template.logicnode", "pk": 7510, "fields": {"state_transition": 1844, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7511, "fields": {"state_transition": 1845, "node_type": "N", "subcondition": null, "parent": 7515}}, {"model": "template.logicnode", "pk": 7512, "fields": {"state_transition": 1845, "node_type": "S", "subcondition": 23, "parent": 7511}}, {"model": "template.logicnode", "pk": 7513, "fields": {"state_transition": 1845, "node_type": "S", "subcondition": 3, "parent": 7515}}, {"model": "template.logicnode", "pk": 7514, "fields": {"state_transition": 1845, "node_type": "S", "subcondition": 20, "parent": 7515}}, {"model": "template.logicnode", "pk": 7515, "fields": {"state_transition": 1845, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7516, "fields": {"state_transition": 1846, "node_type": "N", "subcondition": null, "parent": 7520}}, {"model": "template.logicnode", "pk": 7517, "fields": {"state_transition": 1846, "node_type": "S", "subcondition": 23, "parent": 7516}}, {"model": "template.logicnode", "pk": 7518, "fields": {"state_transition": 1846, "node_type": "S", "subcondition": 3, "parent": 7520}}, {"model": "template.logicnode", "pk": 7519, "fields": {"state_transition": 1846, "node_type": "S", "subcondition": 21, "parent": 7520}}, {"model": "template.logicnode", "pk": 7520, "fields": {"state_transition": 1846, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7521, "fields": {"state_transition": 1847, "node_type": "N", "subcondition": null, "parent": 7525}}, {"model": "template.logicnode", "pk": 7522, "fields": {"state_transition": 1847, "node_type": "S", "subcondition": 23, "parent": 7521}}, {"model": "template.logicnode", "pk": 7523, "fields": {"state_transition": 1847, "node_type": "S", "subcondition": 3, "parent": 7525}}, {"model": "template.logicnode", "pk": 7524, "fields": {"state_transition": 1847, "node_type": "S", "subcondition": 22, "parent": 7525}}, {"model": "template.logicnode", "pk": 7525, "fields": {"state_transition": 1847, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7526, "fields": {"state_transition": 1848, "node_type": "N", "subcondition": null, "parent": 7530}}, {"model": "template.logicnode", "pk": 7527, "fields": {"state_transition": 1848, "node_type": "S", "subcondition": 23, "parent": 7526}}, {"model": "template.logicnode", "pk": 7528, "fields": {"state_transition": 1848, "node_type": "S", "subcondition": 4, "parent": 7530}}, {"model": "template.logicnode", "pk": 7529, "fields": {"state_transition": 1848, "node_type": "S", "subcondition": 19, "parent": 7530}}, {"model": "template.logicnode", "pk": 7530, "fields": {"state_transition": 1848, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7531, "fields": {"state_transition": 1849, "node_type": "N", "subcondition": null, "parent": 7535}}, {"model": "template.logicnode", "pk": 7532, "fields": {"state_transition": 1849, "node_type": "S", "subcondition": 23, "parent": 7531}}, {"model": "template.logicnode", "pk": 7533, "fields": {"state_transition": 1849, "node_type": "S", "subcondition": 4, "parent": 7535}}, {"model": "template.logicnode", "pk": 7534, "fields": {"state_transition": 1849, "node_type": "S", "subcondition": 20, "parent": 7535}}, {"model": "template.logicnode", "pk": 7535, "fields": {"state_transition": 1849, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7536, "fields": {"state_transition": 1850, "node_type": "N", "subcondition": null, "parent": 7540}}, {"model": "template.logicnode", "pk": 7537, "fields": {"state_transition": 1850, "node_type": "S", "subcondition": 23, "parent": 7536}}, {"model": "template.logicnode", "pk": 7538, "fields": {"state_transition": 1850, "node_type": "S", "subcondition": 4, "parent": 7540}}, {"model": "template.logicnode", "pk": 7539, "fields": {"state_transition": 1850, "node_type": "S", "subcondition": 21, "parent": 7540}}, {"model": "template.logicnode", "pk": 7540, "fields": {"state_transition": 1850, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7541, "fields": {"state_transition": 1851, "node_type": "N", "subcondition": null, "parent": 7545}}, {"model": "template.logicnode", "pk": 7542, "fields": {"state_transition": 1851, "node_type": "S", "subcondition": 23, "parent": 7541}}, {"model": "template.logicnode", "pk": 7543, "fields": {"state_transition": 1851, "node_type": "S", "subcondition": 4, "parent": 7545}}, {"model": "template.logicnode", "pk": 7544, "fields": {"state_transition": 1851, "node_type": "S", "subcondition": 22, "parent": 7545}}, {"model": "template.logicnode", "pk": 7545, "fields": {"state_transition": 1851, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7546, "fields": {"state_transition": 1852, "node_type": "N", "subcondition": null, "parent": 7550}}, {"model": "template.logicnode", "pk": 7547, "fields": {"state_transition": 1852, "node_type": "S", "subcondition": 23, "parent": 7546}}, {"model": "template.logicnode", "pk": 7548, "fields": {"state_transition": 1852, "node_type": "S", "subcondition": 5, "parent": 7550}}, {"model": "template.logicnode", "pk": 7549, "fields": {"state_transition": 1852, "node_type": "S", "subcondition": 19, "parent": 7550}}, {"model": "template.logicnode", "pk": 7550, "fields": {"state_transition": 1852, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7551, "fields": {"state_transition": 1853, "node_type": "N", "subcondition": null, "parent": 7555}}, {"model": "template.logicnode", "pk": 7552, "fields": {"state_transition": 1853, "node_type": "S", "subcondition": 23, "parent": 7551}}, {"model": "template.logicnode", "pk": 7553, "fields": {"state_transition": 1853, "node_type": "S", "subcondition": 5, "parent": 7555}}, {"model": "template.logicnode", "pk": 7554, "fields": {"state_transition": 1853, "node_type": "S", "subcondition": 20, "parent": 7555}}, {"model": "template.logicnode", "pk": 7555, "fields": {"state_transition": 1853, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7556, "fields": {"state_transition": 1854, "node_type": "N", "subcondition": null, "parent": 7560}}, {"model": "template.logicnode", "pk": 7557, "fields": {"state_transition": 1854, "node_type": "S", "subcondition": 23, "parent": 7556}}, {"model": "template.logicnode", "pk": 7558, "fields": {"state_transition": 1854, "node_type": "S", "subcondition": 5, "parent": 7560}}, {"model": "template.logicnode", "pk": 7559, "fields": {"state_transition": 1854, "node_type": "S", "subcondition": 21, "parent": 7560}}, {"model": "template.logicnode", "pk": 7560, "fields": {"state_transition": 1854, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7561, "fields": {"state_transition": 1855, "node_type": "N", "subcondition": null, "parent": 7565}}, {"model": "template.logicnode", "pk": 7562, "fields": {"state_transition": 1855, "node_type": "S", "subcondition": 23, "parent": 7561}}, {"model": "template.logicnode", "pk": 7563, "fields": {"state_transition": 1855, "node_type": "S", "subcondition": 5, "parent": 7565}}, {"model": "template.logicnode", "pk": 7564, "fields": {"state_transition": 1855, "node_type": "S", "subcondition": 22, "parent": 7565}}, {"model": "template.logicnode", "pk": 7565, "fields": {"state_transition": 1855, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7566, "fields": {"state_transition": 1856, "node_type": "N", "subcondition": null, "parent": 7570}}, {"model": "template.logicnode", "pk": 7567, "fields": {"state_transition": 1856, "node_type": "S", "subcondition": 23, "parent": 7566}}, {"model": "template.logicnode", "pk": 7568, "fields": {"state_transition": 1856, "node_type": "S", "subcondition": 6, "parent": 7570}}, {"model": "template.logicnode", "pk": 7569, "fields": {"state_transition": 1856, "node_type": "S", "subcondition": 19, "parent": 7570}}, {"model": "template.logicnode", "pk": 7570, "fields": {"state_transition": 1856, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7571, "fields": {"state_transition": 1857, "node_type": "N", "subcondition": null, "parent": 7575}}, {"model": "template.logicnode", "pk": 7572, "fields": {"state_transition": 1857, "node_type": "S", "subcondition": 23, "parent": 7571}}, {"model": "template.logicnode", "pk": 7573, "fields": {"state_transition": 1857, "node_type": "S", "subcondition": 6, "parent": 7575}}, {"model": "template.logicnode", "pk": 7574, "fields": {"state_transition": 1857, "node_type": "S", "subcondition": 20, "parent": 7575}}, {"model": "template.logicnode", "pk": 7575, "fields": {"state_transition": 1857, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7576, "fields": {"state_transition": 1858, "node_type": "N", "subcondition": null, "parent": 7580}}, {"model": "template.logicnode", "pk": 7577, "fields": {"state_transition": 1858, "node_type": "S", "subcondition": 23, "parent": 7576}}, {"model": "template.logicnode", "pk": 7578, "fields": {"state_transition": 1858, "node_type": "S", "subcondition": 6, "parent": 7580}}, {"model": "template.logicnode", "pk": 7579, "fields": {"state_transition": 1858, "node_type": "S", "subcondition": 21, "parent": 7580}}, {"model": "template.logicnode", "pk": 7580, "fields": {"state_transition": 1858, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7581, "fields": {"state_transition": 1859, "node_type": "N", "subcondition": null, "parent": 7585}}, {"model": "template.logicnode", "pk": 7582, "fields": {"state_transition": 1859, "node_type": "S", "subcondition": 23, "parent": 7581}}, {"model": "template.logicnode", "pk": 7583, "fields": {"state_transition": 1859, "node_type": "S", "subcondition": 6, "parent": 7585}}, {"model": "template.logicnode", "pk": 7584, "fields": {"state_transition": 1859, "node_type": "S", "subcondition": 22, "parent": 7585}}, {"model": "template.logicnode", "pk": 7585, "fields": {"state_transition": 1859, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7586, "fields": {"state_transition": 1860, "node_type": "S", "subcondition": 23, "parent": 7589}}, {"model": "template.logicnode", "pk": 7587, "fields": {"state_transition": 1860, "node_type": "S", "subcondition": 3, "parent": 7589}}, {"model": "template.logicnode", "pk": 7588, "fields": {"state_transition": 1860, "node_type": "S", "subcondition": 19, "parent": 7589}}, {"model": "template.logicnode", "pk": 7589, "fields": {"state_transition": 1860, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7590, "fields": {"state_transition": 1861, "node_type": "S", "subcondition": 23, "parent": 7593}}, {"model": "template.logicnode", "pk": 7591, "fields": {"state_transition": 1861, "node_type": "S", "subcondition": 3, "parent": 7593}}, {"model": "template.logicnode", "pk": 7592, "fields": {"state_transition": 1861, "node_type": "S", "subcondition": 20, "parent": 7593}}, {"model": "template.logicnode", "pk": 7593, "fields": {"state_transition": 1861, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7594, "fields": {"state_transition": 1862, "node_type": "S", "subcondition": 23, "parent": 7597}}, {"model": "template.logicnode", "pk": 7595, "fields": {"state_transition": 1862, "node_type": "S", "subcondition": 3, "parent": 7597}}, {"model": "template.logicnode", "pk": 7596, "fields": {"state_transition": 1862, "node_type": "S", "subcondition": 21, "parent": 7597}}, {"model": "template.logicnode", "pk": 7597, "fields": {"state_transition": 1862, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7598, "fields": {"state_transition": 1863, "node_type": "S", "subcondition": 23, "parent": 7601}}, {"model": "template.logicnode", "pk": 7599, "fields": {"state_transition": 1863, "node_type": "S", "subcondition": 3, "parent": 7601}}, {"model": "template.logicnode", "pk": 7600, "fields": {"state_transition": 1863, "node_type": "S", "subcondition": 22, "parent": 7601}}, {"model": "template.logicnode", "pk": 7601, "fields": {"state_transition": 1863, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7602, "fields": {"state_transition": 1864, "node_type": "S", "subcondition": 23, "parent": 7605}}, {"model": "template.logicnode", "pk": 7603, "fields": {"state_transition": 1864, "node_type": "S", "subcondition": 4, "parent": 7605}}, {"model": "template.logicnode", "pk": 7604, "fields": {"state_transition": 1864, "node_type": "S", "subcondition": 19, "parent": 7605}}, {"model": "template.logicnode", "pk": 7605, "fields": {"state_transition": 1864, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7606, "fields": {"state_transition": 1865, "node_type": "S", "subcondition": 23, "parent": 7609}}, {"model": "template.logicnode", "pk": 7607, "fields": {"state_transition": 1865, "node_type": "S", "subcondition": 4, "parent": 7609}}, {"model": "template.logicnode", "pk": 7608, "fields": {"state_transition": 1865, "node_type": "S", "subcondition": 20, "parent": 7609}}, {"model": "template.logicnode", "pk": 7609, "fields": {"state_transition": 1865, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7610, "fields": {"state_transition": 1866, "node_type": "S", "subcondition": 23, "parent": 7613}}, {"model": "template.logicnode", "pk": 7611, "fields": {"state_transition": 1866, "node_type": "S", "subcondition": 4, "parent": 7613}}, {"model": "template.logicnode", "pk": 7612, "fields": {"state_transition": 1866, "node_type": "S", "subcondition": 21, "parent": 7613}}, {"model": "template.logicnode", "pk": 7613, "fields": {"state_transition": 1866, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7614, "fields": {"state_transition": 1867, "node_type": "S", "subcondition": 23, "parent": 7617}}, {"model": "template.logicnode", "pk": 7615, "fields": {"state_transition": 1867, "node_type": "S", "subcondition": 4, "parent": 7617}}, {"model": "template.logicnode", "pk": 7616, "fields": {"state_transition": 1867, "node_type": "S", "subcondition": 22, "parent": 7617}}, {"model": "template.logicnode", "pk": 7617, "fields": {"state_transition": 1867, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7618, "fields": {"state_transition": 1868, "node_type": "S", "subcondition": 23, "parent": 7621}}, {"model": "template.logicnode", "pk": 7619, "fields": {"state_transition": 1868, "node_type": "S", "subcondition": 5, "parent": 7621}}, {"model": "template.logicnode", "pk": 7620, "fields": {"state_transition": 1868, "node_type": "S", "subcondition": 19, "parent": 7621}}, {"model": "template.logicnode", "pk": 7621, "fields": {"state_transition": 1868, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7622, "fields": {"state_transition": 1869, "node_type": "S", "subcondition": 23, "parent": 7625}}, {"model": "template.logicnode", "pk": 7623, "fields": {"state_transition": 1869, "node_type": "S", "subcondition": 5, "parent": 7625}}, {"model": "template.logicnode", "pk": 7624, "fields": {"state_transition": 1869, "node_type": "S", "subcondition": 20, "parent": 7625}}, {"model": "template.logicnode", "pk": 7625, "fields": {"state_transition": 1869, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7626, "fields": {"state_transition": 1870, "node_type": "S", "subcondition": 23, "parent": 7629}}, {"model": "template.logicnode", "pk": 7627, "fields": {"state_transition": 1870, "node_type": "S", "subcondition": 5, "parent": 7629}}, {"model": "template.logicnode", "pk": 7628, "fields": {"state_transition": 1870, "node_type": "S", "subcondition": 21, "parent": 7629}}, {"model": "template.logicnode", "pk": 7629, "fields": {"state_transition": 1870, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7630, "fields": {"state_transition": 1871, "node_type": "S", "subcondition": 23, "parent": 7633}}, {"model": "template.logicnode", "pk": 7631, "fields": {"state_transition": 1871, "node_type": "S", "subcondition": 5, "parent": 7633}}, {"model": "template.logicnode", "pk": 7632, "fields": {"state_transition": 1871, "node_type": "S", "subcondition": 22, "parent": 7633}}, {"model": "template.logicnode", "pk": 7633, "fields": {"state_transition": 1871, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7634, "fields": {"state_transition": 1872, "node_type": "S", "subcondition": 23, "parent": 7637}}, {"model": "template.logicnode", "pk": 7635, "fields": {"state_transition": 1872, "node_type": "S", "subcondition": 6, "parent": 7637}}, {"model": "template.logicnode", "pk": 7636, "fields": {"state_transition": 1872, "node_type": "S", "subcondition": 19, "parent": 7637}}, {"model": "template.logicnode", "pk": 7637, "fields": {"state_transition": 1872, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7638, "fields": {"state_transition": 1873, "node_type": "S", "subcondition": 23, "parent": 7641}}, {"model": "template.logicnode", "pk": 7639, "fields": {"state_transition": 1873, "node_type": "S", "subcondition": 6, "parent": 7641}}, {"model": "template.logicnode", "pk": 7640, "fields": {"state_transition": 1873, "node_type": "S", "subcondition": 20, "parent": 7641}}, {"model": "template.logicnode", "pk": 7641, "fields": {"state_transition": 1873, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7642, "fields": {"state_transition": 1874, "node_type": "S", "subcondition": 23, "parent": 7645}}, {"model": "template.logicnode", "pk": 7643, "fields": {"state_transition": 1874, "node_type": "S", "subcondition": 6, "parent": 7645}}, {"model": "template.logicnode", "pk": 7644, "fields": {"state_transition": 1874, "node_type": "S", "subcondition": 21, "parent": 7645}}, {"model": "template.logicnode", "pk": 7645, "fields": {"state_transition": 1874, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7646, "fields": {"state_transition": 1875, "node_type": "S", "subcondition": 23, "parent": 7649}}, {"model": "template.logicnode", "pk": 7647, "fields": {"state_transition": 1875, "node_type": "S", "subcondition": 6, "parent": 7649}}, {"model": "template.logicnode", "pk": 7648, "fields": {"state_transition": 1875, "node_type": "S", "subcondition": 22, "parent": 7649}}, {"model": "template.logicnode", "pk": 7649, "fields": {"state_transition": 1875, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7650, "fields": {"state_transition": 1876, "node_type": "N", "subcondition": null, "parent": 7654}}, {"model": "template.logicnode", "pk": 7651, "fields": {"state_transition": 1876, "node_type": "S", "subcondition": 23, "parent": 7650}}, {"model": "template.logicnode", "pk": 7652, "fields": {"state_transition": 1876, "node_type": "S", "subcondition": 3, "parent": 7654}}, {"model": "template.logicnode", "pk": 7653, "fields": {"state_transition": 1876, "node_type": "S", "subcondition": 19, "parent": 7654}}, {"model": "template.logicnode", "pk": 7654, "fields": {"state_transition": 1876, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7655, "fields": {"state_transition": 1877, "node_type": "N", "subcondition": null, "parent": 7659}}, {"model": "template.logicnode", "pk": 7656, "fields": {"state_transition": 1877, "node_type": "S", "subcondition": 23, "parent": 7655}}, {"model": "template.logicnode", "pk": 7657, "fields": {"state_transition": 1877, "node_type": "S", "subcondition": 3, "parent": 7659}}, {"model": "template.logicnode", "pk": 7658, "fields": {"state_transition": 1877, "node_type": "S", "subcondition": 20, "parent": 7659}}, {"model": "template.logicnode", "pk": 7659, "fields": {"state_transition": 1877, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7660, "fields": {"state_transition": 1878, "node_type": "N", "subcondition": null, "parent": 7664}}, {"model": "template.logicnode", "pk": 7661, "fields": {"state_transition": 1878, "node_type": "S", "subcondition": 23, "parent": 7660}}, {"model": "template.logicnode", "pk": 7662, "fields": {"state_transition": 1878, "node_type": "S", "subcondition": 3, "parent": 7664}}, {"model": "template.logicnode", "pk": 7663, "fields": {"state_transition": 1878, "node_type": "S", "subcondition": 21, "parent": 7664}}, {"model": "template.logicnode", "pk": 7664, "fields": {"state_transition": 1878, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7665, "fields": {"state_transition": 1879, "node_type": "N", "subcondition": null, "parent": 7669}}, {"model": "template.logicnode", "pk": 7666, "fields": {"state_transition": 1879, "node_type": "S", "subcondition": 23, "parent": 7665}}, {"model": "template.logicnode", "pk": 7667, "fields": {"state_transition": 1879, "node_type": "S", "subcondition": 3, "parent": 7669}}, {"model": "template.logicnode", "pk": 7668, "fields": {"state_transition": 1879, "node_type": "S", "subcondition": 22, "parent": 7669}}, {"model": "template.logicnode", "pk": 7669, "fields": {"state_transition": 1879, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7670, "fields": {"state_transition": 1880, "node_type": "N", "subcondition": null, "parent": 7674}}, {"model": "template.logicnode", "pk": 7671, "fields": {"state_transition": 1880, "node_type": "S", "subcondition": 23, "parent": 7670}}, {"model": "template.logicnode", "pk": 7672, "fields": {"state_transition": 1880, "node_type": "S", "subcondition": 4, "parent": 7674}}, {"model": "template.logicnode", "pk": 7673, "fields": {"state_transition": 1880, "node_type": "S", "subcondition": 19, "parent": 7674}}, {"model": "template.logicnode", "pk": 7674, "fields": {"state_transition": 1880, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7675, "fields": {"state_transition": 1881, "node_type": "N", "subcondition": null, "parent": 7679}}, {"model": "template.logicnode", "pk": 7676, "fields": {"state_transition": 1881, "node_type": "S", "subcondition": 23, "parent": 7675}}, {"model": "template.logicnode", "pk": 7677, "fields": {"state_transition": 1881, "node_type": "S", "subcondition": 4, "parent": 7679}}, {"model": "template.logicnode", "pk": 7678, "fields": {"state_transition": 1881, "node_type": "S", "subcondition": 20, "parent": 7679}}, {"model": "template.logicnode", "pk": 7679, "fields": {"state_transition": 1881, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7680, "fields": {"state_transition": 1882, "node_type": "N", "subcondition": null, "parent": 7684}}, {"model": "template.logicnode", "pk": 7681, "fields": {"state_transition": 1882, "node_type": "S", "subcondition": 23, "parent": 7680}}, {"model": "template.logicnode", "pk": 7682, "fields": {"state_transition": 1882, "node_type": "S", "subcondition": 4, "parent": 7684}}, {"model": "template.logicnode", "pk": 7683, "fields": {"state_transition": 1882, "node_type": "S", "subcondition": 21, "parent": 7684}}, {"model": "template.logicnode", "pk": 7684, "fields": {"state_transition": 1882, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7685, "fields": {"state_transition": 1883, "node_type": "N", "subcondition": null, "parent": 7689}}, {"model": "template.logicnode", "pk": 7686, "fields": {"state_transition": 1883, "node_type": "S", "subcondition": 23, "parent": 7685}}, {"model": "template.logicnode", "pk": 7687, "fields": {"state_transition": 1883, "node_type": "S", "subcondition": 4, "parent": 7689}}, {"model": "template.logicnode", "pk": 7688, "fields": {"state_transition": 1883, "node_type": "S", "subcondition": 22, "parent": 7689}}, {"model": "template.logicnode", "pk": 7689, "fields": {"state_transition": 1883, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7690, "fields": {"state_transition": 1884, "node_type": "N", "subcondition": null, "parent": 7694}}, {"model": "template.logicnode", "pk": 7691, "fields": {"state_transition": 1884, "node_type": "S", "subcondition": 23, "parent": 7690}}, {"model": "template.logicnode", "pk": 7692, "fields": {"state_transition": 1884, "node_type": "S", "subcondition": 5, "parent": 7694}}, {"model": "template.logicnode", "pk": 7693, "fields": {"state_transition": 1884, "node_type": "S", "subcondition": 19, "parent": 7694}}, {"model": "template.logicnode", "pk": 7694, "fields": {"state_transition": 1884, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7695, "fields": {"state_transition": 1885, "node_type": "N", "subcondition": null, "parent": 7699}}, {"model": "template.logicnode", "pk": 7696, "fields": {"state_transition": 1885, "node_type": "S", "subcondition": 23, "parent": 7695}}, {"model": "template.logicnode", "pk": 7697, "fields": {"state_transition": 1885, "node_type": "S", "subcondition": 5, "parent": 7699}}, {"model": "template.logicnode", "pk": 7698, "fields": {"state_transition": 1885, "node_type": "S", "subcondition": 20, "parent": 7699}}, {"model": "template.logicnode", "pk": 7699, "fields": {"state_transition": 1885, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7700, "fields": {"state_transition": 1886, "node_type": "N", "subcondition": null, "parent": 7704}}, {"model": "template.logicnode", "pk": 7701, "fields": {"state_transition": 1886, "node_type": "S", "subcondition": 23, "parent": 7700}}, {"model": "template.logicnode", "pk": 7702, "fields": {"state_transition": 1886, "node_type": "S", "subcondition": 5, "parent": 7704}}, {"model": "template.logicnode", "pk": 7703, "fields": {"state_transition": 1886, "node_type": "S", "subcondition": 21, "parent": 7704}}, {"model": "template.logicnode", "pk": 7704, "fields": {"state_transition": 1886, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7705, "fields": {"state_transition": 1887, "node_type": "N", "subcondition": null, "parent": 7709}}, {"model": "template.logicnode", "pk": 7706, "fields": {"state_transition": 1887, "node_type": "S", "subcondition": 23, "parent": 7705}}, {"model": "template.logicnode", "pk": 7707, "fields": {"state_transition": 1887, "node_type": "S", "subcondition": 5, "parent": 7709}}, {"model": "template.logicnode", "pk": 7708, "fields": {"state_transition": 1887, "node_type": "S", "subcondition": 22, "parent": 7709}}, {"model": "template.logicnode", "pk": 7709, "fields": {"state_transition": 1887, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7710, "fields": {"state_transition": 1888, "node_type": "N", "subcondition": null, "parent": 7714}}, {"model": "template.logicnode", "pk": 7711, "fields": {"state_transition": 1888, "node_type": "S", "subcondition": 23, "parent": 7710}}, {"model": "template.logicnode", "pk": 7712, "fields": {"state_transition": 1888, "node_type": "S", "subcondition": 6, "parent": 7714}}, {"model": "template.logicnode", "pk": 7713, "fields": {"state_transition": 1888, "node_type": "S", "subcondition": 19, "parent": 7714}}, {"model": "template.logicnode", "pk": 7714, "fields": {"state_transition": 1888, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7715, "fields": {"state_transition": 1889, "node_type": "N", "subcondition": null, "parent": 7719}}, {"model": "template.logicnode", "pk": 7716, "fields": {"state_transition": 1889, "node_type": "S", "subcondition": 23, "parent": 7715}}, {"model": "template.logicnode", "pk": 7717, "fields": {"state_transition": 1889, "node_type": "S", "subcondition": 6, "parent": 7719}}, {"model": "template.logicnode", "pk": 7718, "fields": {"state_transition": 1889, "node_type": "S", "subcondition": 20, "parent": 7719}}, {"model": "template.logicnode", "pk": 7719, "fields": {"state_transition": 1889, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7720, "fields": {"state_transition": 1890, "node_type": "N", "subcondition": null, "parent": 7724}}, {"model": "template.logicnode", "pk": 7721, "fields": {"state_transition": 1890, "node_type": "S", "subcondition": 23, "parent": 7720}}, {"model": "template.logicnode", "pk": 7722, "fields": {"state_transition": 1890, "node_type": "S", "subcondition": 6, "parent": 7724}}, {"model": "template.logicnode", "pk": 7723, "fields": {"state_transition": 1890, "node_type": "S", "subcondition": 21, "parent": 7724}}, {"model": "template.logicnode", "pk": 7724, "fields": {"state_transition": 1890, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7725, "fields": {"state_transition": 1891, "node_type": "N", "subcondition": null, "parent": 7729}}, {"model": "template.logicnode", "pk": 7726, "fields": {"state_transition": 1891, "node_type": "S", "subcondition": 23, "parent": 7725}}, {"model": "template.logicnode", "pk": 7727, "fields": {"state_transition": 1891, "node_type": "S", "subcondition": 6, "parent": 7729}}, {"model": "template.logicnode", "pk": 7728, "fields": {"state_transition": 1891, "node_type": "S", "subcondition": 22, "parent": 7729}}, {"model": "template.logicnode", "pk": 7729, "fields": {"state_transition": 1891, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7730, "fields": {"state_transition": 1892, "node_type": "S", "subcondition": 23, "parent": 7733}}, {"model": "template.logicnode", "pk": 7731, "fields": {"state_transition": 1892, "node_type": "S", "subcondition": 3, "parent": 7733}}, {"model": "template.logicnode", "pk": 7732, "fields": {"state_transition": 1892, "node_type": "S", "subcondition": 19, "parent": 7733}}, {"model": "template.logicnode", "pk": 7733, "fields": {"state_transition": 1892, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7734, "fields": {"state_transition": 1893, "node_type": "S", "subcondition": 23, "parent": 7737}}, {"model": "template.logicnode", "pk": 7735, "fields": {"state_transition": 1893, "node_type": "S", "subcondition": 3, "parent": 7737}}, {"model": "template.logicnode", "pk": 7736, "fields": {"state_transition": 1893, "node_type": "S", "subcondition": 20, "parent": 7737}}, {"model": "template.logicnode", "pk": 7737, "fields": {"state_transition": 1893, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7738, "fields": {"state_transition": 1894, "node_type": "S", "subcondition": 23, "parent": 7741}}, {"model": "template.logicnode", "pk": 7739, "fields": {"state_transition": 1894, "node_type": "S", "subcondition": 3, "parent": 7741}}, {"model": "template.logicnode", "pk": 7740, "fields": {"state_transition": 1894, "node_type": "S", "subcondition": 21, "parent": 7741}}, {"model": "template.logicnode", "pk": 7741, "fields": {"state_transition": 1894, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7742, "fields": {"state_transition": 1895, "node_type": "S", "subcondition": 23, "parent": 7745}}, {"model": "template.logicnode", "pk": 7743, "fields": {"state_transition": 1895, "node_type": "S", "subcondition": 3, "parent": 7745}}, {"model": "template.logicnode", "pk": 7744, "fields": {"state_transition": 1895, "node_type": "S", "subcondition": 22, "parent": 7745}}, {"model": "template.logicnode", "pk": 7745, "fields": {"state_transition": 1895, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7746, "fields": {"state_transition": 1896, "node_type": "S", "subcondition": 23, "parent": 7749}}, {"model": "template.logicnode", "pk": 7747, "fields": {"state_transition": 1896, "node_type": "S", "subcondition": 4, "parent": 7749}}, {"model": "template.logicnode", "pk": 7748, "fields": {"state_transition": 1896, "node_type": "S", "subcondition": 19, "parent": 7749}}, {"model": "template.logicnode", "pk": 7749, "fields": {"state_transition": 1896, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7750, "fields": {"state_transition": 1897, "node_type": "S", "subcondition": 23, "parent": 7753}}, {"model": "template.logicnode", "pk": 7751, "fields": {"state_transition": 1897, "node_type": "S", "subcondition": 4, "parent": 7753}}, {"model": "template.logicnode", "pk": 7752, "fields": {"state_transition": 1897, "node_type": "S", "subcondition": 20, "parent": 7753}}, {"model": "template.logicnode", "pk": 7753, "fields": {"state_transition": 1897, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7754, "fields": {"state_transition": 1898, "node_type": "S", "subcondition": 23, "parent": 7757}}, {"model": "template.logicnode", "pk": 7755, "fields": {"state_transition": 1898, "node_type": "S", "subcondition": 4, "parent": 7757}}, {"model": "template.logicnode", "pk": 7756, "fields": {"state_transition": 1898, "node_type": "S", "subcondition": 21, "parent": 7757}}, {"model": "template.logicnode", "pk": 7757, "fields": {"state_transition": 1898, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7758, "fields": {"state_transition": 1899, "node_type": "S", "subcondition": 23, "parent": 7761}}, {"model": "template.logicnode", "pk": 7759, "fields": {"state_transition": 1899, "node_type": "S", "subcondition": 4, "parent": 7761}}, {"model": "template.logicnode", "pk": 7760, "fields": {"state_transition": 1899, "node_type": "S", "subcondition": 22, "parent": 7761}}, {"model": "template.logicnode", "pk": 7761, "fields": {"state_transition": 1899, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7762, "fields": {"state_transition": 1900, "node_type": "S", "subcondition": 23, "parent": 7765}}, {"model": "template.logicnode", "pk": 7763, "fields": {"state_transition": 1900, "node_type": "S", "subcondition": 5, "parent": 7765}}, {"model": "template.logicnode", "pk": 7764, "fields": {"state_transition": 1900, "node_type": "S", "subcondition": 19, "parent": 7765}}, {"model": "template.logicnode", "pk": 7765, "fields": {"state_transition": 1900, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7766, "fields": {"state_transition": 1901, "node_type": "S", "subcondition": 23, "parent": 7769}}, {"model": "template.logicnode", "pk": 7767, "fields": {"state_transition": 1901, "node_type": "S", "subcondition": 5, "parent": 7769}}, {"model": "template.logicnode", "pk": 7768, "fields": {"state_transition": 1901, "node_type": "S", "subcondition": 20, "parent": 7769}}, {"model": "template.logicnode", "pk": 7769, "fields": {"state_transition": 1901, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7770, "fields": {"state_transition": 1902, "node_type": "S", "subcondition": 23, "parent": 7773}}, {"model": "template.logicnode", "pk": 7771, "fields": {"state_transition": 1902, "node_type": "S", "subcondition": 5, "parent": 7773}}, {"model": "template.logicnode", "pk": 7772, "fields": {"state_transition": 1902, "node_type": "S", "subcondition": 21, "parent": 7773}}, {"model": "template.logicnode", "pk": 7773, "fields": {"state_transition": 1902, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7774, "fields": {"state_transition": 1903, "node_type": "S", "subcondition": 23, "parent": 7777}}, {"model": "template.logicnode", "pk": 7775, "fields": {"state_transition": 1903, "node_type": "S", "subcondition": 5, "parent": 7777}}, {"model": "template.logicnode", "pk": 7776, "fields": {"state_transition": 1903, "node_type": "S", "subcondition": 22, "parent": 7777}}, {"model": "template.logicnode", "pk": 7777, "fields": {"state_transition": 1903, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7778, "fields": {"state_transition": 1904, "node_type": "S", "subcondition": 23, "parent": 7781}}, {"model": "template.logicnode", "pk": 7779, "fields": {"state_transition": 1904, "node_type": "S", "subcondition": 6, "parent": 7781}}, {"model": "template.logicnode", "pk": 7780, "fields": {"state_transition": 1904, "node_type": "S", "subcondition": 19, "parent": 7781}}, {"model": "template.logicnode", "pk": 7781, "fields": {"state_transition": 1904, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7782, "fields": {"state_transition": 1905, "node_type": "S", "subcondition": 23, "parent": 7785}}, {"model": "template.logicnode", "pk": 7783, "fields": {"state_transition": 1905, "node_type": "S", "subcondition": 6, "parent": 7785}}, {"model": "template.logicnode", "pk": 7784, "fields": {"state_transition": 1905, "node_type": "S", "subcondition": 20, "parent": 7785}}, {"model": "template.logicnode", "pk": 7785, "fields": {"state_transition": 1905, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7786, "fields": {"state_transition": 1906, "node_type": "S", "subcondition": 23, "parent": 7789}}, {"model": "template.logicnode", "pk": 7787, "fields": {"state_transition": 1906, "node_type": "S", "subcondition": 6, "parent": 7789}}, {"model": "template.logicnode", "pk": 7788, "fields": {"state_transition": 1906, "node_type": "S", "subcondition": 21, "parent": 7789}}, {"model": "template.logicnode", "pk": 7789, "fields": {"state_transition": 1906, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7790, "fields": {"state_transition": 1907, "node_type": "S", "subcondition": 23, "parent": 7793}}, {"model": "template.logicnode", "pk": 7791, "fields": {"state_transition": 1907, "node_type": "S", "subcondition": 6, "parent": 7793}}, {"model": "template.logicnode", "pk": 7792, "fields": {"state_transition": 1907, "node_type": "S", "subcondition": 22, "parent": 7793}}, {"model": "template.logicnode", "pk": 7793, "fields": {"state_transition": 1907, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7794, "fields": {"state_transition": 1908, "node_type": "N", "subcondition": null, "parent": 7798}}, {"model": "template.logicnode", "pk": 7795, "fields": {"state_transition": 1908, "node_type": "S", "subcondition": 23, "parent": 7794}}, {"model": "template.logicnode", "pk": 7796, "fields": {"state_transition": 1908, "node_type": "S", "subcondition": 3, "parent": 7798}}, {"model": "template.logicnode", "pk": 7797, "fields": {"state_transition": 1908, "node_type": "S", "subcondition": 19, "parent": 7798}}, {"model": "template.logicnode", "pk": 7798, "fields": {"state_transition": 1908, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7799, "fields": {"state_transition": 1909, "node_type": "N", "subcondition": null, "parent": 7803}}, {"model": "template.logicnode", "pk": 7800, "fields": {"state_transition": 1909, "node_type": "S", "subcondition": 23, "parent": 7799}}, {"model": "template.logicnode", "pk": 7801, "fields": {"state_transition": 1909, "node_type": "S", "subcondition": 3, "parent": 7803}}, {"model": "template.logicnode", "pk": 7802, "fields": {"state_transition": 1909, "node_type": "S", "subcondition": 20, "parent": 7803}}, {"model": "template.logicnode", "pk": 7803, "fields": {"state_transition": 1909, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7804, "fields": {"state_transition": 1910, "node_type": "N", "subcondition": null, "parent": 7808}}, {"model": "template.logicnode", "pk": 7805, "fields": {"state_transition": 1910, "node_type": "S", "subcondition": 23, "parent": 7804}}, {"model": "template.logicnode", "pk": 7806, "fields": {"state_transition": 1910, "node_type": "S", "subcondition": 3, "parent": 7808}}, {"model": "template.logicnode", "pk": 7807, "fields": {"state_transition": 1910, "node_type": "S", "subcondition": 21, "parent": 7808}}, {"model": "template.logicnode", "pk": 7808, "fields": {"state_transition": 1910, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7809, "fields": {"state_transition": 1911, "node_type": "N", "subcondition": null, "parent": 7813}}, {"model": "template.logicnode", "pk": 7810, "fields": {"state_transition": 1911, "node_type": "S", "subcondition": 23, "parent": 7809}}, {"model": "template.logicnode", "pk": 7811, "fields": {"state_transition": 1911, "node_type": "S", "subcondition": 3, "parent": 7813}}, {"model": "template.logicnode", "pk": 7812, "fields": {"state_transition": 1911, "node_type": "S", "subcondition": 22, "parent": 7813}}, {"model": "template.logicnode", "pk": 7813, "fields": {"state_transition": 1911, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7814, "fields": {"state_transition": 1912, "node_type": "N", "subcondition": null, "parent": 7818}}, {"model": "template.logicnode", "pk": 7815, "fields": {"state_transition": 1912, "node_type": "S", "subcondition": 23, "parent": 7814}}, {"model": "template.logicnode", "pk": 7816, "fields": {"state_transition": 1912, "node_type": "S", "subcondition": 4, "parent": 7818}}, {"model": "template.logicnode", "pk": 7817, "fields": {"state_transition": 1912, "node_type": "S", "subcondition": 19, "parent": 7818}}, {"model": "template.logicnode", "pk": 7818, "fields": {"state_transition": 1912, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7819, "fields": {"state_transition": 1913, "node_type": "N", "subcondition": null, "parent": 7823}}, {"model": "template.logicnode", "pk": 7820, "fields": {"state_transition": 1913, "node_type": "S", "subcondition": 23, "parent": 7819}}, {"model": "template.logicnode", "pk": 7821, "fields": {"state_transition": 1913, "node_type": "S", "subcondition": 4, "parent": 7823}}, {"model": "template.logicnode", "pk": 7822, "fields": {"state_transition": 1913, "node_type": "S", "subcondition": 20, "parent": 7823}}, {"model": "template.logicnode", "pk": 7823, "fields": {"state_transition": 1913, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7824, "fields": {"state_transition": 1914, "node_type": "N", "subcondition": null, "parent": 7828}}, {"model": "template.logicnode", "pk": 7825, "fields": {"state_transition": 1914, "node_type": "S", "subcondition": 23, "parent": 7824}}, {"model": "template.logicnode", "pk": 7826, "fields": {"state_transition": 1914, "node_type": "S", "subcondition": 4, "parent": 7828}}, {"model": "template.logicnode", "pk": 7827, "fields": {"state_transition": 1914, "node_type": "S", "subcondition": 21, "parent": 7828}}, {"model": "template.logicnode", "pk": 7828, "fields": {"state_transition": 1914, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7829, "fields": {"state_transition": 1915, "node_type": "N", "subcondition": null, "parent": 7833}}, {"model": "template.logicnode", "pk": 7830, "fields": {"state_transition": 1915, "node_type": "S", "subcondition": 23, "parent": 7829}}, {"model": "template.logicnode", "pk": 7831, "fields": {"state_transition": 1915, "node_type": "S", "subcondition": 4, "parent": 7833}}, {"model": "template.logicnode", "pk": 7832, "fields": {"state_transition": 1915, "node_type": "S", "subcondition": 22, "parent": 7833}}, {"model": "template.logicnode", "pk": 7833, "fields": {"state_transition": 1915, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7834, "fields": {"state_transition": 1916, "node_type": "N", "subcondition": null, "parent": 7838}}, {"model": "template.logicnode", "pk": 7835, "fields": {"state_transition": 1916, "node_type": "S", "subcondition": 23, "parent": 7834}}, {"model": "template.logicnode", "pk": 7836, "fields": {"state_transition": 1916, "node_type": "S", "subcondition": 5, "parent": 7838}}, {"model": "template.logicnode", "pk": 7837, "fields": {"state_transition": 1916, "node_type": "S", "subcondition": 19, "parent": 7838}}, {"model": "template.logicnode", "pk": 7838, "fields": {"state_transition": 1916, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7839, "fields": {"state_transition": 1917, "node_type": "N", "subcondition": null, "parent": 7843}}, {"model": "template.logicnode", "pk": 7840, "fields": {"state_transition": 1917, "node_type": "S", "subcondition": 23, "parent": 7839}}, {"model": "template.logicnode", "pk": 7841, "fields": {"state_transition": 1917, "node_type": "S", "subcondition": 5, "parent": 7843}}, {"model": "template.logicnode", "pk": 7842, "fields": {"state_transition": 1917, "node_type": "S", "subcondition": 20, "parent": 7843}}, {"model": "template.logicnode", "pk": 7843, "fields": {"state_transition": 1917, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7844, "fields": {"state_transition": 1918, "node_type": "N", "subcondition": null, "parent": 7848}}, {"model": "template.logicnode", "pk": 7845, "fields": {"state_transition": 1918, "node_type": "S", "subcondition": 23, "parent": 7844}}, {"model": "template.logicnode", "pk": 7846, "fields": {"state_transition": 1918, "node_type": "S", "subcondition": 5, "parent": 7848}}, {"model": "template.logicnode", "pk": 7847, "fields": {"state_transition": 1918, "node_type": "S", "subcondition": 21, "parent": 7848}}, {"model": "template.logicnode", "pk": 7848, "fields": {"state_transition": 1918, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7849, "fields": {"state_transition": 1919, "node_type": "N", "subcondition": null, "parent": 7853}}, {"model": "template.logicnode", "pk": 7850, "fields": {"state_transition": 1919, "node_type": "S", "subcondition": 23, "parent": 7849}}, {"model": "template.logicnode", "pk": 7851, "fields": {"state_transition": 1919, "node_type": "S", "subcondition": 5, "parent": 7853}}, {"model": "template.logicnode", "pk": 7852, "fields": {"state_transition": 1919, "node_type": "S", "subcondition": 22, "parent": 7853}}, {"model": "template.logicnode", "pk": 7853, "fields": {"state_transition": 1919, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7854, "fields": {"state_transition": 1920, "node_type": "N", "subcondition": null, "parent": 7858}}, {"model": "template.logicnode", "pk": 7855, "fields": {"state_transition": 1920, "node_type": "S", "subcondition": 23, "parent": 7854}}, {"model": "template.logicnode", "pk": 7856, "fields": {"state_transition": 1920, "node_type": "S", "subcondition": 6, "parent": 7858}}, {"model": "template.logicnode", "pk": 7857, "fields": {"state_transition": 1920, "node_type": "S", "subcondition": 19, "parent": 7858}}, {"model": "template.logicnode", "pk": 7858, "fields": {"state_transition": 1920, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7859, "fields": {"state_transition": 1921, "node_type": "N", "subcondition": null, "parent": 7863}}, {"model": "template.logicnode", "pk": 7860, "fields": {"state_transition": 1921, "node_type": "S", "subcondition": 23, "parent": 7859}}, {"model": "template.logicnode", "pk": 7861, "fields": {"state_transition": 1921, "node_type": "S", "subcondition": 6, "parent": 7863}}, {"model": "template.logicnode", "pk": 7862, "fields": {"state_transition": 1921, "node_type": "S", "subcondition": 20, "parent": 7863}}, {"model": "template.logicnode", "pk": 7863, "fields": {"state_transition": 1921, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7864, "fields": {"state_transition": 1922, "node_type": "N", "subcondition": null, "parent": 7868}}, {"model": "template.logicnode", "pk": 7865, "fields": {"state_transition": 1922, "node_type": "S", "subcondition": 23, "parent": 7864}}, {"model": "template.logicnode", "pk": 7866, "fields": {"state_transition": 1922, "node_type": "S", "subcondition": 6, "parent": 7868}}, {"model": "template.logicnode", "pk": 7867, "fields": {"state_transition": 1922, "node_type": "S", "subcondition": 21, "parent": 7868}}, {"model": "template.logicnode", "pk": 7868, "fields": {"state_transition": 1922, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7869, "fields": {"state_transition": 1923, "node_type": "N", "subcondition": null, "parent": 7873}}, {"model": "template.logicnode", "pk": 7870, "fields": {"state_transition": 1923, "node_type": "S", "subcondition": 23, "parent": 7869}}, {"model": "template.logicnode", "pk": 7871, "fields": {"state_transition": 1923, "node_type": "S", "subcondition": 6, "parent": 7873}}, {"model": "template.logicnode", "pk": 7872, "fields": {"state_transition": 1923, "node_type": "S", "subcondition": 22, "parent": 7873}}, {"model": "template.logicnode", "pk": 7873, "fields": {"state_transition": 1923, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7874, "fields": {"state_transition": 1924, "node_type": "S", "subcondition": 23, "parent": 7877}}, {"model": "template.logicnode", "pk": 7875, "fields": {"state_transition": 1924, "node_type": "S", "subcondition": 3, "parent": 7877}}, {"model": "template.logicnode", "pk": 7876, "fields": {"state_transition": 1924, "node_type": "S", "subcondition": 19, "parent": 7877}}, {"model": "template.logicnode", "pk": 7877, "fields": {"state_transition": 1924, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7878, "fields": {"state_transition": 1925, "node_type": "S", "subcondition": 23, "parent": 7881}}, {"model": "template.logicnode", "pk": 7879, "fields": {"state_transition": 1925, "node_type": "S", "subcondition": 3, "parent": 7881}}, {"model": "template.logicnode", "pk": 7880, "fields": {"state_transition": 1925, "node_type": "S", "subcondition": 20, "parent": 7881}}, {"model": "template.logicnode", "pk": 7881, "fields": {"state_transition": 1925, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7882, "fields": {"state_transition": 1926, "node_type": "S", "subcondition": 23, "parent": 7885}}, {"model": "template.logicnode", "pk": 7883, "fields": {"state_transition": 1926, "node_type": "S", "subcondition": 3, "parent": 7885}}, {"model": "template.logicnode", "pk": 7884, "fields": {"state_transition": 1926, "node_type": "S", "subcondition": 21, "parent": 7885}}, {"model": "template.logicnode", "pk": 7885, "fields": {"state_transition": 1926, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7886, "fields": {"state_transition": 1927, "node_type": "S", "subcondition": 23, "parent": 7889}}, {"model": "template.logicnode", "pk": 7887, "fields": {"state_transition": 1927, "node_type": "S", "subcondition": 3, "parent": 7889}}, {"model": "template.logicnode", "pk": 7888, "fields": {"state_transition": 1927, "node_type": "S", "subcondition": 22, "parent": 7889}}, {"model": "template.logicnode", "pk": 7889, "fields": {"state_transition": 1927, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7890, "fields": {"state_transition": 1928, "node_type": "S", "subcondition": 23, "parent": 7893}}, {"model": "template.logicnode", "pk": 7891, "fields": {"state_transition": 1928, "node_type": "S", "subcondition": 4, "parent": 7893}}, {"model": "template.logicnode", "pk": 7892, "fields": {"state_transition": 1928, "node_type": "S", "subcondition": 19, "parent": 7893}}, {"model": "template.logicnode", "pk": 7893, "fields": {"state_transition": 1928, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7894, "fields": {"state_transition": 1929, "node_type": "S", "subcondition": 23, "parent": 7897}}, {"model": "template.logicnode", "pk": 7895, "fields": {"state_transition": 1929, "node_type": "S", "subcondition": 4, "parent": 7897}}, {"model": "template.logicnode", "pk": 7896, "fields": {"state_transition": 1929, "node_type": "S", "subcondition": 20, "parent": 7897}}, {"model": "template.logicnode", "pk": 7897, "fields": {"state_transition": 1929, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7898, "fields": {"state_transition": 1930, "node_type": "S", "subcondition": 23, "parent": 7901}}, {"model": "template.logicnode", "pk": 7899, "fields": {"state_transition": 1930, "node_type": "S", "subcondition": 4, "parent": 7901}}, {"model": "template.logicnode", "pk": 7900, "fields": {"state_transition": 1930, "node_type": "S", "subcondition": 21, "parent": 7901}}, {"model": "template.logicnode", "pk": 7901, "fields": {"state_transition": 1930, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7902, "fields": {"state_transition": 1931, "node_type": "S", "subcondition": 23, "parent": 7905}}, {"model": "template.logicnode", "pk": 7903, "fields": {"state_transition": 1931, "node_type": "S", "subcondition": 4, "parent": 7905}}, {"model": "template.logicnode", "pk": 7904, "fields": {"state_transition": 1931, "node_type": "S", "subcondition": 22, "parent": 7905}}, {"model": "template.logicnode", "pk": 7905, "fields": {"state_transition": 1931, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7906, "fields": {"state_transition": 1932, "node_type": "S", "subcondition": 23, "parent": 7909}}, {"model": "template.logicnode", "pk": 7907, "fields": {"state_transition": 1932, "node_type": "S", "subcondition": 5, "parent": 7909}}, {"model": "template.logicnode", "pk": 7908, "fields": {"state_transition": 1932, "node_type": "S", "subcondition": 19, "parent": 7909}}, {"model": "template.logicnode", "pk": 7909, "fields": {"state_transition": 1932, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7910, "fields": {"state_transition": 1933, "node_type": "S", "subcondition": 23, "parent": 7913}}, {"model": "template.logicnode", "pk": 7911, "fields": {"state_transition": 1933, "node_type": "S", "subcondition": 5, "parent": 7913}}, {"model": "template.logicnode", "pk": 7912, "fields": {"state_transition": 1933, "node_type": "S", "subcondition": 20, "parent": 7913}}, {"model": "template.logicnode", "pk": 7913, "fields": {"state_transition": 1933, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7914, "fields": {"state_transition": 1934, "node_type": "S", "subcondition": 23, "parent": 7917}}, {"model": "template.logicnode", "pk": 7915, "fields": {"state_transition": 1934, "node_type": "S", "subcondition": 5, "parent": 7917}}, {"model": "template.logicnode", "pk": 7916, "fields": {"state_transition": 1934, "node_type": "S", "subcondition": 21, "parent": 7917}}, {"model": "template.logicnode", "pk": 7917, "fields": {"state_transition": 1934, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7918, "fields": {"state_transition": 1935, "node_type": "S", "subcondition": 23, "parent": 7921}}, {"model": "template.logicnode", "pk": 7919, "fields": {"state_transition": 1935, "node_type": "S", "subcondition": 5, "parent": 7921}}, {"model": "template.logicnode", "pk": 7920, "fields": {"state_transition": 1935, "node_type": "S", "subcondition": 22, "parent": 7921}}, {"model": "template.logicnode", "pk": 7921, "fields": {"state_transition": 1935, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7922, "fields": {"state_transition": 1936, "node_type": "S", "subcondition": 23, "parent": 7925}}, {"model": "template.logicnode", "pk": 7923, "fields": {"state_transition": 1936, "node_type": "S", "subcondition": 6, "parent": 7925}}, {"model": "template.logicnode", "pk": 7924, "fields": {"state_transition": 1936, "node_type": "S", "subcondition": 19, "parent": 7925}}, {"model": "template.logicnode", "pk": 7925, "fields": {"state_transition": 1936, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7926, "fields": {"state_transition": 1937, "node_type": "S", "subcondition": 23, "parent": 7929}}, {"model": "template.logicnode", "pk": 7927, "fields": {"state_transition": 1937, "node_type": "S", "subcondition": 6, "parent": 7929}}, {"model": "template.logicnode", "pk": 7928, "fields": {"state_transition": 1937, "node_type": "S", "subcondition": 20, "parent": 7929}}, {"model": "template.logicnode", "pk": 7929, "fields": {"state_transition": 1937, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7930, "fields": {"state_transition": 1938, "node_type": "S", "subcondition": 23, "parent": 7933}}, {"model": "template.logicnode", "pk": 7931, "fields": {"state_transition": 1938, "node_type": "S", "subcondition": 6, "parent": 7933}}, {"model": "template.logicnode", "pk": 7932, "fields": {"state_transition": 1938, "node_type": "S", "subcondition": 21, "parent": 7933}}, {"model": "template.logicnode", "pk": 7933, "fields": {"state_transition": 1938, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7934, "fields": {"state_transition": 1939, "node_type": "S", "subcondition": 23, "parent": 7937}}, {"model": "template.logicnode", "pk": 7935, "fields": {"state_transition": 1939, "node_type": "S", "subcondition": 6, "parent": 7937}}, {"model": "template.logicnode", "pk": 7936, "fields": {"state_transition": 1939, "node_type": "S", "subcondition": 22, "parent": 7937}}, {"model": "template.logicnode", "pk": 7937, "fields": {"state_transition": 1939, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7938, "fields": {"state_transition": 1940, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7939, "fields": {"state_transition": 1941, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7940, "fields": {"state_transition": 1942, "node_type": "N", "subcondition": null, "parent": 7946}}, {"model": "template.logicnode", "pk": 7941, "fields": {"state_transition": 1942, "node_type": "S", "subcondition": 23, "parent": 7940}}, {"model": "template.logicnode", "pk": 7942, "fields": {"state_transition": 1942, "node_type": "S", "subcondition": 11, "parent": 7946}}, {"model": "template.logicnode", "pk": 7943, "fields": {"state_transition": 1942, "node_type": "S", "subcondition": 13, "parent": 7946}}, {"model": "template.logicnode", "pk": 7944, "fields": {"state_transition": 1942, "node_type": "S", "subcondition": 17, "parent": 7946}}, {"model": "template.logicnode", "pk": 7945, "fields": {"state_transition": 1942, "node_type": "S", "subcondition": 25, "parent": 7946}}, {"model": "template.logicnode", "pk": 7946, "fields": {"state_transition": 1942, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7947, "fields": {"state_transition": 1943, "node_type": "N", "subcondition": null, "parent": 7952}}, {"model": "template.logicnode", "pk": 7948, "fields": {"state_transition": 1943, "node_type": "S", "subcondition": 23, "parent": 7947}}, {"model": "template.logicnode", "pk": 7949, "fields": {"state_transition": 1943, "node_type": "S", "subcondition": 11, "parent": 7952}}, {"model": "template.logicnode", "pk": 7950, "fields": {"state_transition": 1943, "node_type": "S", "subcondition": 13, "parent": 7952}}, {"model": "template.logicnode", "pk": 7951, "fields": {"state_transition": 1943, "node_type": "S", "subcondition": 17, "parent": 7952}}, {"model": "template.logicnode", "pk": 7952, "fields": {"state_transition": 1943, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7953, "fields": {"state_transition": 1944, "node_type": "N", "subcondition": null, "parent": 7958}}, {"model": "template.logicnode", "pk": 7954, "fields": {"state_transition": 1944, "node_type": "S", "subcondition": 23, "parent": 7953}}, {"model": "template.logicnode", "pk": 7955, "fields": {"state_transition": 1944, "node_type": "S", "subcondition": 11, "parent": 7958}}, {"model": "template.logicnode", "pk": 7956, "fields": {"state_transition": 1944, "node_type": "S", "subcondition": 13, "parent": 7958}}, {"model": "template.logicnode", "pk": 7957, "fields": {"state_transition": 1944, "node_type": "S", "subcondition": 25, "parent": 7958}}, {"model": "template.logicnode", "pk": 7958, "fields": {"state_transition": 1944, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7959, "fields": {"state_transition": 1945, "node_type": "N", "subcondition": null, "parent": 7963}}, {"model": "template.logicnode", "pk": 7960, "fields": {"state_transition": 1945, "node_type": "S", "subcondition": 23, "parent": 7959}}, {"model": "template.logicnode", "pk": 7961, "fields": {"state_transition": 1945, "node_type": "S", "subcondition": 11, "parent": 7963}}, {"model": "template.logicnode", "pk": 7962, "fields": {"state_transition": 1945, "node_type": "S", "subcondition": 13, "parent": 7963}}, {"model": "template.logicnode", "pk": 7963, "fields": {"state_transition": 1945, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7964, "fields": {"state_transition": 1946, "node_type": "N", "subcondition": null, "parent": 7969}}, {"model": "template.logicnode", "pk": 7965, "fields": {"state_transition": 1946, "node_type": "S", "subcondition": 23, "parent": 7964}}, {"model": "template.logicnode", "pk": 7966, "fields": {"state_transition": 1946, "node_type": "S", "subcondition": 11, "parent": 7969}}, {"model": "template.logicnode", "pk": 7967, "fields": {"state_transition": 1946, "node_type": "S", "subcondition": 17, "parent": 7969}}, {"model": "template.logicnode", "pk": 7968, "fields": {"state_transition": 1946, "node_type": "S", "subcondition": 25, "parent": 7969}}, {"model": "template.logicnode", "pk": 7969, "fields": {"state_transition": 1946, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7970, "fields": {"state_transition": 1947, "node_type": "N", "subcondition": null, "parent": 7974}}, {"model": "template.logicnode", "pk": 7971, "fields": {"state_transition": 1947, "node_type": "S", "subcondition": 23, "parent": 7970}}, {"model": "template.logicnode", "pk": 7972, "fields": {"state_transition": 1947, "node_type": "S", "subcondition": 11, "parent": 7974}}, {"model": "template.logicnode", "pk": 7973, "fields": {"state_transition": 1947, "node_type": "S", "subcondition": 17, "parent": 7974}}, {"model": "template.logicnode", "pk": 7974, "fields": {"state_transition": 1947, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7975, "fields": {"state_transition": 1948, "node_type": "N", "subcondition": null, "parent": 7979}}, {"model": "template.logicnode", "pk": 7976, "fields": {"state_transition": 1948, "node_type": "S", "subcondition": 23, "parent": 7975}}, {"model": "template.logicnode", "pk": 7977, "fields": {"state_transition": 1948, "node_type": "S", "subcondition": 11, "parent": 7979}}, {"model": "template.logicnode", "pk": 7978, "fields": {"state_transition": 1948, "node_type": "S", "subcondition": 25, "parent": 7979}}, {"model": "template.logicnode", "pk": 7979, "fields": {"state_transition": 1948, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7980, "fields": {"state_transition": 1949, "node_type": "N", "subcondition": null, "parent": 7983}}, {"model": "template.logicnode", "pk": 7981, "fields": {"state_transition": 1949, "node_type": "S", "subcondition": 23, "parent": 7980}}, {"model": "template.logicnode", "pk": 7982, "fields": {"state_transition": 1949, "node_type": "S", "subcondition": 11, "parent": 7983}}, {"model": "template.logicnode", "pk": 7983, "fields": {"state_transition": 1949, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7984, "fields": {"state_transition": 1950, "node_type": "N", "subcondition": null, "parent": 7989}}, {"model": "template.logicnode", "pk": 7985, "fields": {"state_transition": 1950, "node_type": "S", "subcondition": 23, "parent": 7984}}, {"model": "template.logicnode", "pk": 7986, "fields": {"state_transition": 1950, "node_type": "S", "subcondition": 13, "parent": 7989}}, {"model": "template.logicnode", "pk": 7987, "fields": {"state_transition": 1950, "node_type": "S", "subcondition": 17, "parent": 7989}}, {"model": "template.logicnode", "pk": 7988, "fields": {"state_transition": 1950, "node_type": "S", "subcondition": 25, "parent": 7989}}, {"model": "template.logicnode", "pk": 7989, "fields": {"state_transition": 1950, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7990, "fields": {"state_transition": 1951, "node_type": "N", "subcondition": null, "parent": 7994}}, {"model": "template.logicnode", "pk": 7991, "fields": {"state_transition": 1951, "node_type": "S", "subcondition": 23, "parent": 7990}}, {"model": "template.logicnode", "pk": 7992, "fields": {"state_transition": 1951, "node_type": "S", "subcondition": 13, "parent": 7994}}, {"model": "template.logicnode", "pk": 7993, "fields": {"state_transition": 1951, "node_type": "S", "subcondition": 17, "parent": 7994}}, {"model": "template.logicnode", "pk": 7994, "fields": {"state_transition": 1951, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7995, "fields": {"state_transition": 1952, "node_type": "N", "subcondition": null, "parent": 7999}}, {"model": "template.logicnode", "pk": 7996, "fields": {"state_transition": 1952, "node_type": "S", "subcondition": 23, "parent": 7995}}, {"model": "template.logicnode", "pk": 7997, "fields": {"state_transition": 1952, "node_type": "S", "subcondition": 13, "parent": 7999}}, {"model": "template.logicnode", "pk": 7998, "fields": {"state_transition": 1952, "node_type": "S", "subcondition": 25, "parent": 7999}}, {"model": "template.logicnode", "pk": 7999, "fields": {"state_transition": 1952, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8000, "fields": {"state_transition": 1953, "node_type": "N", "subcondition": null, "parent": 8003}}, {"model": "template.logicnode", "pk": 8001, "fields": {"state_transition": 1953, "node_type": "S", "subcondition": 23, "parent": 8000}}, {"model": "template.logicnode", "pk": 8002, "fields": {"state_transition": 1953, "node_type": "S", "subcondition": 13, "parent": 8003}}, {"model": "template.logicnode", "pk": 8003, "fields": {"state_transition": 1953, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8004, "fields": {"state_transition": 1954, "node_type": "N", "subcondition": null, "parent": 8008}}, {"model": "template.logicnode", "pk": 8005, "fields": {"state_transition": 1954, "node_type": "S", "subcondition": 23, "parent": 8004}}, {"model": "template.logicnode", "pk": 8006, "fields": {"state_transition": 1954, "node_type": "S", "subcondition": 17, "parent": 8008}}, {"model": "template.logicnode", "pk": 8007, "fields": {"state_transition": 1954, "node_type": "S", "subcondition": 25, "parent": 8008}}, {"model": "template.logicnode", "pk": 8008, "fields": {"state_transition": 1954, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8009, "fields": {"state_transition": 1955, "node_type": "N", "subcondition": null, "parent": 8012}}, {"model": "template.logicnode", "pk": 8010, "fields": {"state_transition": 1955, "node_type": "S", "subcondition": 23, "parent": 8009}}, {"model": "template.logicnode", "pk": 8011, "fields": {"state_transition": 1955, "node_type": "S", "subcondition": 17, "parent": 8012}}, {"model": "template.logicnode", "pk": 8012, "fields": {"state_transition": 1955, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8013, "fields": {"state_transition": 1956, "node_type": "N", "subcondition": null, "parent": 8016}}, {"model": "template.logicnode", "pk": 8014, "fields": {"state_transition": 1956, "node_type": "S", "subcondition": 23, "parent": 8013}}, {"model": "template.logicnode", "pk": 8015, "fields": {"state_transition": 1956, "node_type": "S", "subcondition": 25, "parent": 8016}}, {"model": "template.logicnode", "pk": 8016, "fields": {"state_transition": 1956, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8017, "fields": {"state_transition": 1957, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8018, "fields": {"state_transition": 1957, "node_type": "S", "subcondition": 23, "parent": 8017}}, {"model": "template.logicnode", "pk": 8019, "fields": {"state_transition": 1958, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8020, "fields": {"state_transition": 1959, "node_type": "N", "subcondition": null, "parent": 8026}}, {"model": "template.logicnode", "pk": 8021, "fields": {"state_transition": 1959, "node_type": "S", "subcondition": 23, "parent": 8020}}, {"model": "template.logicnode", "pk": 8022, "fields": {"state_transition": 1959, "node_type": "S", "subcondition": 11, "parent": 8026}}, {"model": "template.logicnode", "pk": 8023, "fields": {"state_transition": 1959, "node_type": "S", "subcondition": 13, "parent": 8026}}, {"model": "template.logicnode", "pk": 8024, "fields": {"state_transition": 1959, "node_type": "S", "subcondition": 17, "parent": 8026}}, {"model": "template.logicnode", "pk": 8025, "fields": {"state_transition": 1959, "node_type": "S", "subcondition": 25, "parent": 8026}}, {"model": "template.logicnode", "pk": 8026, "fields": {"state_transition": 1959, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8027, "fields": {"state_transition": 1960, "node_type": "N", "subcondition": null, "parent": 8032}}, {"model": "template.logicnode", "pk": 8028, "fields": {"state_transition": 1960, "node_type": "S", "subcondition": 23, "parent": 8027}}, {"model": "template.logicnode", "pk": 8029, "fields": {"state_transition": 1960, "node_type": "S", "subcondition": 11, "parent": 8032}}, {"model": "template.logicnode", "pk": 8030, "fields": {"state_transition": 1960, "node_type": "S", "subcondition": 13, "parent": 8032}}, {"model": "template.logicnode", "pk": 8031, "fields": {"state_transition": 1960, "node_type": "S", "subcondition": 17, "parent": 8032}}, {"model": "template.logicnode", "pk": 8032, "fields": {"state_transition": 1960, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8033, "fields": {"state_transition": 1961, "node_type": "N", "subcondition": null, "parent": 8038}}, {"model": "template.logicnode", "pk": 8034, "fields": {"state_transition": 1961, "node_type": "S", "subcondition": 23, "parent": 8033}}, {"model": "template.logicnode", "pk": 8035, "fields": {"state_transition": 1961, "node_type": "S", "subcondition": 11, "parent": 8038}}, {"model": "template.logicnode", "pk": 8036, "fields": {"state_transition": 1961, "node_type": "S", "subcondition": 13, "parent": 8038}}, {"model": "template.logicnode", "pk": 8037, "fields": {"state_transition": 1961, "node_type": "S", "subcondition": 25, "parent": 8038}}, {"model": "template.logicnode", "pk": 8038, "fields": {"state_transition": 1961, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8039, "fields": {"state_transition": 1962, "node_type": "N", "subcondition": null, "parent": 8043}}, {"model": "template.logicnode", "pk": 8040, "fields": {"state_transition": 1962, "node_type": "S", "subcondition": 23, "parent": 8039}}, {"model": "template.logicnode", "pk": 8041, "fields": {"state_transition": 1962, "node_type": "S", "subcondition": 11, "parent": 8043}}, {"model": "template.logicnode", "pk": 8042, "fields": {"state_transition": 1962, "node_type": "S", "subcondition": 13, "parent": 8043}}, {"model": "template.logicnode", "pk": 8043, "fields": {"state_transition": 1962, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8044, "fields": {"state_transition": 1963, "node_type": "N", "subcondition": null, "parent": 8049}}, {"model": "template.logicnode", "pk": 8045, "fields": {"state_transition": 1963, "node_type": "S", "subcondition": 23, "parent": 8044}}, {"model": "template.logicnode", "pk": 8046, "fields": {"state_transition": 1963, "node_type": "S", "subcondition": 11, "parent": 8049}}, {"model": "template.logicnode", "pk": 8047, "fields": {"state_transition": 1963, "node_type": "S", "subcondition": 17, "parent": 8049}}, {"model": "template.logicnode", "pk": 8048, "fields": {"state_transition": 1963, "node_type": "S", "subcondition": 25, "parent": 8049}}, {"model": "template.logicnode", "pk": 8049, "fields": {"state_transition": 1963, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8050, "fields": {"state_transition": 1964, "node_type": "N", "subcondition": null, "parent": 8054}}, {"model": "template.logicnode", "pk": 8051, "fields": {"state_transition": 1964, "node_type": "S", "subcondition": 23, "parent": 8050}}, {"model": "template.logicnode", "pk": 8052, "fields": {"state_transition": 1964, "node_type": "S", "subcondition": 11, "parent": 8054}}, {"model": "template.logicnode", "pk": 8053, "fields": {"state_transition": 1964, "node_type": "S", "subcondition": 17, "parent": 8054}}, {"model": "template.logicnode", "pk": 8054, "fields": {"state_transition": 1964, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8055, "fields": {"state_transition": 1965, "node_type": "N", "subcondition": null, "parent": 8059}}, {"model": "template.logicnode", "pk": 8056, "fields": {"state_transition": 1965, "node_type": "S", "subcondition": 23, "parent": 8055}}, {"model": "template.logicnode", "pk": 8057, "fields": {"state_transition": 1965, "node_type": "S", "subcondition": 11, "parent": 8059}}, {"model": "template.logicnode", "pk": 8058, "fields": {"state_transition": 1965, "node_type": "S", "subcondition": 25, "parent": 8059}}, {"model": "template.logicnode", "pk": 8059, "fields": {"state_transition": 1965, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8060, "fields": {"state_transition": 1966, "node_type": "N", "subcondition": null, "parent": 8063}}, {"model": "template.logicnode", "pk": 8061, "fields": {"state_transition": 1966, "node_type": "S", "subcondition": 23, "parent": 8060}}, {"model": "template.logicnode", "pk": 8062, "fields": {"state_transition": 1966, "node_type": "S", "subcondition": 11, "parent": 8063}}, {"model": "template.logicnode", "pk": 8063, "fields": {"state_transition": 1966, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8064, "fields": {"state_transition": 1967, "node_type": "N", "subcondition": null, "parent": 8069}}, {"model": "template.logicnode", "pk": 8065, "fields": {"state_transition": 1967, "node_type": "S", "subcondition": 23, "parent": 8064}}, {"model": "template.logicnode", "pk": 8066, "fields": {"state_transition": 1967, "node_type": "S", "subcondition": 13, "parent": 8069}}, {"model": "template.logicnode", "pk": 8067, "fields": {"state_transition": 1967, "node_type": "S", "subcondition": 17, "parent": 8069}}, {"model": "template.logicnode", "pk": 8068, "fields": {"state_transition": 1967, "node_type": "S", "subcondition": 25, "parent": 8069}}, {"model": "template.logicnode", "pk": 8069, "fields": {"state_transition": 1967, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8070, "fields": {"state_transition": 1968, "node_type": "N", "subcondition": null, "parent": 8074}}, {"model": "template.logicnode", "pk": 8071, "fields": {"state_transition": 1968, "node_type": "S", "subcondition": 23, "parent": 8070}}, {"model": "template.logicnode", "pk": 8072, "fields": {"state_transition": 1968, "node_type": "S", "subcondition": 13, "parent": 8074}}, {"model": "template.logicnode", "pk": 8073, "fields": {"state_transition": 1968, "node_type": "S", "subcondition": 17, "parent": 8074}}, {"model": "template.logicnode", "pk": 8074, "fields": {"state_transition": 1968, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8075, "fields": {"state_transition": 1969, "node_type": "N", "subcondition": null, "parent": 8079}}, {"model": "template.logicnode", "pk": 8076, "fields": {"state_transition": 1969, "node_type": "S", "subcondition": 23, "parent": 8075}}, {"model": "template.logicnode", "pk": 8077, "fields": {"state_transition": 1969, "node_type": "S", "subcondition": 13, "parent": 8079}}, {"model": "template.logicnode", "pk": 8078, "fields": {"state_transition": 1969, "node_type": "S", "subcondition": 25, "parent": 8079}}, {"model": "template.logicnode", "pk": 8079, "fields": {"state_transition": 1969, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8080, "fields": {"state_transition": 1970, "node_type": "N", "subcondition": null, "parent": 8083}}, {"model": "template.logicnode", "pk": 8081, "fields": {"state_transition": 1970, "node_type": "S", "subcondition": 23, "parent": 8080}}, {"model": "template.logicnode", "pk": 8082, "fields": {"state_transition": 1970, "node_type": "S", "subcondition": 13, "parent": 8083}}, {"model": "template.logicnode", "pk": 8083, "fields": {"state_transition": 1970, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8084, "fields": {"state_transition": 1971, "node_type": "N", "subcondition": null, "parent": 8088}}, {"model": "template.logicnode", "pk": 8085, "fields": {"state_transition": 1971, "node_type": "S", "subcondition": 23, "parent": 8084}}, {"model": "template.logicnode", "pk": 8086, "fields": {"state_transition": 1971, "node_type": "S", "subcondition": 17, "parent": 8088}}, {"model": "template.logicnode", "pk": 8087, "fields": {"state_transition": 1971, "node_type": "S", "subcondition": 25, "parent": 8088}}, {"model": "template.logicnode", "pk": 8088, "fields": {"state_transition": 1971, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8089, "fields": {"state_transition": 1972, "node_type": "N", "subcondition": null, "parent": 8092}}, {"model": "template.logicnode", "pk": 8090, "fields": {"state_transition": 1972, "node_type": "S", "subcondition": 23, "parent": 8089}}, {"model": "template.logicnode", "pk": 8091, "fields": {"state_transition": 1972, "node_type": "S", "subcondition": 17, "parent": 8092}}, {"model": "template.logicnode", "pk": 8092, "fields": {"state_transition": 1972, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8093, "fields": {"state_transition": 1973, "node_type": "N", "subcondition": null, "parent": 8096}}, {"model": "template.logicnode", "pk": 8094, "fields": {"state_transition": 1973, "node_type": "S", "subcondition": 23, "parent": 8093}}, {"model": "template.logicnode", "pk": 8095, "fields": {"state_transition": 1973, "node_type": "S", "subcondition": 25, "parent": 8096}}, {"model": "template.logicnode", "pk": 8096, "fields": {"state_transition": 1973, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8097, "fields": {"state_transition": 1974, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8098, "fields": {"state_transition": 1974, "node_type": "S", "subcondition": 23, "parent": 8097}}, {"model": "template.logicnode", "pk": 8099, "fields": {"state_transition": 1975, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8100, "fields": {"state_transition": 1976, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8101, "fields": {"state_transition": 1977, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8102, "fields": {"state_transition": 1978, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8103, "fields": {"state_transition": 1979, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8104, "fields": {"state_transition": 1980, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8105, "fields": {"state_transition": 1981, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8106, "fields": {"state_transition": 1982, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8107, "fields": {"state_transition": 1983, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8108, "fields": {"state_transition": 1984, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8109, "fields": {"state_transition": 1985, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8110, "fields": {"state_transition": 1986, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8111, "fields": {"state_transition": 1987, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8112, "fields": {"state_transition": 1988, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8113, "fields": {"state_transition": 1989, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8114, "fields": {"state_transition": 1990, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8115, "fields": {"state_transition": 1990, "node_type": "S", "subcondition": 23, "parent": 8114}}, {"model": "template.logicnode", "pk": 8116, "fields": {"state_transition": 1991, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8117, "fields": {"state_transition": 1992, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8118, "fields": {"state_transition": 1992, "node_type": "S", "subcondition": 23, "parent": 8117}}, {"model": "template.logicnode", "pk": 8119, "fields": {"state_transition": 1993, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8120, "fields": {"state_transition": 1994, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8121, "fields": {"state_transition": 1994, "node_type": "S", "subcondition": 23, "parent": 8120}}, {"model": "template.logicnode", "pk": 8122, "fields": {"state_transition": 1995, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8123, "fields": {"state_transition": 1996, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8124, "fields": {"state_transition": 1996, "node_type": "S", "subcondition": 23, "parent": 8123}}, {"model": "template.logicnode", "pk": 8125, "fields": {"state_transition": 1997, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8126, "fields": {"state_transition": 1998, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8127, "fields": {"state_transition": 1998, "node_type": "S", "subcondition": 23, "parent": 8126}}, {"model": "template.logicnode", "pk": 8128, "fields": {"state_transition": 1999, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8129, "fields": {"state_transition": 2000, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8130, "fields": {"state_transition": 2000, "node_type": "S", "subcondition": 23, "parent": 8129}}, {"model": "template.logicnode", "pk": 8131, "fields": {"state_transition": 2001, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8132, "fields": {"state_transition": 2002, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8133, "fields": {"state_transition": 2002, "node_type": "S", "subcondition": 23, "parent": 8132}}, {"model": "template.logicnode", "pk": 8134, "fields": {"state_transition": 2003, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8135, "fields": {"state_transition": 2004, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8136, "fields": {"state_transition": 2004, "node_type": "S", "subcondition": 23, "parent": 8135}}, {"model": "template.logicnode", "pk": 8137, "fields": {"state_transition": 2005, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8138, "fields": {"state_transition": 2006, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8139, "fields": {"state_transition": 2006, "node_type": "S", "subcondition": 23, "parent": 8138}}, {"model": "template.logicnode", "pk": 8140, "fields": {"state_transition": 2007, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8141, "fields": {"state_transition": 2008, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8142, "fields": {"state_transition": 2008, "node_type": "S", "subcondition": 23, "parent": 8141}}, {"model": "template.logicnode", "pk": 8143, "fields": {"state_transition": 2009, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8144, "fields": {"state_transition": 2010, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8145, "fields": {"state_transition": 2010, "node_type": "S", "subcondition": 23, "parent": 8144}}, {"model": "template.logicnode", "pk": 8146, "fields": {"state_transition": 2011, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8147, "fields": {"state_transition": 2012, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8148, "fields": {"state_transition": 2012, "node_type": "S", "subcondition": 23, "parent": 8147}}, {"model": "template.logicnode", "pk": 8149, "fields": {"state_transition": 2013, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8150, "fields": {"state_transition": 2014, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8151, "fields": {"state_transition": 2014, "node_type": "S", "subcondition": 23, "parent": 8150}}, {"model": "template.logicnode", "pk": 8152, "fields": {"state_transition": 2015, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8153, "fields": {"state_transition": 2016, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8154, "fields": {"state_transition": 2016, "node_type": "S", "subcondition": 23, "parent": 8153}}, {"model": "template.logicnode", "pk": 8155, "fields": {"state_transition": 2017, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8156, "fields": {"state_transition": 2018, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8157, "fields": {"state_transition": 2018, "node_type": "S", "subcondition": 23, "parent": 8156}}, {"model": "template.logicnode", "pk": 8158, "fields": {"state_transition": 2019, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8159, "fields": {"state_transition": 2020, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8160, "fields": {"state_transition": 2020, "node_type": "S", "subcondition": 23, "parent": 8159}}, {"model": "template.logicnode", "pk": 8161, "fields": {"state_transition": 2021, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8162, "fields": {"state_transition": 2022, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8163, "fields": {"state_transition": 2022, "node_type": "S", "subcondition": 23, "parent": 8162}}, {"model": "template.logicnode", "pk": 8164, "fields": {"state_transition": 2023, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8165, "fields": {"state_transition": 2024, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8166, "fields": {"state_transition": 2024, "node_type": "S", "subcondition": 23, "parent": 8165}}, {"model": "template.logicnode", "pk": 8167, "fields": {"state_transition": 2025, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8168, "fields": {"state_transition": 2026, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8169, "fields": {"state_transition": 2026, "node_type": "S", "subcondition": 23, "parent": 8168}}, {"model": "template.logicnode", "pk": 8170, "fields": {"state_transition": 2027, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8171, "fields": {"state_transition": 2028, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8172, "fields": {"state_transition": 2028, "node_type": "S", "subcondition": 23, "parent": 8171}}, {"model": "template.logicnode", "pk": 8173, "fields": {"state_transition": 2029, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8174, "fields": {"state_transition": 2030, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8175, "fields": {"state_transition": 2030, "node_type": "S", "subcondition": 23, "parent": 8174}}, {"model": "template.logicnode", "pk": 8176, "fields": {"state_transition": 2031, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8177, "fields": {"state_transition": 2032, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8178, "fields": {"state_transition": 2032, "node_type": "S", "subcondition": 23, "parent": 8177}}, {"model": "template.logicnode", "pk": 8179, "fields": {"state_transition": 2033, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8180, "fields": {"state_transition": 2034, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8181, "fields": {"state_transition": 2034, "node_type": "S", "subcondition": 23, "parent": 8180}}, {"model": "template.logicnode", "pk": 8182, "fields": {"state_transition": 2035, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8183, "fields": {"state_transition": 2036, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8184, "fields": {"state_transition": 2036, "node_type": "S", "subcondition": 23, "parent": 8183}}, {"model": "template.logicnode", "pk": 8185, "fields": {"state_transition": 2037, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8186, "fields": {"state_transition": 2038, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8187, "fields": {"state_transition": 2038, "node_type": "S", "subcondition": 23, "parent": 8186}}, {"model": "template.logicnode", "pk": 8188, "fields": {"state_transition": 2039, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8189, "fields": {"state_transition": 2040, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8190, "fields": {"state_transition": 2040, "node_type": "S", "subcondition": 23, "parent": 8189}}, {"model": "template.logicnode", "pk": 8191, "fields": {"state_transition": 2041, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8192, "fields": {"state_transition": 2042, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8193, "fields": {"state_transition": 2042, "node_type": "S", "subcondition": 23, "parent": 8192}}, {"model": "template.logicnode", "pk": 8194, "fields": {"state_transition": 2043, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8195, "fields": {"state_transition": 2044, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8196, "fields": {"state_transition": 2044, "node_type": "S", "subcondition": 23, "parent": 8195}}, {"model": "template.logicnode", "pk": 8197, "fields": {"state_transition": 2045, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8198, "fields": {"state_transition": 2046, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8199, "fields": {"state_transition": 2046, "node_type": "S", "subcondition": 23, "parent": 8198}}, {"model": "template.logicnode", "pk": 8200, "fields": {"state_transition": 2047, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8201, "fields": {"state_transition": 2048, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8202, "fields": {"state_transition": 2048, "node_type": "S", "subcondition": 23, "parent": 8201}}, {"model": "template.logicnode", "pk": 8203, "fields": {"state_transition": 2049, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8204, "fields": {"state_transition": 2050, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8205, "fields": {"state_transition": 2050, "node_type": "S", "subcondition": 23, "parent": 8204}}, {"model": "template.logicnode", "pk": 8206, "fields": {"state_transition": 2051, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8207, "fields": {"state_transition": 2052, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8208, "fields": {"state_transition": 2052, "node_type": "S", "subcondition": 23, "parent": 8207}}, {"model": "template.logicnode", "pk": 8209, "fields": {"state_transition": 2053, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8210, "fields": {"state_transition": 2054, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8211, "fields": {"state_transition": 2054, "node_type": "S", "subcondition": 23, "parent": 8210}}, {"model": "template.logicnode", "pk": 8212, "fields": {"state_transition": 2055, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8213, "fields": {"state_transition": 2056, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8214, "fields": {"state_transition": 2056, "node_type": "S", "subcondition": 23, "parent": 8213}}, {"model": "template.logicnode", "pk": 8215, "fields": {"state_transition": 2057, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8216, "fields": {"state_transition": 2058, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8217, "fields": {"state_transition": 2058, "node_type": "S", "subcondition": 23, "parent": 8216}}, {"model": "template.logicnode", "pk": 8218, "fields": {"state_transition": 2059, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8219, "fields": {"state_transition": 2060, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8220, "fields": {"state_transition": 2060, "node_type": "S", "subcondition": 23, "parent": 8219}}, {"model": "template.logicnode", "pk": 8221, "fields": {"state_transition": 2061, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8222, "fields": {"state_transition": 2062, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8223, "fields": {"state_transition": 2062, "node_type": "S", "subcondition": 23, "parent": 8222}}, {"model": "template.logicnode", "pk": 8224, "fields": {"state_transition": 2063, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8225, "fields": {"state_transition": 2064, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8226, "fields": {"state_transition": 2064, "node_type": "S", "subcondition": 23, "parent": 8225}}, {"model": "template.logicnode", "pk": 8227, "fields": {"state_transition": 2065, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8228, "fields": {"state_transition": 2066, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8229, "fields": {"state_transition": 2066, "node_type": "S", "subcondition": 23, "parent": 8228}}, {"model": "template.logicnode", "pk": 8230, "fields": {"state_transition": 2067, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8231, "fields": {"state_transition": 2068, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8232, "fields": {"state_transition": 2068, "node_type": "S", "subcondition": 23, "parent": 8231}}, {"model": "template.logicnode", "pk": 8233, "fields": {"state_transition": 2069, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8234, "fields": {"state_transition": 2070, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8235, "fields": {"state_transition": 2070, "node_type": "S", "subcondition": 23, "parent": 8234}}, {"model": "template.logicnode", "pk": 8236, "fields": {"state_transition": 2071, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8237, "fields": {"state_transition": 2072, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8238, "fields": {"state_transition": 2072, "node_type": "S", "subcondition": 23, "parent": 8237}}, {"model": "template.logicnode", "pk": 8239, "fields": {"state_transition": 2073, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8240, "fields": {"state_transition": 2074, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8241, "fields": {"state_transition": 2074, "node_type": "S", "subcondition": 23, "parent": 8240}}, {"model": "template.logicnode", "pk": 8242, "fields": {"state_transition": 2075, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8243, "fields": {"state_transition": 2076, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8244, "fields": {"state_transition": 2076, "node_type": "S", "subcondition": 23, "parent": 8243}}, {"model": "template.logicnode", "pk": 8245, "fields": {"state_transition": 2077, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8246, "fields": {"state_transition": 2078, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8247, "fields": {"state_transition": 2078, "node_type": "S", "subcondition": 23, "parent": 8246}}, {"model": "template.logicnode", "pk": 8248, "fields": {"state_transition": 2079, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8249, "fields": {"state_transition": 2080, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8250, "fields": {"state_transition": 2080, "node_type": "S", "subcondition": 23, "parent": 8249}}, {"model": "template.logicnode", "pk": 8251, "fields": {"state_transition": 2081, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8252, "fields": {"state_transition": 2082, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8253, "fields": {"state_transition": 2082, "node_type": "S", "subcondition": 23, "parent": 8252}}, {"model": "template.logicnode", "pk": 8254, "fields": {"state_transition": 2083, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8255, "fields": {"state_transition": 2084, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8256, "fields": {"state_transition": 2084, "node_type": "S", "subcondition": 23, "parent": 8255}}, {"model": "template.logicnode", "pk": 8257, "fields": {"state_transition": 2085, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8258, "fields": {"state_transition": 2086, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8259, "fields": {"state_transition": 2086, "node_type": "S", "subcondition": 23, "parent": 8258}}, {"model": "template.logicnode", "pk": 8260, "fields": {"state_transition": 2087, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8261, "fields": {"state_transition": 2088, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8262, "fields": {"state_transition": 2088, "node_type": "S", "subcondition": 23, "parent": 8261}}, {"model": "template.logicnode", "pk": 8263, "fields": {"state_transition": 2089, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8264, "fields": {"state_transition": 2090, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8265, "fields": {"state_transition": 2090, "node_type": "S", "subcondition": 23, "parent": 8264}}, {"model": "template.logicnode", "pk": 8266, "fields": {"state_transition": 2091, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8267, "fields": {"state_transition": 2092, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8268, "fields": {"state_transition": 2092, "node_type": "S", "subcondition": 23, "parent": 8267}}, {"model": "template.logicnode", "pk": 8269, "fields": {"state_transition": 2093, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8270, "fields": {"state_transition": 2094, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8271, "fields": {"state_transition": 2094, "node_type": "S", "subcondition": 23, "parent": 8270}}, {"model": "template.logicnode", "pk": 8272, "fields": {"state_transition": 2095, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8273, "fields": {"state_transition": 2096, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8274, "fields": {"state_transition": 2096, "node_type": "S", "subcondition": 23, "parent": 8273}}, {"model": "template.logicnode", "pk": 8275, "fields": {"state_transition": 2097, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8276, "fields": {"state_transition": 2098, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8277, "fields": {"state_transition": 2098, "node_type": "S", "subcondition": 23, "parent": 8276}}, {"model": "template.logicnode", "pk": 8278, "fields": {"state_transition": 2099, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8279, "fields": {"state_transition": 2100, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8280, "fields": {"state_transition": 2100, "node_type": "S", "subcondition": 23, "parent": 8279}}, {"model": "template.logicnode", "pk": 8281, "fields": {"state_transition": 2101, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8282, "fields": {"state_transition": 2102, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8283, "fields": {"state_transition": 2102, "node_type": "S", "subcondition": 23, "parent": 8282}}, {"model": "template.logicnode", "pk": 8284, "fields": {"state_transition": 2103, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8285, "fields": {"state_transition": 2104, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8286, "fields": {"state_transition": 2104, "node_type": "S", "subcondition": 23, "parent": 8285}}, {"model": "template.logicnode", "pk": 8287, "fields": {"state_transition": 2105, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8288, "fields": {"state_transition": 2106, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8289, "fields": {"state_transition": 2106, "node_type": "S", "subcondition": 23, "parent": 8288}}, {"model": "template.logicnode", "pk": 8290, "fields": {"state_transition": 2107, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8291, "fields": {"state_transition": 2108, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8292, "fields": {"state_transition": 2108, "node_type": "S", "subcondition": 23, "parent": 8291}}, {"model": "template.logicnode", "pk": 8293, "fields": {"state_transition": 2109, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8294, "fields": {"state_transition": 2110, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8295, "fields": {"state_transition": 2110, "node_type": "S", "subcondition": 23, "parent": 8294}}, {"model": "template.logicnode", "pk": 8296, "fields": {"state_transition": 2111, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8297, "fields": {"state_transition": 2112, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8298, "fields": {"state_transition": 2112, "node_type": "S", "subcondition": 23, "parent": 8297}}, {"model": "template.logicnode", "pk": 8299, "fields": {"state_transition": 2113, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8300, "fields": {"state_transition": 2114, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8301, "fields": {"state_transition": 2114, "node_type": "S", "subcondition": 23, "parent": 8300}}, {"model": "template.logicnode", "pk": 8302, "fields": {"state_transition": 2115, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8303, "fields": {"state_transition": 2116, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8304, "fields": {"state_transition": 2116, "node_type": "S", "subcondition": 23, "parent": 8303}}, {"model": "template.logicnode", "pk": 8305, "fields": {"state_transition": 2117, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8306, "fields": {"state_transition": 2118, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8307, "fields": {"state_transition": 2118, "node_type": "S", "subcondition": 23, "parent": 8306}}, {"model": "template.logicnode", "pk": 8308, "fields": {"state_transition": 2119, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8309, "fields": {"state_transition": 2120, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8310, "fields": {"state_transition": 2120, "node_type": "S", "subcondition": 23, "parent": 8309}}, {"model": "template.logicnode", "pk": 8311, "fields": {"state_transition": 2121, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8312, "fields": {"state_transition": 2122, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8313, "fields": {"state_transition": 2122, "node_type": "S", "subcondition": 23, "parent": 8312}}, {"model": "template.logicnode", "pk": 8314, "fields": {"state_transition": 2123, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8315, "fields": {"state_transition": 2124, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8316, "fields": {"state_transition": 2124, "node_type": "S", "subcondition": 23, "parent": 8315}}, {"model": "template.logicnode", "pk": 8317, "fields": {"state_transition": 2125, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8318, "fields": {"state_transition": 2126, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8319, "fields": {"state_transition": 2126, "node_type": "S", "subcondition": 23, "parent": 8318}}, {"model": "template.logicnode", "pk": 8320, "fields": {"state_transition": 2127, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8321, "fields": {"state_transition": 2128, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8322, "fields": {"state_transition": 2128, "node_type": "S", "subcondition": 23, "parent": 8321}}, {"model": "template.logicnode", "pk": 8323, "fields": {"state_transition": 2129, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8324, "fields": {"state_transition": 2130, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8325, "fields": {"state_transition": 2130, "node_type": "S", "subcondition": 23, "parent": 8324}}, {"model": "template.logicnode", "pk": 8326, "fields": {"state_transition": 2131, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8327, "fields": {"state_transition": 2132, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8328, "fields": {"state_transition": 2132, "node_type": "S", "subcondition": 23, "parent": 8327}}, {"model": "template.logicnode", "pk": 8329, "fields": {"state_transition": 2133, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8330, "fields": {"state_transition": 2134, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8331, "fields": {"state_transition": 2134, "node_type": "S", "subcondition": 23, "parent": 8330}}, {"model": "template.logicnode", "pk": 8332, "fields": {"state_transition": 2135, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8333, "fields": {"state_transition": 2136, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8334, "fields": {"state_transition": 2136, "node_type": "S", "subcondition": 23, "parent": 8333}}, {"model": "template.logicnode", "pk": 8335, "fields": {"state_transition": 2137, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8336, "fields": {"state_transition": 2138, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8337, "fields": {"state_transition": 2138, "node_type": "S", "subcondition": 23, "parent": 8336}}, {"model": "template.logicnode", "pk": 8338, "fields": {"state_transition": 2139, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8339, "fields": {"state_transition": 2140, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8340, "fields": {"state_transition": 2140, "node_type": "S", "subcondition": 23, "parent": 8339}}, {"model": "template.logicnode", "pk": 8341, "fields": {"state_transition": 2141, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8342, "fields": {"state_transition": 2142, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8343, "fields": {"state_transition": 2143, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8344, "fields": {"state_transition": 2144, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8345, "fields": {"state_transition": 2145, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8346, "fields": {"state_transition": 2146, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8347, "fields": {"state_transition": 2147, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8348, "fields": {"state_transition": 2148, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8349, "fields": {"state_transition": 2149, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8350, "fields": {"state_transition": 2150, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8351, "fields": {"state_transition": 2151, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8352, "fields": {"state_transition": 2152, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8353, "fields": {"state_transition": 2152, "node_type": "S", "subcondition": 23, "parent": 8352}}, {"model": "template.logicnode", "pk": 8354, "fields": {"state_transition": 2153, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8355, "fields": {"state_transition": 2154, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8356, "fields": {"state_transition": 2154, "node_type": "S", "subcondition": 23, "parent": 8355}}, {"model": "template.logicnode", "pk": 8357, "fields": {"state_transition": 2155, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8358, "fields": {"state_transition": 2156, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8359, "fields": {"state_transition": 2157, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8360, "fields": {"state_transition": 2158, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8361, "fields": {"state_transition": 2159, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8362, "fields": {"state_transition": 2160, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8363, "fields": {"state_transition": 2161, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8364, "fields": {"state_transition": 2162, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8365, "fields": {"state_transition": 2163, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8366, "fields": {"state_transition": 2164, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8367, "fields": {"state_transition": 2165, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8368, "fields": {"state_transition": 2166, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8369, "fields": {"state_transition": 2167, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8370, "fields": {"state_transition": 2168, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8371, "fields": {"state_transition": 2169, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8372, "fields": {"state_transition": 2170, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8373, "fields": {"state_transition": 2170, "node_type": "S", "subcondition": 23, "parent": 8372}}, {"model": "template.logicnode", "pk": 8374, "fields": {"state_transition": 2171, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8375, "fields": {"state_transition": 2172, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8376, "fields": {"state_transition": 2172, "node_type": "S", "subcondition": 23, "parent": 8375}}, {"model": "template.logicnode", "pk": 8377, "fields": {"state_transition": 2173, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8378, "fields": {"state_transition": 2174, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8379, "fields": {"state_transition": 2174, "node_type": "S", "subcondition": 23, "parent": 8378}}, {"model": "template.logicnode", "pk": 8380, "fields": {"state_transition": 2175, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8381, "fields": {"state_transition": 2176, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8382, "fields": {"state_transition": 2176, "node_type": "S", "subcondition": 23, "parent": 8381}}, {"model": "template.logicnode", "pk": 8383, "fields": {"state_transition": 2177, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8384, "fields": {"state_transition": 2178, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8385, "fields": {"state_transition": 2178, "node_type": "S", "subcondition": 23, "parent": 8384}}, {"model": "template.logicnode", "pk": 8386, "fields": {"state_transition": 2179, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8387, "fields": {"state_transition": 2180, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8388, "fields": {"state_transition": 2180, "node_type": "S", "subcondition": 23, "parent": 8387}}, {"model": "template.logicnode", "pk": 8389, "fields": {"state_transition": 2181, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8390, "fields": {"state_transition": 2182, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8391, "fields": {"state_transition": 2182, "node_type": "S", "subcondition": 23, "parent": 8390}}, {"model": "template.logicnode", "pk": 8392, "fields": {"state_transition": 2183, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8393, "fields": {"state_transition": 2184, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8394, "fields": {"state_transition": 2184, "node_type": "S", "subcondition": 23, "parent": 8393}}, {"model": "template.logicnode", "pk": 8395, "fields": {"state_transition": 2185, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8396, "fields": {"state_transition": 2186, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8397, "fields": {"state_transition": 2186, "node_type": "S", "subcondition": 23, "parent": 8396}}, {"model": "template.logicnode", "pk": 8398, "fields": {"state_transition": 2187, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8399, "fields": {"state_transition": 2188, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8400, "fields": {"state_transition": 2188, "node_type": "S", "subcondition": 23, "parent": 8399}}, {"model": "template.logicnode", "pk": 8401, "fields": {"state_transition": 2189, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8402, "fields": {"state_transition": 2190, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8403, "fields": {"state_transition": 2190, "node_type": "S", "subcondition": 23, "parent": 8402}}, {"model": "template.logicnode", "pk": 8404, "fields": {"state_transition": 2191, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8405, "fields": {"state_transition": 2192, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8406, "fields": {"state_transition": 2192, "node_type": "S", "subcondition": 23, "parent": 8405}}, {"model": "template.logicnode", "pk": 8407, "fields": {"state_transition": 2193, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8408, "fields": {"state_transition": 2194, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8409, "fields": {"state_transition": 2194, "node_type": "S", "subcondition": 23, "parent": 8408}}, {"model": "template.logicnode", "pk": 8410, "fields": {"state_transition": 2195, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8411, "fields": {"state_transition": 2196, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8412, "fields": {"state_transition": 2196, "node_type": "S", "subcondition": 23, "parent": 8411}}, {"model": "template.logicnode", "pk": 8413, "fields": {"state_transition": 2197, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8414, "fields": {"state_transition": 2198, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8415, "fields": {"state_transition": 2198, "node_type": "S", "subcondition": 23, "parent": 8414}}, {"model": "template.logicnode", "pk": 8416, "fields": {"state_transition": 2199, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8417, "fields": {"state_transition": 2200, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8418, "fields": {"state_transition": 2200, "node_type": "S", "subcondition": 23, "parent": 8417}}, {"model": "template.logicnode", "pk": 8419, "fields": {"state_transition": 2201, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8420, "fields": {"state_transition": 2202, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8421, "fields": {"state_transition": 2202, "node_type": "S", "subcondition": 23, "parent": 8420}}, {"model": "template.logicnode", "pk": 8422, "fields": {"state_transition": 2203, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8423, "fields": {"state_transition": 2204, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8424, "fields": {"state_transition": 2204, "node_type": "S", "subcondition": 23, "parent": 8423}}, {"model": "template.logicnode", "pk": 8425, "fields": {"state_transition": 2205, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8426, "fields": {"state_transition": 2206, "node_type": "N", "subcondition": null, "parent": 8430}}, {"model": "template.logicnode", "pk": 8427, "fields": {"state_transition": 2206, "node_type": "S", "subcondition": 23, "parent": 8426}}, {"model": "template.logicnode", "pk": 8428, "fields": {"state_transition": 2206, "node_type": "S", "subcondition": 11, "parent": 8430}}, {"model": "template.logicnode", "pk": 8429, "fields": {"state_transition": 2206, "node_type": "S", "subcondition": 17, "parent": 8430}}, {"model": "template.logicnode", "pk": 8430, "fields": {"state_transition": 2206, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8431, "fields": {"state_transition": 2207, "node_type": "N", "subcondition": null, "parent": 8434}}, {"model": "template.logicnode", "pk": 8432, "fields": {"state_transition": 2207, "node_type": "S", "subcondition": 23, "parent": 8431}}, {"model": "template.logicnode", "pk": 8433, "fields": {"state_transition": 2207, "node_type": "S", "subcondition": 11, "parent": 8434}}, {"model": "template.logicnode", "pk": 8434, "fields": {"state_transition": 2207, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8435, "fields": {"state_transition": 2208, "node_type": "N", "subcondition": null, "parent": 8438}}, {"model": "template.logicnode", "pk": 8436, "fields": {"state_transition": 2208, "node_type": "S", "subcondition": 23, "parent": 8435}}, {"model": "template.logicnode", "pk": 8437, "fields": {"state_transition": 2208, "node_type": "S", "subcondition": 17, "parent": 8438}}, {"model": "template.logicnode", "pk": 8438, "fields": {"state_transition": 2208, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8439, "fields": {"state_transition": 2209, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8440, "fields": {"state_transition": 2209, "node_type": "S", "subcondition": 23, "parent": 8439}}, {"model": "template.logicnode", "pk": 8441, "fields": {"state_transition": 2210, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8442, "fields": {"state_transition": 2211, "node_type": "N", "subcondition": null, "parent": 8446}}, {"model": "template.logicnode", "pk": 8443, "fields": {"state_transition": 2211, "node_type": "S", "subcondition": 23, "parent": 8442}}, {"model": "template.logicnode", "pk": 8444, "fields": {"state_transition": 2211, "node_type": "S", "subcondition": 11, "parent": 8446}}, {"model": "template.logicnode", "pk": 8445, "fields": {"state_transition": 2211, "node_type": "S", "subcondition": 17, "parent": 8446}}, {"model": "template.logicnode", "pk": 8446, "fields": {"state_transition": 2211, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8447, "fields": {"state_transition": 2212, "node_type": "N", "subcondition": null, "parent": 8450}}, {"model": "template.logicnode", "pk": 8448, "fields": {"state_transition": 2212, "node_type": "S", "subcondition": 23, "parent": 8447}}, {"model": "template.logicnode", "pk": 8449, "fields": {"state_transition": 2212, "node_type": "S", "subcondition": 11, "parent": 8450}}, {"model": "template.logicnode", "pk": 8450, "fields": {"state_transition": 2212, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8451, "fields": {"state_transition": 2213, "node_type": "N", "subcondition": null, "parent": 8454}}, {"model": "template.logicnode", "pk": 8452, "fields": {"state_transition": 2213, "node_type": "S", "subcondition": 23, "parent": 8451}}, {"model": "template.logicnode", "pk": 8453, "fields": {"state_transition": 2213, "node_type": "S", "subcondition": 17, "parent": 8454}}, {"model": "template.logicnode", "pk": 8454, "fields": {"state_transition": 2213, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8455, "fields": {"state_transition": 2214, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8456, "fields": {"state_transition": 2214, "node_type": "S", "subcondition": 23, "parent": 8455}}, {"model": "template.logicnode", "pk": 8457, "fields": {"state_transition": 2215, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8458, "fields": {"state_transition": 2216, "node_type": "N", "subcondition": null, "parent": 8462}}, {"model": "template.logicnode", "pk": 8459, "fields": {"state_transition": 2216, "node_type": "S", "subcondition": 23, "parent": 8458}}, {"model": "template.logicnode", "pk": 8460, "fields": {"state_transition": 2216, "node_type": "S", "subcondition": 11, "parent": 8462}}, {"model": "template.logicnode", "pk": 8461, "fields": {"state_transition": 2216, "node_type": "S", "subcondition": 17, "parent": 8462}}, {"model": "template.logicnode", "pk": 8462, "fields": {"state_transition": 2216, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8463, "fields": {"state_transition": 2217, "node_type": "N", "subcondition": null, "parent": 8466}}, {"model": "template.logicnode", "pk": 8464, "fields": {"state_transition": 2217, "node_type": "S", "subcondition": 23, "parent": 8463}}, {"model": "template.logicnode", "pk": 8465, "fields": {"state_transition": 2217, "node_type": "S", "subcondition": 11, "parent": 8466}}, {"model": "template.logicnode", "pk": 8466, "fields": {"state_transition": 2217, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8467, "fields": {"state_transition": 2218, "node_type": "N", "subcondition": null, "parent": 8470}}, {"model": "template.logicnode", "pk": 8468, "fields": {"state_transition": 2218, "node_type": "S", "subcondition": 23, "parent": 8467}}, {"model": "template.logicnode", "pk": 8469, "fields": {"state_transition": 2218, "node_type": "S", "subcondition": 17, "parent": 8470}}, {"model": "template.logicnode", "pk": 8470, "fields": {"state_transition": 2218, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8471, "fields": {"state_transition": 2219, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8472, "fields": {"state_transition": 2219, "node_type": "S", "subcondition": 23, "parent": 8471}}, {"model": "template.logicnode", "pk": 8473, "fields": {"state_transition": 2220, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8474, "fields": {"state_transition": 2221, "node_type": "N", "subcondition": null, "parent": 8478}}, {"model": "template.logicnode", "pk": 8475, "fields": {"state_transition": 2221, "node_type": "S", "subcondition": 23, "parent": 8474}}, {"model": "template.logicnode", "pk": 8476, "fields": {"state_transition": 2221, "node_type": "S", "subcondition": 11, "parent": 8478}}, {"model": "template.logicnode", "pk": 8477, "fields": {"state_transition": 2221, "node_type": "S", "subcondition": 17, "parent": 8478}}, {"model": "template.logicnode", "pk": 8478, "fields": {"state_transition": 2221, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8479, "fields": {"state_transition": 2222, "node_type": "N", "subcondition": null, "parent": 8482}}, {"model": "template.logicnode", "pk": 8480, "fields": {"state_transition": 2222, "node_type": "S", "subcondition": 23, "parent": 8479}}, {"model": "template.logicnode", "pk": 8481, "fields": {"state_transition": 2222, "node_type": "S", "subcondition": 11, "parent": 8482}}, {"model": "template.logicnode", "pk": 8482, "fields": {"state_transition": 2222, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8483, "fields": {"state_transition": 2223, "node_type": "N", "subcondition": null, "parent": 8486}}, {"model": "template.logicnode", "pk": 8484, "fields": {"state_transition": 2223, "node_type": "S", "subcondition": 23, "parent": 8483}}, {"model": "template.logicnode", "pk": 8485, "fields": {"state_transition": 2223, "node_type": "S", "subcondition": 17, "parent": 8486}}, {"model": "template.logicnode", "pk": 8486, "fields": {"state_transition": 2223, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8487, "fields": {"state_transition": 2224, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8488, "fields": {"state_transition": 2224, "node_type": "S", "subcondition": 23, "parent": 8487}}, {"model": "template.logicnode", "pk": 8489, "fields": {"state_transition": 2225, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8490, "fields": {"state_transition": 2226, "node_type": "N", "subcondition": null, "parent": 8494}}, {"model": "template.logicnode", "pk": 8491, "fields": {"state_transition": 2226, "node_type": "S", "subcondition": 23, "parent": 8490}}, {"model": "template.logicnode", "pk": 8492, "fields": {"state_transition": 2226, "node_type": "S", "subcondition": 11, "parent": 8494}}, {"model": "template.logicnode", "pk": 8493, "fields": {"state_transition": 2226, "node_type": "S", "subcondition": 17, "parent": 8494}}, {"model": "template.logicnode", "pk": 8494, "fields": {"state_transition": 2226, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8495, "fields": {"state_transition": 2227, "node_type": "N", "subcondition": null, "parent": 8498}}, {"model": "template.logicnode", "pk": 8496, "fields": {"state_transition": 2227, "node_type": "S", "subcondition": 23, "parent": 8495}}, {"model": "template.logicnode", "pk": 8497, "fields": {"state_transition": 2227, "node_type": "S", "subcondition": 11, "parent": 8498}}, {"model": "template.logicnode", "pk": 8498, "fields": {"state_transition": 2227, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8499, "fields": {"state_transition": 2228, "node_type": "N", "subcondition": null, "parent": 8502}}, {"model": "template.logicnode", "pk": 8500, "fields": {"state_transition": 2228, "node_type": "S", "subcondition": 23, "parent": 8499}}, {"model": "template.logicnode", "pk": 8501, "fields": {"state_transition": 2228, "node_type": "S", "subcondition": 17, "parent": 8502}}, {"model": "template.logicnode", "pk": 8502, "fields": {"state_transition": 2228, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8503, "fields": {"state_transition": 2229, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8504, "fields": {"state_transition": 2229, "node_type": "S", "subcondition": 23, "parent": 8503}}, {"model": "template.logicnode", "pk": 8505, "fields": {"state_transition": 2230, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8506, "fields": {"state_transition": 2231, "node_type": "N", "subcondition": null, "parent": 8510}}, {"model": "template.logicnode", "pk": 8507, "fields": {"state_transition": 2231, "node_type": "S", "subcondition": 23, "parent": 8506}}, {"model": "template.logicnode", "pk": 8508, "fields": {"state_transition": 2231, "node_type": "S", "subcondition": 11, "parent": 8510}}, {"model": "template.logicnode", "pk": 8509, "fields": {"state_transition": 2231, "node_type": "S", "subcondition": 17, "parent": 8510}}, {"model": "template.logicnode", "pk": 8510, "fields": {"state_transition": 2231, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8511, "fields": {"state_transition": 2232, "node_type": "N", "subcondition": null, "parent": 8514}}, {"model": "template.logicnode", "pk": 8512, "fields": {"state_transition": 2232, "node_type": "S", "subcondition": 23, "parent": 8511}}, {"model": "template.logicnode", "pk": 8513, "fields": {"state_transition": 2232, "node_type": "S", "subcondition": 11, "parent": 8514}}, {"model": "template.logicnode", "pk": 8514, "fields": {"state_transition": 2232, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8515, "fields": {"state_transition": 2233, "node_type": "N", "subcondition": null, "parent": 8518}}, {"model": "template.logicnode", "pk": 8516, "fields": {"state_transition": 2233, "node_type": "S", "subcondition": 23, "parent": 8515}}, {"model": "template.logicnode", "pk": 8517, "fields": {"state_transition": 2233, "node_type": "S", "subcondition": 17, "parent": 8518}}, {"model": "template.logicnode", "pk": 8518, "fields": {"state_transition": 2233, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8519, "fields": {"state_transition": 2234, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8520, "fields": {"state_transition": 2234, "node_type": "S", "subcondition": 23, "parent": 8519}}, {"model": "template.logicnode", "pk": 8521, "fields": {"state_transition": 2235, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8522, "fields": {"state_transition": 2236, "node_type": "N", "subcondition": null, "parent": 8526}}, {"model": "template.logicnode", "pk": 8523, "fields": {"state_transition": 2236, "node_type": "S", "subcondition": 23, "parent": 8522}}, {"model": "template.logicnode", "pk": 8524, "fields": {"state_transition": 2236, "node_type": "S", "subcondition": 11, "parent": 8526}}, {"model": "template.logicnode", "pk": 8525, "fields": {"state_transition": 2236, "node_type": "S", "subcondition": 17, "parent": 8526}}, {"model": "template.logicnode", "pk": 8526, "fields": {"state_transition": 2236, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8527, "fields": {"state_transition": 2237, "node_type": "N", "subcondition": null, "parent": 8530}}, {"model": "template.logicnode", "pk": 8528, "fields": {"state_transition": 2237, "node_type": "S", "subcondition": 23, "parent": 8527}}, {"model": "template.logicnode", "pk": 8529, "fields": {"state_transition": 2237, "node_type": "S", "subcondition": 11, "parent": 8530}}, {"model": "template.logicnode", "pk": 8530, "fields": {"state_transition": 2237, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8531, "fields": {"state_transition": 2238, "node_type": "N", "subcondition": null, "parent": 8534}}, {"model": "template.logicnode", "pk": 8532, "fields": {"state_transition": 2238, "node_type": "S", "subcondition": 23, "parent": 8531}}, {"model": "template.logicnode", "pk": 8533, "fields": {"state_transition": 2238, "node_type": "S", "subcondition": 17, "parent": 8534}}, {"model": "template.logicnode", "pk": 8534, "fields": {"state_transition": 2238, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8535, "fields": {"state_transition": 2239, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8536, "fields": {"state_transition": 2239, "node_type": "S", "subcondition": 23, "parent": 8535}}, {"model": "template.logicnode", "pk": 8537, "fields": {"state_transition": 2240, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8538, "fields": {"state_transition": 2241, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8539, "fields": {"state_transition": 2242, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8540, "fields": {"state_transition": 2243, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8541, "fields": {"state_transition": 2244, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8542, "fields": {"state_transition": 2245, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8543, "fields": {"state_transition": 2245, "node_type": "S", "subcondition": 23, "parent": 8542}}, {"model": "template.logicnode", "pk": 8544, "fields": {"state_transition": 2246, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8545, "fields": {"state_transition": 2247, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8546, "fields": {"state_transition": 2247, "node_type": "S", "subcondition": 23, "parent": 8545}}, {"model": "template.logicnode", "pk": 8547, "fields": {"state_transition": 2248, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8548, "fields": {"state_transition": 2249, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8549, "fields": {"state_transition": 2249, "node_type": "S", "subcondition": 23, "parent": 8548}}, {"model": "template.logicnode", "pk": 8550, "fields": {"state_transition": 2250, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8551, "fields": {"state_transition": 2251, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8552, "fields": {"state_transition": 2251, "node_type": "S", "subcondition": 23, "parent": 8551}}, {"model": "template.logicnode", "pk": 8553, "fields": {"state_transition": 2252, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8554, "fields": {"state_transition": 2253, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8555, "fields": {"state_transition": 2253, "node_type": "S", "subcondition": 23, "parent": 8554}}, {"model": "template.logicnode", "pk": 8556, "fields": {"state_transition": 2254, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8557, "fields": {"state_transition": 2255, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8558, "fields": {"state_transition": 2255, "node_type": "S", "subcondition": 23, "parent": 8557}}, {"model": "template.logicnode", "pk": 8559, "fields": {"state_transition": 2256, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8560, "fields": {"state_transition": 2257, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8561, "fields": {"state_transition": 2257, "node_type": "S", "subcondition": 23, "parent": 8560}}, {"model": "template.logicnode", "pk": 8562, "fields": {"state_transition": 2258, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8563, "fields": {"state_transition": 2259, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8564, "fields": {"state_transition": 2259, "node_type": "S", "subcondition": 23, "parent": 8563}}, {"model": "template.logicnode", "pk": 8565, "fields": {"state_transition": 2260, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8566, "fields": {"state_transition": 2261, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8567, "fields": {"state_transition": 2261, "node_type": "S", "subcondition": 23, "parent": 8566}}, {"model": "template.logicnode", "pk": 8568, "fields": {"state_transition": 2262, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8569, "fields": {"state_transition": 2263, "node_type": "N", "subcondition": null, "parent": 8573}}, {"model": "template.logicnode", "pk": 8570, "fields": {"state_transition": 2263, "node_type": "S", "subcondition": 23, "parent": 8569}}, {"model": "template.logicnode", "pk": 8571, "fields": {"state_transition": 2263, "node_type": "S", "subcondition": 14, "parent": 8573}}, {"model": "template.logicnode", "pk": 8572, "fields": {"state_transition": 2263, "node_type": "S", "subcondition": 16, "parent": 8573}}, {"model": "template.logicnode", "pk": 8573, "fields": {"state_transition": 2263, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8574, "fields": {"state_transition": 2264, "node_type": "N", "subcondition": null, "parent": 8577}}, {"model": "template.logicnode", "pk": 8575, "fields": {"state_transition": 2264, "node_type": "S", "subcondition": 23, "parent": 8574}}, {"model": "template.logicnode", "pk": 8576, "fields": {"state_transition": 2264, "node_type": "S", "subcondition": 14, "parent": 8577}}, {"model": "template.logicnode", "pk": 8577, "fields": {"state_transition": 2264, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8578, "fields": {"state_transition": 2265, "node_type": "N", "subcondition": null, "parent": 8582}}, {"model": "template.logicnode", "pk": 8579, "fields": {"state_transition": 2265, "node_type": "S", "subcondition": 23, "parent": 8578}}, {"model": "template.logicnode", "pk": 8580, "fields": {"state_transition": 2265, "node_type": "S", "subcondition": 15, "parent": 8582}}, {"model": "template.logicnode", "pk": 8581, "fields": {"state_transition": 2265, "node_type": "S", "subcondition": 16, "parent": 8582}}, {"model": "template.logicnode", "pk": 8582, "fields": {"state_transition": 2265, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8583, "fields": {"state_transition": 2266, "node_type": "N", "subcondition": null, "parent": 8586}}, {"model": "template.logicnode", "pk": 8584, "fields": {"state_transition": 2266, "node_type": "S", "subcondition": 23, "parent": 8583}}, {"model": "template.logicnode", "pk": 8585, "fields": {"state_transition": 2266, "node_type": "S", "subcondition": 15, "parent": 8586}}, {"model": "template.logicnode", "pk": 8586, "fields": {"state_transition": 2266, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8587, "fields": {"state_transition": 2267, "node_type": "N", "subcondition": null, "parent": 8590}}, {"model": "template.logicnode", "pk": 8588, "fields": {"state_transition": 2267, "node_type": "S", "subcondition": 23, "parent": 8587}}, {"model": "template.logicnode", "pk": 8589, "fields": {"state_transition": 2267, "node_type": "S", "subcondition": 16, "parent": 8590}}, {"model": "template.logicnode", "pk": 8590, "fields": {"state_transition": 2267, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8591, "fields": {"state_transition": 2268, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8592, "fields": {"state_transition": 2268, "node_type": "S", "subcondition": 23, "parent": 8591}}, {"model": "template.logicnode", "pk": 8593, "fields": {"state_transition": 2269, "node_type": "S", "subcondition": 23, "parent": 8595}}, {"model": "template.logicnode", "pk": 8594, "fields": {"state_transition": 2269, "node_type": "S", "subcondition": 16, "parent": 8595}}, {"model": "template.logicnode", "pk": 8595, "fields": {"state_transition": 2269, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8596, "fields": {"state_transition": 2270, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8597, "fields": {"state_transition": 2271, "node_type": "N", "subcondition": null, "parent": 8601}}, {"model": "template.logicnode", "pk": 8598, "fields": {"state_transition": 2271, "node_type": "S", "subcondition": 23, "parent": 8597}}, {"model": "template.logicnode", "pk": 8599, "fields": {"state_transition": 2271, "node_type": "S", "subcondition": 14, "parent": 8601}}, {"model": "template.logicnode", "pk": 8600, "fields": {"state_transition": 2271, "node_type": "S", "subcondition": 16, "parent": 8601}}, {"model": "template.logicnode", "pk": 8601, "fields": {"state_transition": 2271, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8602, "fields": {"state_transition": 2272, "node_type": "N", "subcondition": null, "parent": 8605}}, {"model": "template.logicnode", "pk": 8603, "fields": {"state_transition": 2272, "node_type": "S", "subcondition": 23, "parent": 8602}}, {"model": "template.logicnode", "pk": 8604, "fields": {"state_transition": 2272, "node_type": "S", "subcondition": 14, "parent": 8605}}, {"model": "template.logicnode", "pk": 8605, "fields": {"state_transition": 2272, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8606, "fields": {"state_transition": 2273, "node_type": "N", "subcondition": null, "parent": 8610}}, {"model": "template.logicnode", "pk": 8607, "fields": {"state_transition": 2273, "node_type": "S", "subcondition": 23, "parent": 8606}}, {"model": "template.logicnode", "pk": 8608, "fields": {"state_transition": 2273, "node_type": "S", "subcondition": 15, "parent": 8610}}, {"model": "template.logicnode", "pk": 8609, "fields": {"state_transition": 2273, "node_type": "S", "subcondition": 16, "parent": 8610}}, {"model": "template.logicnode", "pk": 8610, "fields": {"state_transition": 2273, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8611, "fields": {"state_transition": 2274, "node_type": "N", "subcondition": null, "parent": 8614}}, {"model": "template.logicnode", "pk": 8612, "fields": {"state_transition": 2274, "node_type": "S", "subcondition": 23, "parent": 8611}}, {"model": "template.logicnode", "pk": 8613, "fields": {"state_transition": 2274, "node_type": "S", "subcondition": 15, "parent": 8614}}, {"model": "template.logicnode", "pk": 8614, "fields": {"state_transition": 2274, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8615, "fields": {"state_transition": 2275, "node_type": "N", "subcondition": null, "parent": 8618}}, {"model": "template.logicnode", "pk": 8616, "fields": {"state_transition": 2275, "node_type": "S", "subcondition": 23, "parent": 8615}}, {"model": "template.logicnode", "pk": 8617, "fields": {"state_transition": 2275, "node_type": "S", "subcondition": 16, "parent": 8618}}, {"model": "template.logicnode", "pk": 8618, "fields": {"state_transition": 2275, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8619, "fields": {"state_transition": 2276, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8620, "fields": {"state_transition": 2276, "node_type": "S", "subcondition": 23, "parent": 8619}}, {"model": "template.logicnode", "pk": 8621, "fields": {"state_transition": 2277, "node_type": "S", "subcondition": 23, "parent": 8623}}, {"model": "template.logicnode", "pk": 8622, "fields": {"state_transition": 2277, "node_type": "S", "subcondition": 16, "parent": 8623}}, {"model": "template.logicnode", "pk": 8623, "fields": {"state_transition": 2277, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8624, "fields": {"state_transition": 2278, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8625, "fields": {"state_transition": 2279, "node_type": "N", "subcondition": null, "parent": 8629}}, {"model": "template.logicnode", "pk": 8626, "fields": {"state_transition": 2279, "node_type": "S", "subcondition": 23, "parent": 8625}}, {"model": "template.logicnode", "pk": 8627, "fields": {"state_transition": 2279, "node_type": "S", "subcondition": 14, "parent": 8629}}, {"model": "template.logicnode", "pk": 8628, "fields": {"state_transition": 2279, "node_type": "S", "subcondition": 16, "parent": 8629}}, {"model": "template.logicnode", "pk": 8629, "fields": {"state_transition": 2279, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8630, "fields": {"state_transition": 2280, "node_type": "N", "subcondition": null, "parent": 8633}}, {"model": "template.logicnode", "pk": 8631, "fields": {"state_transition": 2280, "node_type": "S", "subcondition": 23, "parent": 8630}}, {"model": "template.logicnode", "pk": 8632, "fields": {"state_transition": 2280, "node_type": "S", "subcondition": 14, "parent": 8633}}, {"model": "template.logicnode", "pk": 8633, "fields": {"state_transition": 2280, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8634, "fields": {"state_transition": 2281, "node_type": "N", "subcondition": null, "parent": 8638}}, {"model": "template.logicnode", "pk": 8635, "fields": {"state_transition": 2281, "node_type": "S", "subcondition": 23, "parent": 8634}}, {"model": "template.logicnode", "pk": 8636, "fields": {"state_transition": 2281, "node_type": "S", "subcondition": 15, "parent": 8638}}, {"model": "template.logicnode", "pk": 8637, "fields": {"state_transition": 2281, "node_type": "S", "subcondition": 16, "parent": 8638}}, {"model": "template.logicnode", "pk": 8638, "fields": {"state_transition": 2281, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8639, "fields": {"state_transition": 2282, "node_type": "N", "subcondition": null, "parent": 8642}}, {"model": "template.logicnode", "pk": 8640, "fields": {"state_transition": 2282, "node_type": "S", "subcondition": 23, "parent": 8639}}, {"model": "template.logicnode", "pk": 8641, "fields": {"state_transition": 2282, "node_type": "S", "subcondition": 15, "parent": 8642}}, {"model": "template.logicnode", "pk": 8642, "fields": {"state_transition": 2282, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8643, "fields": {"state_transition": 2283, "node_type": "N", "subcondition": null, "parent": 8646}}, {"model": "template.logicnode", "pk": 8644, "fields": {"state_transition": 2283, "node_type": "S", "subcondition": 23, "parent": 8643}}, {"model": "template.logicnode", "pk": 8645, "fields": {"state_transition": 2283, "node_type": "S", "subcondition": 16, "parent": 8646}}, {"model": "template.logicnode", "pk": 8646, "fields": {"state_transition": 2283, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8647, "fields": {"state_transition": 2284, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8648, "fields": {"state_transition": 2284, "node_type": "S", "subcondition": 23, "parent": 8647}}, {"model": "template.logicnode", "pk": 8649, "fields": {"state_transition": 2285, "node_type": "S", "subcondition": 23, "parent": 8651}}, {"model": "template.logicnode", "pk": 8650, "fields": {"state_transition": 2285, "node_type": "S", "subcondition": 16, "parent": 8651}}, {"model": "template.logicnode", "pk": 8651, "fields": {"state_transition": 2285, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8652, "fields": {"state_transition": 2286, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8653, "fields": {"state_transition": 2287, "node_type": "N", "subcondition": null, "parent": 8657}}, {"model": "template.logicnode", "pk": 8654, "fields": {"state_transition": 2287, "node_type": "S", "subcondition": 23, "parent": 8653}}, {"model": "template.logicnode", "pk": 8655, "fields": {"state_transition": 2287, "node_type": "S", "subcondition": 14, "parent": 8657}}, {"model": "template.logicnode", "pk": 8656, "fields": {"state_transition": 2287, "node_type": "S", "subcondition": 16, "parent": 8657}}, {"model": "template.logicnode", "pk": 8657, "fields": {"state_transition": 2287, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8658, "fields": {"state_transition": 2288, "node_type": "N", "subcondition": null, "parent": 8661}}, {"model": "template.logicnode", "pk": 8659, "fields": {"state_transition": 2288, "node_type": "S", "subcondition": 23, "parent": 8658}}, {"model": "template.logicnode", "pk": 8660, "fields": {"state_transition": 2288, "node_type": "S", "subcondition": 14, "parent": 8661}}, {"model": "template.logicnode", "pk": 8661, "fields": {"state_transition": 2288, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8662, "fields": {"state_transition": 2289, "node_type": "N", "subcondition": null, "parent": 8666}}, {"model": "template.logicnode", "pk": 8663, "fields": {"state_transition": 2289, "node_type": "S", "subcondition": 23, "parent": 8662}}, {"model": "template.logicnode", "pk": 8664, "fields": {"state_transition": 2289, "node_type": "S", "subcondition": 15, "parent": 8666}}, {"model": "template.logicnode", "pk": 8665, "fields": {"state_transition": 2289, "node_type": "S", "subcondition": 16, "parent": 8666}}, {"model": "template.logicnode", "pk": 8666, "fields": {"state_transition": 2289, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8667, "fields": {"state_transition": 2290, "node_type": "N", "subcondition": null, "parent": 8670}}, {"model": "template.logicnode", "pk": 8668, "fields": {"state_transition": 2290, "node_type": "S", "subcondition": 23, "parent": 8667}}, {"model": "template.logicnode", "pk": 8669, "fields": {"state_transition": 2290, "node_type": "S", "subcondition": 15, "parent": 8670}}, {"model": "template.logicnode", "pk": 8670, "fields": {"state_transition": 2290, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8671, "fields": {"state_transition": 2291, "node_type": "N", "subcondition": null, "parent": 8674}}, {"model": "template.logicnode", "pk": 8672, "fields": {"state_transition": 2291, "node_type": "S", "subcondition": 23, "parent": 8671}}, {"model": "template.logicnode", "pk": 8673, "fields": {"state_transition": 2291, "node_type": "S", "subcondition": 16, "parent": 8674}}, {"model": "template.logicnode", "pk": 8674, "fields": {"state_transition": 2291, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8675, "fields": {"state_transition": 2292, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8676, "fields": {"state_transition": 2292, "node_type": "S", "subcondition": 23, "parent": 8675}}, {"model": "template.logicnode", "pk": 8677, "fields": {"state_transition": 2293, "node_type": "S", "subcondition": 23, "parent": 8679}}, {"model": "template.logicnode", "pk": 8678, "fields": {"state_transition": 2293, "node_type": "S", "subcondition": 16, "parent": 8679}}, {"model": "template.logicnode", "pk": 8679, "fields": {"state_transition": 2293, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8680, "fields": {"state_transition": 2294, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8681, "fields": {"state_transition": 2295, "node_type": "N", "subcondition": null, "parent": 8685}}, {"model": "template.logicnode", "pk": 8682, "fields": {"state_transition": 2295, "node_type": "S", "subcondition": 23, "parent": 8681}}, {"model": "template.logicnode", "pk": 8683, "fields": {"state_transition": 2295, "node_type": "S", "subcondition": 14, "parent": 8685}}, {"model": "template.logicnode", "pk": 8684, "fields": {"state_transition": 2295, "node_type": "S", "subcondition": 16, "parent": 8685}}, {"model": "template.logicnode", "pk": 8685, "fields": {"state_transition": 2295, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8686, "fields": {"state_transition": 2296, "node_type": "N", "subcondition": null, "parent": 8689}}, {"model": "template.logicnode", "pk": 8687, "fields": {"state_transition": 2296, "node_type": "S", "subcondition": 23, "parent": 8686}}, {"model": "template.logicnode", "pk": 8688, "fields": {"state_transition": 2296, "node_type": "S", "subcondition": 14, "parent": 8689}}, {"model": "template.logicnode", "pk": 8689, "fields": {"state_transition": 2296, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8690, "fields": {"state_transition": 2297, "node_type": "N", "subcondition": null, "parent": 8694}}, {"model": "template.logicnode", "pk": 8691, "fields": {"state_transition": 2297, "node_type": "S", "subcondition": 23, "parent": 8690}}, {"model": "template.logicnode", "pk": 8692, "fields": {"state_transition": 2297, "node_type": "S", "subcondition": 15, "parent": 8694}}, {"model": "template.logicnode", "pk": 8693, "fields": {"state_transition": 2297, "node_type": "S", "subcondition": 16, "parent": 8694}}, {"model": "template.logicnode", "pk": 8694, "fields": {"state_transition": 2297, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8695, "fields": {"state_transition": 2298, "node_type": "N", "subcondition": null, "parent": 8698}}, {"model": "template.logicnode", "pk": 8696, "fields": {"state_transition": 2298, "node_type": "S", "subcondition": 23, "parent": 8695}}, {"model": "template.logicnode", "pk": 8697, "fields": {"state_transition": 2298, "node_type": "S", "subcondition": 15, "parent": 8698}}, {"model": "template.logicnode", "pk": 8698, "fields": {"state_transition": 2298, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8699, "fields": {"state_transition": 2299, "node_type": "N", "subcondition": null, "parent": 8702}}, {"model": "template.logicnode", "pk": 8700, "fields": {"state_transition": 2299, "node_type": "S", "subcondition": 23, "parent": 8699}}, {"model": "template.logicnode", "pk": 8701, "fields": {"state_transition": 2299, "node_type": "S", "subcondition": 16, "parent": 8702}}, {"model": "template.logicnode", "pk": 8702, "fields": {"state_transition": 2299, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8703, "fields": {"state_transition": 2300, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8704, "fields": {"state_transition": 2300, "node_type": "S", "subcondition": 23, "parent": 8703}}, {"model": "template.logicnode", "pk": 8705, "fields": {"state_transition": 2301, "node_type": "S", "subcondition": 23, "parent": 8707}}, {"model": "template.logicnode", "pk": 8706, "fields": {"state_transition": 2301, "node_type": "S", "subcondition": 16, "parent": 8707}}, {"model": "template.logicnode", "pk": 8707, "fields": {"state_transition": 2301, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8708, "fields": {"state_transition": 2302, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8709, "fields": {"state_transition": 2303, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8710, "fields": {"state_transition": 2304, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8711, "fields": {"state_transition": 2305, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8712, "fields": {"state_transition": 2306, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8713, "fields": {"state_transition": 2307, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8714, "fields": {"state_transition": 2308, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8715, "fields": {"state_transition": 2309, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8716, "fields": {"state_transition": 2310, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8717, "fields": {"state_transition": 2311, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8718, "fields": {"state_transition": 2311, "node_type": "S", "subcondition": 23, "parent": 8717}}, {"model": "template.logicnode", "pk": 8719, "fields": {"state_transition": 2312, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8720, "fields": {"state_transition": 2313, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8721, "fields": {"state_transition": 2313, "node_type": "S", "subcondition": 23, "parent": 8720}}, {"model": "template.logicnode", "pk": 8722, "fields": {"state_transition": 2314, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8723, "fields": {"state_transition": 2315, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8724, "fields": {"state_transition": 2315, "node_type": "S", "subcondition": 23, "parent": 8723}}, {"model": "template.logicnode", "pk": 8725, "fields": {"state_transition": 2316, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8726, "fields": {"state_transition": 2317, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8727, "fields": {"state_transition": 2317, "node_type": "S", "subcondition": 23, "parent": 8726}}, {"model": "template.logicnode", "pk": 8728, "fields": {"state_transition": 2318, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8729, "fields": {"state_transition": 2319, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8730, "fields": {"state_transition": 2319, "node_type": "S", "subcondition": 23, "parent": 8729}}, {"model": "template.logicnode", "pk": 8731, "fields": {"state_transition": 2320, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8732, "fields": {"state_transition": 2321, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8733, "fields": {"state_transition": 2321, "node_type": "S", "subcondition": 23, "parent": 8732}}, {"model": "template.logicnode", "pk": 8734, "fields": {"state_transition": 2322, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8735, "fields": {"state_transition": 2323, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8736, "fields": {"state_transition": 2323, "node_type": "S", "subcondition": 23, "parent": 8735}}, {"model": "template.logicnode", "pk": 8737, "fields": {"state_transition": 2324, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8738, "fields": {"state_transition": 2325, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8739, "fields": {"state_transition": 2325, "node_type": "S", "subcondition": 23, "parent": 8738}}, {"model": "template.logicnode", "pk": 8740, "fields": {"state_transition": 2326, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8741, "fields": {"state_transition": 2327, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8742, "fields": {"state_transition": 2327, "node_type": "S", "subcondition": 23, "parent": 8741}}, {"model": "template.logicnode", "pk": 8743, "fields": {"state_transition": 2328, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8744, "fields": {"state_transition": 2329, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8745, "fields": {"state_transition": 2329, "node_type": "S", "subcondition": 23, "parent": 8744}}, {"model": "template.logicnode", "pk": 8746, "fields": {"state_transition": 2330, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8747, "fields": {"state_transition": 2331, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8748, "fields": {"state_transition": 2331, "node_type": "S", "subcondition": 23, "parent": 8747}}, {"model": "template.logicnode", "pk": 8749, "fields": {"state_transition": 2332, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8750, "fields": {"state_transition": 2333, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8751, "fields": {"state_transition": 2333, "node_type": "S", "subcondition": 23, "parent": 8750}}, {"model": "template.logicnode", "pk": 8752, "fields": {"state_transition": 2334, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8753, "fields": {"state_transition": 2335, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8754, "fields": {"state_transition": 2335, "node_type": "S", "subcondition": 23, "parent": 8753}}, {"model": "template.logicnode", "pk": 8755, "fields": {"state_transition": 2336, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8756, "fields": {"state_transition": 2337, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8757, "fields": {"state_transition": 2337, "node_type": "S", "subcondition": 23, "parent": 8756}}, {"model": "template.logicnode", "pk": 8758, "fields": {"state_transition": 2338, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8759, "fields": {"state_transition": 2339, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8760, "fields": {"state_transition": 2339, "node_type": "S", "subcondition": 23, "parent": 8759}}, {"model": "template.logicnode", "pk": 8761, "fields": {"state_transition": 2340, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8762, "fields": {"state_transition": 2341, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8763, "fields": {"state_transition": 2341, "node_type": "S", "subcondition": 23, "parent": 8762}}, {"model": "template.logicnode", "pk": 8764, "fields": {"state_transition": 2342, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8765, "fields": {"state_transition": 2343, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8766, "fields": {"state_transition": 2343, "node_type": "S", "subcondition": 23, "parent": 8765}}, {"model": "template.logicnode", "pk": 8767, "fields": {"state_transition": 2344, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8768, "fields": {"state_transition": 2345, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8769, "fields": {"state_transition": 2345, "node_type": "S", "subcondition": 23, "parent": 8768}}, {"model": "template.logicnode", "pk": 8770, "fields": {"state_transition": 2346, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8771, "fields": {"state_transition": 2347, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8772, "fields": {"state_transition": 2347, "node_type": "S", "subcondition": 23, "parent": 8771}}, {"model": "template.logicnode", "pk": 8773, "fields": {"state_transition": 2348, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8774, "fields": {"state_transition": 2349, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8775, "fields": {"state_transition": 2349, "node_type": "S", "subcondition": 23, "parent": 8774}}, {"model": "template.logicnode", "pk": 8776, "fields": {"state_transition": 2350, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8777, "fields": {"state_transition": 2351, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8778, "fields": {"state_transition": 2351, "node_type": "S", "subcondition": 23, "parent": 8777}}, {"model": "template.logicnode", "pk": 8779, "fields": {"state_transition": 2352, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8780, "fields": {"state_transition": 2353, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8781, "fields": {"state_transition": 2353, "node_type": "S", "subcondition": 23, "parent": 8780}}, {"model": "template.logicnode", "pk": 8782, "fields": {"state_transition": 2354, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8783, "fields": {"state_transition": 2355, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8784, "fields": {"state_transition": 2355, "node_type": "S", "subcondition": 23, "parent": 8783}}, {"model": "template.logicnode", "pk": 8785, "fields": {"state_transition": 2356, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8786, "fields": {"state_transition": 2357, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8787, "fields": {"state_transition": 2357, "node_type": "S", "subcondition": 23, "parent": 8786}}, {"model": "template.logicnode", "pk": 8788, "fields": {"state_transition": 2358, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8789, "fields": {"state_transition": 2359, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8790, "fields": {"state_transition": 2359, "node_type": "S", "subcondition": 23, "parent": 8789}}, {"model": "template.logicnode", "pk": 8791, "fields": {"state_transition": 2360, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8792, "fields": {"state_transition": 2361, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8793, "fields": {"state_transition": 2361, "node_type": "S", "subcondition": 23, "parent": 8792}}, {"model": "template.logicnode", "pk": 8794, "fields": {"state_transition": 2362, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8795, "fields": {"state_transition": 2363, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8796, "fields": {"state_transition": 2363, "node_type": "S", "subcondition": 23, "parent": 8795}}, {"model": "template.logicnode", "pk": 8797, "fields": {"state_transition": 2364, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8798, "fields": {"state_transition": 2365, "node_type": "N", "subcondition": null, "parent": 8802}}, {"model": "template.logicnode", "pk": 8799, "fields": {"state_transition": 2365, "node_type": "S", "subcondition": 23, "parent": 8798}}, {"model": "template.logicnode", "pk": 8800, "fields": {"state_transition": 2365, "node_type": "S", "subcondition": 11, "parent": 8802}}, {"model": "template.logicnode", "pk": 8801, "fields": {"state_transition": 2365, "node_type": "S", "subcondition": 9, "parent": 8802}}, {"model": "template.logicnode", "pk": 8802, "fields": {"state_transition": 2365, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8803, "fields": {"state_transition": 2366, "node_type": "N", "subcondition": null, "parent": 8806}}, {"model": "template.logicnode", "pk": 8804, "fields": {"state_transition": 2366, "node_type": "S", "subcondition": 23, "parent": 8803}}, {"model": "template.logicnode", "pk": 8805, "fields": {"state_transition": 2366, "node_type": "S", "subcondition": 11, "parent": 8806}}, {"model": "template.logicnode", "pk": 8806, "fields": {"state_transition": 2366, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8807, "fields": {"state_transition": 2367, "node_type": "N", "subcondition": null, "parent": 8810}}, {"model": "template.logicnode", "pk": 8808, "fields": {"state_transition": 2367, "node_type": "S", "subcondition": 23, "parent": 8807}}, {"model": "template.logicnode", "pk": 8809, "fields": {"state_transition": 2367, "node_type": "S", "subcondition": 9, "parent": 8810}}, {"model": "template.logicnode", "pk": 8810, "fields": {"state_transition": 2367, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8811, "fields": {"state_transition": 2368, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8812, "fields": {"state_transition": 2368, "node_type": "S", "subcondition": 23, "parent": 8811}}, {"model": "template.logicnode", "pk": 8813, "fields": {"state_transition": 2369, "node_type": "S", "subcondition": 23, "parent": 8815}}, {"model": "template.logicnode", "pk": 8814, "fields": {"state_transition": 2369, "node_type": "S", "subcondition": 9, "parent": 8815}}, {"model": "template.logicnode", "pk": 8815, "fields": {"state_transition": 2369, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8816, "fields": {"state_transition": 2370, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8817, "fields": {"state_transition": 2371, "node_type": "N", "subcondition": null, "parent": 8821}}, {"model": "template.logicnode", "pk": 8818, "fields": {"state_transition": 2371, "node_type": "S", "subcondition": 23, "parent": 8817}}, {"model": "template.logicnode", "pk": 8819, "fields": {"state_transition": 2371, "node_type": "S", "subcondition": 11, "parent": 8821}}, {"model": "template.logicnode", "pk": 8820, "fields": {"state_transition": 2371, "node_type": "S", "subcondition": 9, "parent": 8821}}, {"model": "template.logicnode", "pk": 8821, "fields": {"state_transition": 2371, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8822, "fields": {"state_transition": 2372, "node_type": "N", "subcondition": null, "parent": 8825}}, {"model": "template.logicnode", "pk": 8823, "fields": {"state_transition": 2372, "node_type": "S", "subcondition": 23, "parent": 8822}}, {"model": "template.logicnode", "pk": 8824, "fields": {"state_transition": 2372, "node_type": "S", "subcondition": 11, "parent": 8825}}, {"model": "template.logicnode", "pk": 8825, "fields": {"state_transition": 2372, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8826, "fields": {"state_transition": 2373, "node_type": "N", "subcondition": null, "parent": 8829}}, {"model": "template.logicnode", "pk": 8827, "fields": {"state_transition": 2373, "node_type": "S", "subcondition": 23, "parent": 8826}}, {"model": "template.logicnode", "pk": 8828, "fields": {"state_transition": 2373, "node_type": "S", "subcondition": 9, "parent": 8829}}, {"model": "template.logicnode", "pk": 8829, "fields": {"state_transition": 2373, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8830, "fields": {"state_transition": 2374, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8831, "fields": {"state_transition": 2374, "node_type": "S", "subcondition": 23, "parent": 8830}}, {"model": "template.logicnode", "pk": 8832, "fields": {"state_transition": 2375, "node_type": "S", "subcondition": 23, "parent": 8834}}, {"model": "template.logicnode", "pk": 8833, "fields": {"state_transition": 2375, "node_type": "S", "subcondition": 9, "parent": 8834}}, {"model": "template.logicnode", "pk": 8834, "fields": {"state_transition": 2375, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8835, "fields": {"state_transition": 2376, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8836, "fields": {"state_transition": 2377, "node_type": "N", "subcondition": null, "parent": 8840}}, {"model": "template.logicnode", "pk": 8837, "fields": {"state_transition": 2377, "node_type": "S", "subcondition": 23, "parent": 8836}}, {"model": "template.logicnode", "pk": 8838, "fields": {"state_transition": 2377, "node_type": "S", "subcondition": 11, "parent": 8840}}, {"model": "template.logicnode", "pk": 8839, "fields": {"state_transition": 2377, "node_type": "S", "subcondition": 9, "parent": 8840}}, {"model": "template.logicnode", "pk": 8840, "fields": {"state_transition": 2377, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8841, "fields": {"state_transition": 2378, "node_type": "N", "subcondition": null, "parent": 8844}}, {"model": "template.logicnode", "pk": 8842, "fields": {"state_transition": 2378, "node_type": "S", "subcondition": 23, "parent": 8841}}, {"model": "template.logicnode", "pk": 8843, "fields": {"state_transition": 2378, "node_type": "S", "subcondition": 11, "parent": 8844}}, {"model": "template.logicnode", "pk": 8844, "fields": {"state_transition": 2378, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8845, "fields": {"state_transition": 2379, "node_type": "N", "subcondition": null, "parent": 8848}}, {"model": "template.logicnode", "pk": 8846, "fields": {"state_transition": 2379, "node_type": "S", "subcondition": 23, "parent": 8845}}, {"model": "template.logicnode", "pk": 8847, "fields": {"state_transition": 2379, "node_type": "S", "subcondition": 9, "parent": 8848}}, {"model": "template.logicnode", "pk": 8848, "fields": {"state_transition": 2379, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8849, "fields": {"state_transition": 2380, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8850, "fields": {"state_transition": 2380, "node_type": "S", "subcondition": 23, "parent": 8849}}, {"model": "template.logicnode", "pk": 8851, "fields": {"state_transition": 2381, "node_type": "S", "subcondition": 23, "parent": 8853}}, {"model": "template.logicnode", "pk": 8852, "fields": {"state_transition": 2381, "node_type": "S", "subcondition": 9, "parent": 8853}}, {"model": "template.logicnode", "pk": 8853, "fields": {"state_transition": 2381, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8854, "fields": {"state_transition": 2382, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8855, "fields": {"state_transition": 2383, "node_type": "N", "subcondition": null, "parent": 8859}}, {"model": "template.logicnode", "pk": 8856, "fields": {"state_transition": 2383, "node_type": "S", "subcondition": 23, "parent": 8855}}, {"model": "template.logicnode", "pk": 8857, "fields": {"state_transition": 2383, "node_type": "S", "subcondition": 11, "parent": 8859}}, {"model": "template.logicnode", "pk": 8858, "fields": {"state_transition": 2383, "node_type": "S", "subcondition": 9, "parent": 8859}}, {"model": "template.logicnode", "pk": 8859, "fields": {"state_transition": 2383, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8860, "fields": {"state_transition": 2384, "node_type": "N", "subcondition": null, "parent": 8863}}, {"model": "template.logicnode", "pk": 8861, "fields": {"state_transition": 2384, "node_type": "S", "subcondition": 23, "parent": 8860}}, {"model": "template.logicnode", "pk": 8862, "fields": {"state_transition": 2384, "node_type": "S", "subcondition": 11, "parent": 8863}}, {"model": "template.logicnode", "pk": 8863, "fields": {"state_transition": 2384, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8864, "fields": {"state_transition": 2385, "node_type": "N", "subcondition": null, "parent": 8867}}, {"model": "template.logicnode", "pk": 8865, "fields": {"state_transition": 2385, "node_type": "S", "subcondition": 23, "parent": 8864}}, {"model": "template.logicnode", "pk": 8866, "fields": {"state_transition": 2385, "node_type": "S", "subcondition": 9, "parent": 8867}}, {"model": "template.logicnode", "pk": 8867, "fields": {"state_transition": 2385, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8868, "fields": {"state_transition": 2386, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8869, "fields": {"state_transition": 2386, "node_type": "S", "subcondition": 23, "parent": 8868}}, {"model": "template.logicnode", "pk": 8870, "fields": {"state_transition": 2387, "node_type": "S", "subcondition": 23, "parent": 8872}}, {"model": "template.logicnode", "pk": 8871, "fields": {"state_transition": 2387, "node_type": "S", "subcondition": 9, "parent": 8872}}, {"model": "template.logicnode", "pk": 8872, "fields": {"state_transition": 2387, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8873, "fields": {"state_transition": 2388, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8874, "fields": {"state_transition": 2389, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8875, "fields": {"state_transition": 2390, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8876, "fields": {"state_transition": 2391, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8877, "fields": {"state_transition": 2392, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8878, "fields": {"state_transition": 2393, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8879, "fields": {"state_transition": 2394, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8880, "fields": {"state_transition": 2395, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8881, "fields": {"state_transition": 2396, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8882, "fields": {"state_transition": 2397, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8883, "fields": {"state_transition": 2398, "node_type": "T", "subcondition": null, "parent": null}}] \ No newline at end of file +[{"model": "template.patientstate", "pk": 1, "fields": {"code": 1001, "state_id": 101, "transition": 138, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 143/083"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2, "fields": {"code": 1001, "state_id": 201, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 111/025"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 3, "fields": {"code": 1001, "state_id": 202, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 119/032"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 4, "fields": {"code": 1001, "state_id": 203, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 10 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 116/032"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 5, "fields": {"code": 1001, "state_id": 204, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 124/039"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 6, "fields": {"code": 1001, "state_id": 205, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 9 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 121/039"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 7, "fields": {"code": 1001, "state_id": 206, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 129/046"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 8, "fields": {"code": 1001, "state_id": 207, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 8 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 126/046"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 9, "fields": {"code": 1001, "state_id": 208, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 10 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 134/053"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 10, "fields": {"code": 1001, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 7 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 131/053"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 11, "fields": {"code": 1001, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 148/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 12, "fields": {"code": 1001, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 8 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 134/053"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 13, "fields": {"code": 1001, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 151/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 14, "fields": {"code": 1001, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 148/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 15, "fields": {"code": 1001, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 147/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 16, "fields": {"code": 1001, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 151/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 17, "fields": {"code": 1001, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 132/059"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 18, "fields": {"code": 1001, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 8 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 132/058"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 19, "fields": {"code": 1001, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 149/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 20, "fields": {"code": 1001, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 9 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 135/058"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 21, "fields": {"code": 1001, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 94 /min\nperipher kräftig tastbar\nRR: 152/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 22, "fields": {"code": 1001, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 149/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 23, "fields": {"code": 1001, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 148/091"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 24, "fields": {"code": 1001, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 94 /min\nperipher kräftig tastbar\nRR: 152/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 25, "fields": {"code": 1001, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 133/064"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 26, "fields": {"code": 1001, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 146/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 27, "fields": {"code": 1001, "state_id": 218, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 151/083"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 28, "fields": {"code": 1001, "state_id": 228, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 91 /min\nperipher kräftig tastbar\nRR: 137/053"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 29, "fields": {"code": 1001, "state_id": 238, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 154/083"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 30, "fields": {"code": 1001, "state_id": 248, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 151/083"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 31, "fields": {"code": 1001, "state_id": 258, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 152/089"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 32, "fields": {"code": 1001, "state_id": 268, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 154/083"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 33, "fields": {"code": 1001, "state_id": 278, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 139/065"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 34, "fields": {"code": 1001, "state_id": 288, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 135/058"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 35, "fields": {"code": 1001, "state_id": 298, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 152/088"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "0", "is_dead": false}}, {"model": "template.patientstate", "pk": 36, "fields": {"code": 1001, "state_id": 308, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 138/058"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 37, "fields": {"code": 1001, "state_id": 318, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 97 /min\nperipher kräftig tastbar\nRR: 155/088"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 38, "fields": {"code": 1001, "state_id": 328, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 152/088"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 39, "fields": {"code": 1001, "state_id": 338, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 153/094"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 40, "fields": {"code": 1001, "state_id": 348, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 97 /min\nperipher kräftig tastbar\nRR: 155/088"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 41, "fields": {"code": 1001, "state_id": 358, "transition": 2, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 92 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 140/070"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 42, "fields": {"code": 1001, "state_id": 758, "transition": 2, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 149/083"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 43, "fields": {"code": 1001, "state_id": 217, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 143/076"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 44, "fields": {"code": 1001, "state_id": 227, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 9 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 129/046"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 45, "fields": {"code": 1001, "state_id": 237, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 146/076"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 46, "fields": {"code": 1001, "state_id": 247, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 143/076"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 47, "fields": {"code": 1001, "state_id": 257, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 146/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 48, "fields": {"code": 1001, "state_id": 267, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 146/076"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 49, "fields": {"code": 1001, "state_id": 277, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 135/064"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 50, "fields": {"code": 1001, "state_id": 287, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 9 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 127/051"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 51, "fields": {"code": 1001, "state_id": 297, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 144/081"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 52, "fields": {"code": 1001, "state_id": 307, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 10 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 130/051"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 53, "fields": {"code": 1001, "state_id": 317, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 147/081"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 54, "fields": {"code": 1001, "state_id": 327, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 144/081"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 55, "fields": {"code": 1001, "state_id": 337, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 147/090"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 56, "fields": {"code": 1001, "state_id": 347, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 147/081"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 57, "fields": {"code": 1001, "state_id": 357, "transition": 19, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 92 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 136/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 58, "fields": {"code": 1001, "state_id": 757, "transition": 19, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 141/076"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 59, "fields": {"code": 1001, "state_id": 216, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 146/076"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 60, "fields": {"code": 1001, "state_id": 226, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 132/046"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 61, "fields": {"code": 1001, "state_id": 236, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 149/076"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 62, "fields": {"code": 1001, "state_id": 246, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 146/076"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 63, "fields": {"code": 1001, "state_id": 256, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 151/088"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 64, "fields": {"code": 1001, "state_id": 266, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 149/076"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 65, "fields": {"code": 1001, "state_id": 276, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 142/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 66, "fields": {"code": 1001, "state_id": 286, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 130/051"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 67, "fields": {"code": 1001, "state_id": 296, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 147/081"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 68, "fields": {"code": 1001, "state_id": 306, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 133/051"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 69, "fields": {"code": 1001, "state_id": 316, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 150/081"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 70, "fields": {"code": 1001, "state_id": 326, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 147/081"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 71, "fields": {"code": 1001, "state_id": 336, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 152/093"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 72, "fields": {"code": 1001, "state_id": 346, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 150/081"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 73, "fields": {"code": 1001, "state_id": 356, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 94 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 143/075"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 74, "fields": {"code": 1001, "state_id": 756, "transition": 36, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 144/076"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 75, "fields": {"code": 1001, "state_id": 215, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 138/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 76, "fields": {"code": 1001, "state_id": 225, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 10 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 124/039"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 77, "fields": {"code": 1001, "state_id": 235, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 78, "fields": {"code": 1001, "state_id": 245, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 138/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 79, "fields": {"code": 1001, "state_id": 255, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 145/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 80, "fields": {"code": 1001, "state_id": 265, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 81, "fields": {"code": 1001, "state_id": 275, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 138/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 82, "fields": {"code": 1001, "state_id": 285, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 10 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 122/044"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 83, "fields": {"code": 1001, "state_id": 295, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 139/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 84, "fields": {"code": 1001, "state_id": 305, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 125/044"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 85, "fields": {"code": 1001, "state_id": 315, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 142/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 86, "fields": {"code": 1001, "state_id": 325, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 139/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 87, "fields": {"code": 1001, "state_id": 335, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 146/089"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 88, "fields": {"code": 1001, "state_id": 345, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 142/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 89, "fields": {"code": 1001, "state_id": 355, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 94 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 139/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 90, "fields": {"code": 1001, "state_id": 755, "transition": 53, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 136/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 91, "fields": {"code": 1001, "state_id": 214, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 92, "fields": {"code": 1001, "state_id": 224, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 127/039"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 93, "fields": {"code": 1001, "state_id": 234, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 144/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 94, "fields": {"code": 1001, "state_id": 244, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 95, "fields": {"code": 1001, "state_id": 254, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 150/087"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 96, "fields": {"code": 1001, "state_id": 264, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 144/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 97, "fields": {"code": 1001, "state_id": 274, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 145/075"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 98, "fields": {"code": 1001, "state_id": 284, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 125/044"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 99, "fields": {"code": 1001, "state_id": 294, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 142/074"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 100, "fields": {"code": 1001, "state_id": 304, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 128/044"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 101, "fields": {"code": 1001, "state_id": 314, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 145/074"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 102, "fields": {"code": 1001, "state_id": 324, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 142/074"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 103, "fields": {"code": 1001, "state_id": 334, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 151/092"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 104, "fields": {"code": 1001, "state_id": 344, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 145/074"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 105, "fields": {"code": 1001, "state_id": 354, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 146/080"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 106, "fields": {"code": 1001, "state_id": 754, "transition": 70, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 139/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 107, "fields": {"code": 1001, "state_id": 213, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 133/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 108, "fields": {"code": 1001, "state_id": 223, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 119/032"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 109, "fields": {"code": 1001, "state_id": 233, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 136/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 110, "fields": {"code": 1001, "state_id": 243, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 133/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 111, "fields": {"code": 1001, "state_id": 253, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 144/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 112, "fields": {"code": 1001, "state_id": 263, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 136/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 113, "fields": {"code": 1001, "state_id": 273, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 141/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 114, "fields": {"code": 1001, "state_id": 283, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 117/037"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 115, "fields": {"code": 1001, "state_id": 293, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 134/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 116, "fields": {"code": 1001, "state_id": 303, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 120/037"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 117, "fields": {"code": 1001, "state_id": 313, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 137/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 118, "fields": {"code": 1001, "state_id": 323, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 134/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 119, "fields": {"code": 1001, "state_id": 333, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 145/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 120, "fields": {"code": 1001, "state_id": 343, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 137/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 121, "fields": {"code": 1001, "state_id": 353, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 142/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 122, "fields": {"code": 1001, "state_id": 753, "transition": 87, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 131/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 123, "fields": {"code": 1001, "state_id": 212, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 136/062"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 124, "fields": {"code": 1001, "state_id": 222, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 122/032"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 125, "fields": {"code": 1001, "state_id": 232, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 139/062"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 126, "fields": {"code": 1001, "state_id": 242, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 136/062"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 127, "fields": {"code": 1001, "state_id": 252, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 149/086"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 128, "fields": {"code": 1001, "state_id": 262, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 139/062"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 129, "fields": {"code": 1001, "state_id": 272, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 148/080"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 130, "fields": {"code": 1001, "state_id": 282, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 120/037"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 131, "fields": {"code": 1001, "state_id": 292, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 137/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 132, "fields": {"code": 1001, "state_id": 302, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 123/037"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 133, "fields": {"code": 1001, "state_id": 312, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 140/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 134, "fields": {"code": 1001, "state_id": 322, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 137/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 135, "fields": {"code": 1001, "state_id": 332, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 150/091"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 136, "fields": {"code": 1001, "state_id": 342, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 140/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 137, "fields": {"code": 1001, "state_id": 352, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 149/085"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 138, "fields": {"code": 1001, "state_id": 752, "transition": 104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 134/062"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 139, "fields": {"code": 1001, "state_id": 211, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 128/055"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 140, "fields": {"code": 1001, "state_id": 221, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 114/025"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 141, "fields": {"code": 1001, "state_id": 231, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 131/055"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 142, "fields": {"code": 1001, "state_id": 241, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 128/055"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 143, "fields": {"code": 1001, "state_id": 251, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 143/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 144, "fields": {"code": 1001, "state_id": 261, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 131/055"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 145, "fields": {"code": 1001, "state_id": 271, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 144/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 146, "fields": {"code": 1001, "state_id": 281, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 112/030"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 147, "fields": {"code": 1001, "state_id": 291, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 129/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 148, "fields": {"code": 1001, "state_id": 301, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 115/030"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 149, "fields": {"code": 1001, "state_id": 311, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 150, "fields": {"code": 1001, "state_id": 321, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 129/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 151, "fields": {"code": 1001, "state_id": 331, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 144/087"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 152, "fields": {"code": 1001, "state_id": 341, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 153, "fields": {"code": 1001, "state_id": 351, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 145/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 154, "fields": {"code": 1001, "state_id": 751, "transition": 121, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 126/055"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 155, "fields": {"code": 1001, "state_id": 551, "transition": 138, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 138/083"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 156, "fields": {"code": 1002, "state_id": 101, "transition": 260, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 94 /min\nperipher kräftig tastbar\nRR: 145/065"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 702, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 157, "fields": {"code": 1002, "state_id": 102, "transition": 259, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 97 /min\nperipher kräftig tastbar\nRR: 147/068"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 702, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 158, "fields": {"code": 1002, "state_id": 103, "transition": 258, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 94 /min\nperipher kräftig tastbar\nRR: 144/066"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 702, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 159, "fields": {"code": 1002, "state_id": 104, "transition": 257, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 97 /min\nperipher kräftig tastbar\nRR: 146/069"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 702, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 160, "fields": {"code": 1002, "state_id": 105, "transition": 237, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 111 /min\nperipher tastbar\nRR: 122/069"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 735, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 161, "fields": {"code": 1002, "state_id": 205, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 162, "fields": {"code": 1002, "state_id": 206, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 163, "fields": {"code": 1002, "state_id": 207, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 164, "fields": {"code": 1002, "state_id": 208, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 165, "fields": {"code": 1002, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 166, "fields": {"code": 1002, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 49 /min\nnur zentral noch tastbar\nRR: 63/037"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 167, "fields": {"code": 1002, "state_id": 500, "transition": 1, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfrequenz: 0 /min\nSpO2: n.m. %\nAtemstillstand", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 168, "fields": {"code": 1002, "state_id": 502, "transition": 1, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 169, "fields": {"code": 1002, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 170, "fields": {"code": 1002, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 49 /min\nnur zentral noch tastbar\nRR: 63/037"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 171, "fields": {"code": 1002, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 172, "fields": {"code": 1002, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 41 /min\nzentral nicht tastbar\nRR: 35/025"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 173, "fields": {"code": 1002, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 174, "fields": {"code": 1002, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 41 /min\nzentral nicht tastbar\nRR: 35/025"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 175, "fields": {"code": 1002, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 176, "fields": {"code": 1002, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 49 /min\nnur zentral noch tastbar\nRR: 63/037"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 177, "fields": {"code": 1002, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 178, "fields": {"code": 1002, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 41 /min\nzentral nicht tastbar\nRR: 35/025"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 179, "fields": {"code": 1002, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 180, "fields": {"code": 1002, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 41 /min\nzentral nicht tastbar\nRR: 35/025"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 181, "fields": {"code": 1002, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 182, "fields": {"code": 1002, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 41 /min\nzentral nicht tastbar\nRR: 35/025"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 183, "fields": {"code": 1002, "state_id": 709, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 184, "fields": {"code": 1002, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 49 /min\nnur zentral noch tastbar\nRR: 63/037"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 185, "fields": {"code": 1002, "state_id": 749, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 134/091"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 186, "fields": {"code": 1002, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 41 /min\nzentral nicht tastbar\nRR: 35/025"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 187, "fields": {"code": 1002, "state_id": 218, "transition": 157, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 50 /min\nnur zentral noch tastbar\nRR: 66/039"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 188, "fields": {"code": 1002, "state_id": 228, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 189, "fields": {"code": 1002, "state_id": 238, "transition": 157, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 50 /min\nnur zentral noch tastbar\nRR: 66/039"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 190, "fields": {"code": 1002, "state_id": 248, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 191, "fields": {"code": 1002, "state_id": 258, "transition": 157, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 44 /min\nzentral nicht tastbar\nRR: 45/030"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 192, "fields": {"code": 1002, "state_id": 268, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 193, "fields": {"code": 1002, "state_id": 278, "transition": 157, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 44 /min\nzentral nicht tastbar\nRR: 45/030"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 194, "fields": {"code": 1002, "state_id": 288, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 195, "fields": {"code": 1002, "state_id": 298, "transition": 157, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 50 /min\nnur zentral noch tastbar\nRR: 66/039"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 196, "fields": {"code": 1002, "state_id": 308, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 197, "fields": {"code": 1002, "state_id": 318, "transition": 157, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 44 /min\nzentral nicht tastbar\nRR: 45/030"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 198, "fields": {"code": 1002, "state_id": 328, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 199, "fields": {"code": 1002, "state_id": 338, "transition": 157, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 44 /min\nzentral nicht tastbar\nRR: 45/030"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 200, "fields": {"code": 1002, "state_id": 348, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 201, "fields": {"code": 1002, "state_id": 358, "transition": 157, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 44 /min\nzentral nicht tastbar\nRR: 45/030"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 202, "fields": {"code": 1002, "state_id": 708, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 203, "fields": {"code": 1002, "state_id": 718, "transition": 156, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 50 /min\nnur zentral noch tastbar\nRR: 66/039"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 204, "fields": {"code": 1002, "state_id": 748, "transition": 155, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 135/090"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 205, "fields": {"code": 1002, "state_id": 758, "transition": 156, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 44 /min\nzentral nicht tastbar\nRR: 45/030"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 206, "fields": {"code": 1002, "state_id": 217, "transition": 177, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 49 /min\nnur zentral noch tastbar\nRR: 64/036"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 207, "fields": {"code": 1002, "state_id": 227, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 208, "fields": {"code": 1002, "state_id": 237, "transition": 177, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 49 /min\nnur zentral noch tastbar\nRR: 64/036"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 209, "fields": {"code": 1002, "state_id": 247, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 210, "fields": {"code": 1002, "state_id": 257, "transition": 177, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 45 /min\nnur zentral noch tastbar\nRR: 50/030"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 211, "fields": {"code": 1002, "state_id": 267, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 212, "fields": {"code": 1002, "state_id": 277, "transition": 177, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 45 /min\nnur zentral noch tastbar\nRR: 50/030"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 213, "fields": {"code": 1002, "state_id": 287, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 214, "fields": {"code": 1002, "state_id": 297, "transition": 177, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 49 /min\nnur zentral noch tastbar\nRR: 64/036"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 215, "fields": {"code": 1002, "state_id": 307, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 216, "fields": {"code": 1002, "state_id": 317, "transition": 177, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 45 /min\nnur zentral noch tastbar\nRR: 50/030"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 217, "fields": {"code": 1002, "state_id": 327, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 218, "fields": {"code": 1002, "state_id": 337, "transition": 177, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 45 /min\nnur zentral noch tastbar\nRR: 50/030"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 219, "fields": {"code": 1002, "state_id": 347, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 220, "fields": {"code": 1002, "state_id": 357, "transition": 177, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 45 /min\nnur zentral noch tastbar\nRR: 50/030"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 221, "fields": {"code": 1002, "state_id": 707, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 222, "fields": {"code": 1002, "state_id": 717, "transition": 177, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 49 /min\nnur zentral noch tastbar\nRR: 64/036"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 223, "fields": {"code": 1002, "state_id": 747, "transition": 177, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/084"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 224, "fields": {"code": 1002, "state_id": 757, "transition": 177, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 45 /min\nnur zentral noch tastbar\nRR: 50/030"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 225, "fields": {"code": 1002, "state_id": 216, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 50 /min\nnur zentral noch tastbar\nRR: 67/038"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 226, "fields": {"code": 1002, "state_id": 226, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 227, "fields": {"code": 1002, "state_id": 236, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 50 /min\nnur zentral noch tastbar\nRR: 67/038"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 228, "fields": {"code": 1002, "state_id": 246, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 229, "fields": {"code": 1002, "state_id": 256, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 48 /min\nnur zentral noch tastbar\nRR: 60/035"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 230, "fields": {"code": 1002, "state_id": 266, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 231, "fields": {"code": 1002, "state_id": 276, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 48 /min\nnur zentral noch tastbar\nRR: 60/035"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 232, "fields": {"code": 1002, "state_id": 286, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 233, "fields": {"code": 1002, "state_id": 296, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 50 /min\nnur zentral noch tastbar\nRR: 67/038"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 234, "fields": {"code": 1002, "state_id": 306, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 235, "fields": {"code": 1002, "state_id": 316, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 48 /min\nnur zentral noch tastbar\nRR: 60/035"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 236, "fields": {"code": 1002, "state_id": 326, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 237, "fields": {"code": 1002, "state_id": 336, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 48 /min\nnur zentral noch tastbar\nRR: 60/035"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 238, "fields": {"code": 1002, "state_id": 346, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 239, "fields": {"code": 1002, "state_id": 356, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 0 % nicht messbar\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 48 /min\nnur zentral noch tastbar\nRR: 60/035"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 240, "fields": {"code": 1002, "state_id": 706, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 241, "fields": {"code": 1002, "state_id": 716, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 50 /min\nnur zentral noch tastbar\nRR: 67/038"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 242, "fields": {"code": 1002, "state_id": 746, "transition": 197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 132/083"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 243, "fields": {"code": 1002, "state_id": 756, "transition": 197, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 48 /min\nnur zentral noch tastbar\nRR: 60/035"}, "examination_codes": {"BZ": 955, "Hb": 424, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 667, "Infarkt": 132, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 244, "fields": {"code": 1002, "state_id": 215, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 101/037"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 245, "fields": {"code": 1002, "state_id": 225, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 246, "fields": {"code": 1002, "state_id": 235, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 109/067"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 247, "fields": {"code": 1002, "state_id": 245, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 248, "fields": {"code": 1002, "state_id": 255, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 103/040"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 249, "fields": {"code": 1002, "state_id": 265, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 250, "fields": {"code": 1002, "state_id": 275, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher tastbar\nRR: 111/070"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 251, "fields": {"code": 1002, "state_id": 285, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 252, "fields": {"code": 1002, "state_id": 295, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher tastbar\nRR: 101/037"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 253, "fields": {"code": 1002, "state_id": 305, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 254, "fields": {"code": 1002, "state_id": 315, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 95 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 111 /min\nperipher tastbar\nRR: 102/064"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 255, "fields": {"code": 1002, "state_id": 325, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 256, "fields": {"code": 1002, "state_id": 335, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 103/040"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 257, "fields": {"code": 1002, "state_id": 345, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 258, "fields": {"code": 1002, "state_id": 355, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 95 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 111/070"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 259, "fields": {"code": 1002, "state_id": 705, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 260, "fields": {"code": 1002, "state_id": 715, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 109/067"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 261, "fields": {"code": 1002, "state_id": 745, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 137, "Gerinnung": 107, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 262, "fields": {"code": 1002, "state_id": 755, "transition": 217, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 105 /min\nperipher tastbar\nRR: 111/070"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 735, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 263, "fields": {"code": 1002, "state_id": 551, "transition": 264, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 140/065"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 702, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 264, "fields": {"code": 1002, "state_id": 552, "transition": 263, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 91 /min\nperipher kräftig tastbar\nRR: 142/068"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 702, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 265, "fields": {"code": 1002, "state_id": 553, "transition": 262, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 139/066"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 702, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 266, "fields": {"code": 1002, "state_id": 554, "transition": 261, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 91 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 702, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 267, "fields": {"code": 1002, "state_id": 555, "transition": 237, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 111 /min\nperipher tastbar\nRR: 122/069"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 735, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 137, "Gerinnung": 104, "Trauma-CT": 161, "Rö-Thorax": 327, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 268, "fields": {"code": 1003, "state_id": 101, "transition": 301, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 269, "fields": {"code": 1003, "state_id": 102, "transition": 300, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 270, "fields": {"code": 1003, "state_id": 103, "transition": 295, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 147/076"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 271, "fields": {"code": 1003, "state_id": 233, "transition": 290, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 272, "fields": {"code": 1003, "state_id": 234, "transition": 285, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 134/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 273, "fields": {"code": 1003, "state_id": 235, "transition": 280, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 127/057"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 274, "fields": {"code": 1003, "state_id": 236, "transition": 275, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 131/058"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 275, "fields": {"code": 1003, "state_id": 237, "transition": 270, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 124/052"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 276, "fields": {"code": 1003, "state_id": 238, "transition": 265, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 128/053"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 277, "fields": {"code": 1003, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 121/047"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 278, "fields": {"code": 1003, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 167/099"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 279, "fields": {"code": 1003, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 122/052"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 280, "fields": {"code": 1003, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 168/104"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 281, "fields": {"code": 1003, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 282, "fields": {"code": 1003, "state_id": 278, "transition": 265, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 170/099"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 283, "fields": {"code": 1003, "state_id": 318, "transition": 265, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 129/058"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 284, "fields": {"code": 1003, "state_id": 358, "transition": 265, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 171/104"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 285, "fields": {"code": 1003, "state_id": 718, "transition": 265, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 286, "fields": {"code": 1003, "state_id": 277, "transition": 270, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 162/092"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 287, "fields": {"code": 1003, "state_id": 317, "transition": 270, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher tastbar\nRR: 125/057"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 288, "fields": {"code": 1003, "state_id": 357, "transition": 270, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 163/097"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 289, "fields": {"code": 1003, "state_id": 717, "transition": 270, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 290, "fields": {"code": 1003, "state_id": 276, "transition": 275, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 165/092"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 291, "fields": {"code": 1003, "state_id": 316, "transition": 275, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 132/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 292, "fields": {"code": 1003, "state_id": 356, "transition": 275, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 166/097"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 293, "fields": {"code": 1003, "state_id": 716, "transition": 275, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 134/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 294, "fields": {"code": 1003, "state_id": 275, "transition": 280, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 157/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 295, "fields": {"code": 1003, "state_id": 315, "transition": 280, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 128/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 296, "fields": {"code": 1003, "state_id": 355, "transition": 280, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 158/090"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 297, "fields": {"code": 1003, "state_id": 715, "transition": 280, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 128/066"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 298, "fields": {"code": 1003, "state_id": 274, "transition": 285, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 160/085"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 299, "fields": {"code": 1003, "state_id": 314, "transition": 285, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 135/068"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 300, "fields": {"code": 1003, "state_id": 354, "transition": 285, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 161/090"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 301, "fields": {"code": 1003, "state_id": 714, "transition": 285, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 133/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 302, "fields": {"code": 1003, "state_id": 273, "transition": 290, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 152/078"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 303, "fields": {"code": 1003, "state_id": 313, "transition": 290, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 304, "fields": {"code": 1003, "state_id": 353, "transition": 290, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 153/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 305, "fields": {"code": 1003, "state_id": 713, "transition": 290, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 127/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 306, "fields": {"code": 1003, "state_id": 551, "transition": 303, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 307, "fields": {"code": 1003, "state_id": 552, "transition": 302, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 308, "fields": {"code": 1003, "state_id": 553, "transition": 295, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 142/076"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 309, "fields": {"code": 1004, "state_id": 101, "transition": 336, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 310, "fields": {"code": 1004, "state_id": 102, "transition": 335, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 311, "fields": {"code": 1004, "state_id": 103, "transition": 334, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 312, "fields": {"code": 1004, "state_id": 104, "transition": 329, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 153/080"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 313, "fields": {"code": 1004, "state_id": 234, "transition": 324, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/066"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 314, "fields": {"code": 1004, "state_id": 235, "transition": 319, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 129/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 315, "fields": {"code": 1004, "state_id": 236, "transition": 314, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 133/061"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 316, "fields": {"code": 1004, "state_id": 237, "transition": 309, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 126/055"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 317, "fields": {"code": 1004, "state_id": 238, "transition": 304, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 130/056"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 318, "fields": {"code": 1004, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 123/050"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 319, "fields": {"code": 1004, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 165/096"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 320, "fields": {"code": 1004, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 124/055"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 321, "fields": {"code": 1004, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 166/101"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 322, "fields": {"code": 1004, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 323, "fields": {"code": 1004, "state_id": 278, "transition": 304, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 168/096"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 324, "fields": {"code": 1004, "state_id": 318, "transition": 304, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 131/061"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 325, "fields": {"code": 1004, "state_id": 358, "transition": 304, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 169/101"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 326, "fields": {"code": 1004, "state_id": 718, "transition": 304, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 327, "fields": {"code": 1004, "state_id": 277, "transition": 309, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 160/089"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 328, "fields": {"code": 1004, "state_id": 317, "transition": 309, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 127/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 329, "fields": {"code": 1004, "state_id": 357, "transition": 309, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 161/094"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 330, "fields": {"code": 1004, "state_id": 717, "transition": 309, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 331, "fields": {"code": 1004, "state_id": 276, "transition": 314, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 163/089"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 332, "fields": {"code": 1004, "state_id": 316, "transition": 314, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 134/066"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 333, "fields": {"code": 1004, "state_id": 356, "transition": 314, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 164/094"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 334, "fields": {"code": 1004, "state_id": 716, "transition": 314, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 134/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 335, "fields": {"code": 1004, "state_id": 275, "transition": 319, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 155/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 336, "fields": {"code": 1004, "state_id": 315, "transition": 319, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 130/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 337, "fields": {"code": 1004, "state_id": 355, "transition": 319, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 156/087"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 338, "fields": {"code": 1004, "state_id": 715, "transition": 319, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 128/066"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 339, "fields": {"code": 1004, "state_id": 274, "transition": 324, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 158/082"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 340, "fields": {"code": 1004, "state_id": 314, "transition": 324, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 137/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 341, "fields": {"code": 1004, "state_id": 354, "transition": 324, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 159/087"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 342, "fields": {"code": 1004, "state_id": 714, "transition": 324, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 133/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 343, "fields": {"code": 1004, "state_id": 551, "transition": 339, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 344, "fields": {"code": 1004, "state_id": 552, "transition": 338, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 345, "fields": {"code": 1004, "state_id": 553, "transition": 337, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 346, "fields": {"code": 1004, "state_id": 554, "transition": 329, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 148/080"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 347, "fields": {"code": 1005, "state_id": 101, "transition": 629, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 115 /min\nnur zentral noch tastbar\nRR: 58/026"}, "examination_codes": {"BZ": 928, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Pat. klagt über starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 348, "fields": {"code": 1005, "state_id": 500, "transition": 340, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfrequenz: 0 /min\nSpO2: n.m. %\nAtemstillstand", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {"EKG": 0, "ZVD": 822}, "special_events": "", "is_dead": true}}, {"model": "template.patientstate", "pk": 349, "fields": {"code": 1005, "state_id": 502, "transition": 340, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 350, "fields": {"code": 1005, "state_id": 351, "transition": 565, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 116 /min\nzentral nicht tastbar\nRR: 48/026"}, "examination_codes": {"BZ": 954, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 351, "fields": {"code": 1005, "state_id": 352, "transition": 533, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 123 /min\nzentral nicht tastbar\nRR: 44/025"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 352, "fields": {"code": 1005, "state_id": 353, "transition": 501, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 123 /min\nzentral nicht tastbar\nRR: 35/019"}, "examination_codes": {"BZ": 954, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 353, "fields": {"code": 1005, "state_id": 354, "transition": 469, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 131 /min\nzentral nicht tastbar\nRR: 31/018"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 354, "fields": {"code": 1005, "state_id": 355, "transition": 437, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 131 /min\nzentral nicht tastbar\nRR: 22/012"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 355, "fields": {"code": 1005, "state_id": 356, "transition": 405, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 139 /min\nzentral nicht tastbar\nRR: 18/011"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 356, "fields": {"code": 1005, "state_id": 357, "transition": 373, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 139 /min\nzentral nicht tastbar\nRR: 9/005"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 714, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 357, "fields": {"code": 1005, "state_id": 358, "transition": 341, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 147 /min\nzentral nicht tastbar\nRR: 5/004"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 714, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 358, "fields": {"code": 1005, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 146 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 714, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 359, "fields": {"code": 1005, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 138 /min\nzentral nicht tastbar\nRR: 3/999"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 714, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 360, "fields": {"code": 1005, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 130 /min\nzentral nicht tastbar\nRR: 13/999"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 714, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 361, "fields": {"code": 1005, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 112/072"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 362, "fields": {"code": 1005, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 125 /min\nzentral nicht tastbar\nRR: 14/001"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 714, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 363, "fields": {"code": 1005, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 76/038"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 364, "fields": {"code": 1005, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 365, "fields": {"code": 1005, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 366, "fields": {"code": 1005, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 367, "fields": {"code": 1005, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 368, "fields": {"code": 1005, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 140/075"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 369, "fields": {"code": 1005, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 50 /min\nperipher kräftig tastbar\nRR: 148/076"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 370, "fields": {"code": 1005, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 104/041"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 371, "fields": {"code": 1005, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 48 /min\nperipher kräftig tastbar\nRR: 148/078"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 372, "fields": {"code": 1005, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 46 /min\nperipher kräftig tastbar\nRR: 158/078"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 373, "fields": {"code": 1005, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 45 /min\nperipher kräftig tastbar\nRR: 166/079"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 374, "fields": {"code": 1005, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 187 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 714, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 375, "fields": {"code": 1005, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 177 /min\nzentral nicht tastbar\nRR: 3/999"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 714, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 376, "fields": {"code": 1005, "state_id": 749, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 167 /min\nzentral nicht tastbar\nRR: 13/999"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 714, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 377, "fields": {"code": 1005, "state_id": 729, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 112/072"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 378, "fields": {"code": 1005, "state_id": 679, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 160 /min\nzentral nicht tastbar\nRR: 14/001"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 714, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 379, "fields": {"code": 1005, "state_id": 659, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 76/038"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 380, "fields": {"code": 1005, "state_id": 669, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 381, "fields": {"code": 1005, "state_id": 649, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 382, "fields": {"code": 1005, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 383, "fields": {"code": 1005, "state_id": 699, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 384, "fields": {"code": 1005, "state_id": 709, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 140/075"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 385, "fields": {"code": 1005, "state_id": 689, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 148/076"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 386, "fields": {"code": 1005, "state_id": 639, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 104/041"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 387, "fields": {"code": 1005, "state_id": 619, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 63 /min\nperipher kräftig tastbar\nRR: 148/078"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 388, "fields": {"code": 1005, "state_id": 629, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 158/078"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 389, "fields": {"code": 1005, "state_id": 609, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 166/079"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 390, "fields": {"code": 1005, "state_id": 338, "transition": 341, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 138 /min\nzentral nicht tastbar\nRR: 13/005"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 714, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 391, "fields": {"code": 1005, "state_id": 348, "transition": 341, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 130 /min\nzentral nicht tastbar\nRR: 23/005"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 392, "fields": {"code": 1005, "state_id": 328, "transition": 341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 111/070"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 393, "fields": {"code": 1005, "state_id": 278, "transition": 341, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 125 /min\nzentral nicht tastbar\nRR: 23/007"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 394, "fields": {"code": 1005, "state_id": 258, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 79/040"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 395, "fields": {"code": 1005, "state_id": 268, "transition": 341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 396, "fields": {"code": 1005, "state_id": 248, "transition": 341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 397, "fields": {"code": 1005, "state_id": 318, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 398, "fields": {"code": 1005, "state_id": 298, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 399, "fields": {"code": 1005, "state_id": 308, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 139/073"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 400, "fields": {"code": 1005, "state_id": 288, "transition": 341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 147/074"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 401, "fields": {"code": 1005, "state_id": 238, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 107/043"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 402, "fields": {"code": 1005, "state_id": 218, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 50 /min\nperipher kräftig tastbar\nRR: 147/076"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 403, "fields": {"code": 1005, "state_id": 228, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 48 /min\nperipher kräftig tastbar\nRR: 157/076"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 404, "fields": {"code": 1005, "state_id": 208, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 47 /min\nperipher kräftig tastbar\nRR: 165/077"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 405, "fields": {"code": 1005, "state_id": 758, "transition": 341, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 187 /min\nzentral nicht tastbar\nRR: 5/004"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 714, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 406, "fields": {"code": 1005, "state_id": 738, "transition": 341, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 177 /min\nzentral nicht tastbar\nRR: 13/005"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 714, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 407, "fields": {"code": 1005, "state_id": 748, "transition": 341, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 167 /min\nzentral nicht tastbar\nRR: 23/005"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 408, "fields": {"code": 1005, "state_id": 728, "transition": 341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 111/070"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 409, "fields": {"code": 1005, "state_id": 678, "transition": 341, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 160 /min\nzentral nicht tastbar\nRR: 23/007"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 410, "fields": {"code": 1005, "state_id": 658, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 79/040"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 411, "fields": {"code": 1005, "state_id": 668, "transition": 341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 412, "fields": {"code": 1005, "state_id": 648, "transition": 341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 413, "fields": {"code": 1005, "state_id": 718, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 414, "fields": {"code": 1005, "state_id": 698, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 415, "fields": {"code": 1005, "state_id": 708, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 139/073"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 416, "fields": {"code": 1005, "state_id": 688, "transition": 341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 147/074"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 417, "fields": {"code": 1005, "state_id": 638, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 107/043"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 418, "fields": {"code": 1005, "state_id": 618, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 147/076"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 419, "fields": {"code": 1005, "state_id": 628, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 63 /min\nperipher kräftig tastbar\nRR: 157/076"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 420, "fields": {"code": 1005, "state_id": 608, "transition": 341, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 165/077"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 421, "fields": {"code": 1005, "state_id": 337, "transition": 373, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 130 /min\nzentral nicht tastbar\nRR: 17/006"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 422, "fields": {"code": 1005, "state_id": 347, "transition": 373, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 122 /min\nzentral nicht tastbar\nRR: 27/006"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 423, "fields": {"code": 1005, "state_id": 327, "transition": 373, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 105/063"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 424, "fields": {"code": 1005, "state_id": 277, "transition": 373, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 117 /min\nzentral nicht tastbar\nRR: 27/008"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 425, "fields": {"code": 1005, "state_id": 257, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 77/037"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 426, "fields": {"code": 1005, "state_id": 267, "transition": 373, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 87/037"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 427, "fields": {"code": 1005, "state_id": 247, "transition": 373, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 95/038"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 428, "fields": {"code": 1005, "state_id": 317, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 87/037"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 429, "fields": {"code": 1005, "state_id": 297, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 95/038"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 430, "fields": {"code": 1005, "state_id": 307, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 133/066"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 431, "fields": {"code": 1005, "state_id": 287, "transition": 373, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 141/067"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 432, "fields": {"code": 1005, "state_id": 237, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 105/040"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 433, "fields": {"code": 1005, "state_id": 217, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 51 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 434, "fields": {"code": 1005, "state_id": 227, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 48 /min\nperipher kräftig tastbar\nRR: 151/069"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 435, "fields": {"code": 1005, "state_id": 207, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 47 /min\nperipher kräftig tastbar\nRR: 159/070"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 436, "fields": {"code": 1005, "state_id": 757, "transition": 373, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 177 /min\nzentral nicht tastbar\nRR: 9/005"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 714, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 437, "fields": {"code": 1005, "state_id": 737, "transition": 373, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 167 /min\nzentral nicht tastbar\nRR: 17/006"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 438, "fields": {"code": 1005, "state_id": 747, "transition": 373, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 157 /min\nzentral nicht tastbar\nRR: 27/006"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 439, "fields": {"code": 1005, "state_id": 727, "transition": 373, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 105/063"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 440, "fields": {"code": 1005, "state_id": 677, "transition": 373, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 150 /min\nzentral nicht tastbar\nRR: 27/008"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 441, "fields": {"code": 1005, "state_id": 657, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 77/037"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 442, "fields": {"code": 1005, "state_id": 667, "transition": 373, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 87/037"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 443, "fields": {"code": 1005, "state_id": 647, "transition": 373, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 95/038"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 444, "fields": {"code": 1005, "state_id": 717, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 87/037"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 445, "fields": {"code": 1005, "state_id": 697, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 95/038"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 446, "fields": {"code": 1005, "state_id": 707, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 133/066"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 447, "fields": {"code": 1005, "state_id": 687, "transition": 373, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 141/067"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 448, "fields": {"code": 1005, "state_id": 637, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 105/040"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 449, "fields": {"code": 1005, "state_id": 617, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 450, "fields": {"code": 1005, "state_id": 627, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 63 /min\nperipher kräftig tastbar\nRR: 151/069"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 451, "fields": {"code": 1005, "state_id": 607, "transition": 373, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 159/070"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 452, "fields": {"code": 1005, "state_id": 336, "transition": 405, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 130 /min\nzentral nicht tastbar\nRR: 26/012"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 453, "fields": {"code": 1005, "state_id": 346, "transition": 405, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 122 /min\nzentral nicht tastbar\nRR: 36/012"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 454, "fields": {"code": 1005, "state_id": 326, "transition": 405, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 104/061"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 455, "fields": {"code": 1005, "state_id": 276, "transition": 405, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 117 /min\nzentral nicht tastbar\nRR: 36/014"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 456, "fields": {"code": 1005, "state_id": 256, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 80/039"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 457, "fields": {"code": 1005, "state_id": 266, "transition": 405, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 90/039"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 458, "fields": {"code": 1005, "state_id": 246, "transition": 405, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 98/040"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 459, "fields": {"code": 1005, "state_id": 316, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 90/039"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 460, "fields": {"code": 1005, "state_id": 296, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 98/040"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 461, "fields": {"code": 1005, "state_id": 306, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 132/064"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 462, "fields": {"code": 1005, "state_id": 286, "transition": 405, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 140/065"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 463, "fields": {"code": 1005, "state_id": 236, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 108/042"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 464, "fields": {"code": 1005, "state_id": 216, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 140/067"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 465, "fields": {"code": 1005, "state_id": 226, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 50 /min\nperipher kräftig tastbar\nRR: 150/067"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 466, "fields": {"code": 1005, "state_id": 206, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 49 /min\nperipher kräftig tastbar\nRR: 158/068"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 467, "fields": {"code": 1005, "state_id": 756, "transition": 405, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 177 /min\nzentral nicht tastbar\nRR: 18/011"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 468, "fields": {"code": 1005, "state_id": 736, "transition": 405, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 167 /min\nzentral nicht tastbar\nRR: 26/012"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 469, "fields": {"code": 1005, "state_id": 746, "transition": 405, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 157 /min\nzentral nicht tastbar\nRR: 36/012"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 470, "fields": {"code": 1005, "state_id": 726, "transition": 405, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 104/061"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 471, "fields": {"code": 1005, "state_id": 676, "transition": 405, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 150 /min\nzentral nicht tastbar\nRR: 36/014"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 472, "fields": {"code": 1005, "state_id": 656, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 117 /min\nperipher tastbar\nRR: 80/039"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 473, "fields": {"code": 1005, "state_id": 666, "transition": 405, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 90/039"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 474, "fields": {"code": 1005, "state_id": 646, "transition": 405, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 98/040"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 475, "fields": {"code": 1005, "state_id": 716, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 90/039"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 476, "fields": {"code": 1005, "state_id": 696, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 98/040"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 477, "fields": {"code": 1005, "state_id": 706, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 132/064"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 478, "fields": {"code": 1005, "state_id": 686, "transition": 405, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 140/065"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 479, "fields": {"code": 1005, "state_id": 636, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 108/042"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 480, "fields": {"code": 1005, "state_id": 616, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 140/067"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 481, "fields": {"code": 1005, "state_id": 626, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 150/067"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 482, "fields": {"code": 1005, "state_id": 606, "transition": 405, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 63 /min\nperipher kräftig tastbar\nRR: 158/068"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 483, "fields": {"code": 1005, "state_id": 335, "transition": 437, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 122 /min\nzentral nicht tastbar\nRR: 30/013"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 484, "fields": {"code": 1005, "state_id": 345, "transition": 437, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 115 /min\nzentral nicht tastbar\nRR: 40/013"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 485, "fields": {"code": 1005, "state_id": 325, "transition": 437, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 98/054"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 486, "fields": {"code": 1005, "state_id": 275, "transition": 437, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 111 /min\nzentral nicht tastbar\nRR: 40/015"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 487, "fields": {"code": 1005, "state_id": 255, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 78/036"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 488, "fields": {"code": 1005, "state_id": 265, "transition": 437, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 88/036"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 489, "fields": {"code": 1005, "state_id": 245, "transition": 437, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 96/037"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 490, "fields": {"code": 1005, "state_id": 315, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 88/036"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 491, "fields": {"code": 1005, "state_id": 295, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 96/037"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 492, "fields": {"code": 1005, "state_id": 305, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 126/057"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 493, "fields": {"code": 1005, "state_id": 285, "transition": 437, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 134/058"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 494, "fields": {"code": 1005, "state_id": 235, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 106/039"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 495, "fields": {"code": 1005, "state_id": 215, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 134/060"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 496, "fields": {"code": 1005, "state_id": 225, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 51 /min\nperipher kräftig tastbar\nRR: 144/060"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 497, "fields": {"code": 1005, "state_id": 205, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 49 /min\nperipher kräftig tastbar\nRR: 152/061"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 498, "fields": {"code": 1005, "state_id": 755, "transition": 437, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 167 /min\nzentral nicht tastbar\nRR: 22/012"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 499, "fields": {"code": 1005, "state_id": 735, "transition": 437, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 157 /min\nzentral nicht tastbar\nRR: 30/013"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 500, "fields": {"code": 1005, "state_id": 745, "transition": 437, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 148 /min\nzentral nicht tastbar\nRR: 40/013"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 501, "fields": {"code": 1005, "state_id": 725, "transition": 437, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 98/054"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 502, "fields": {"code": 1005, "state_id": 675, "transition": 437, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 142 /min\nzentral nicht tastbar\nRR: 40/015"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 503, "fields": {"code": 1005, "state_id": 655, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 114 /min\nperipher tastbar\nRR: 78/036"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 504, "fields": {"code": 1005, "state_id": 665, "transition": 437, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 88/036"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 505, "fields": {"code": 1005, "state_id": 645, "transition": 437, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 96/037"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 506, "fields": {"code": 1005, "state_id": 715, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 88/036"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 507, "fields": {"code": 1005, "state_id": 695, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 96/037"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 508, "fields": {"code": 1005, "state_id": 705, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher tastbar\nRR: 126/057"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 509, "fields": {"code": 1005, "state_id": 685, "transition": 437, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 134/058"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 510, "fields": {"code": 1005, "state_id": 635, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 106/039"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 511, "fields": {"code": 1005, "state_id": 615, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 134/060"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 512, "fields": {"code": 1005, "state_id": 625, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 144/060"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 513, "fields": {"code": 1005, "state_id": 605, "transition": 437, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 63 /min\nperipher kräftig tastbar\nRR: 152/061"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 514, "fields": {"code": 1005, "state_id": 334, "transition": 469, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 122 /min\nzentral nicht tastbar\nRR: 39/019"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 515, "fields": {"code": 1005, "state_id": 344, "transition": 469, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 116 /min\nzentral nicht tastbar\nRR: 49/019"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 516, "fields": {"code": 1005, "state_id": 324, "transition": 469, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 97/052"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 517, "fields": {"code": 1005, "state_id": 274, "transition": 469, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 111 /min\nzentral nicht tastbar\nRR: 49/021"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 518, "fields": {"code": 1005, "state_id": 254, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 81/038"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 519, "fields": {"code": 1005, "state_id": 264, "transition": 469, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 91/038"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 520, "fields": {"code": 1005, "state_id": 244, "transition": 469, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 99/039"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 521, "fields": {"code": 1005, "state_id": 314, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 91/038"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 522, "fields": {"code": 1005, "state_id": 294, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 99/039"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 523, "fields": {"code": 1005, "state_id": 304, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 65 /min\nperipher tastbar\nRR: 125/055"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 524, "fields": {"code": 1005, "state_id": 284, "transition": 469, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 133/056"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 525, "fields": {"code": 1005, "state_id": 234, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 109/041"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 526, "fields": {"code": 1005, "state_id": 214, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 133/058"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 527, "fields": {"code": 1005, "state_id": 224, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 143/058"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 528, "fields": {"code": 1005, "state_id": 204, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 151/059"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 529, "fields": {"code": 1005, "state_id": 754, "transition": 469, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 167 /min\nzentral nicht tastbar\nRR: 31/018"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 530, "fields": {"code": 1005, "state_id": 734, "transition": 469, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 157 /min\nzentral nicht tastbar\nRR: 39/019"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 531, "fields": {"code": 1005, "state_id": 744, "transition": 469, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 149 /min\nzentral nicht tastbar\nRR: 49/019"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 532, "fields": {"code": 1005, "state_id": 724, "transition": 469, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 112 /min\nperipher tastbar\nRR: 97/052"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 533, "fields": {"code": 1005, "state_id": 674, "transition": 469, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 142 /min\nzentral nicht tastbar\nRR: 49/021"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 534, "fields": {"code": 1005, "state_id": 654, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 118 /min\nperipher tastbar\nRR: 81/038"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 535, "fields": {"code": 1005, "state_id": 664, "transition": 469, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 91/038"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 536, "fields": {"code": 1005, "state_id": 644, "transition": 469, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 99/039"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 537, "fields": {"code": 1005, "state_id": 714, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 91/038"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 538, "fields": {"code": 1005, "state_id": 694, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 99/039"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 539, "fields": {"code": 1005, "state_id": 704, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 82 /min\nperipher tastbar\nRR: 125/055"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 540, "fields": {"code": 1005, "state_id": 684, "transition": 469, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 133/056"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 541, "fields": {"code": 1005, "state_id": 634, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 109/041"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 542, "fields": {"code": 1005, "state_id": 614, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 133/058"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 543, "fields": {"code": 1005, "state_id": 624, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 143/058"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 544, "fields": {"code": 1005, "state_id": 604, "transition": 469, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 151/059"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 545, "fields": {"code": 1005, "state_id": 333, "transition": 501, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 115 /min\nzentral nicht tastbar\nRR: 43/020"}, "examination_codes": {"BZ": 954, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 546, "fields": {"code": 1005, "state_id": 343, "transition": 501, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 110 /min\nnur zentral noch tastbar\nRR: 53/020"}, "examination_codes": {"BZ": 954, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 547, "fields": {"code": 1005, "state_id": 323, "transition": 501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 91/045"}, "examination_codes": {"BZ": 954, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 548, "fields": {"code": 1005, "state_id": 273, "transition": 501, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 105 /min\nnur zentral noch tastbar\nRR: 53/022"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 549, "fields": {"code": 1005, "state_id": 253, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 79/035"}, "examination_codes": {"BZ": 954, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 550, "fields": {"code": 1005, "state_id": 263, "transition": 501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 89/035"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 551, "fields": {"code": 1005, "state_id": 243, "transition": 501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 97/036"}, "examination_codes": {"BZ": 954, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 552, "fields": {"code": 1005, "state_id": 313, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 89/035"}, "examination_codes": {"BZ": 954, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 553, "fields": {"code": 1005, "state_id": 293, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 97/036"}, "examination_codes": {"BZ": 954, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 554, "fields": {"code": 1005, "state_id": 303, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 65 /min\nperipher tastbar\nRR: 119/048"}, "examination_codes": {"BZ": 954, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 555, "fields": {"code": 1005, "state_id": 283, "transition": 501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 62 /min\nperipher tastbar\nRR: 127/049"}, "examination_codes": {"BZ": 954, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 556, "fields": {"code": 1005, "state_id": 233, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 107/038"}, "examination_codes": {"BZ": 954, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 557, "fields": {"code": 1005, "state_id": 213, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher tastbar\nRR: 127/051"}, "examination_codes": {"BZ": 954, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 558, "fields": {"code": 1005, "state_id": 223, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 137/051"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 559, "fields": {"code": 1005, "state_id": 203, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 145/052"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 560, "fields": {"code": 1005, "state_id": 753, "transition": 501, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 157 /min\nzentral nicht tastbar\nRR: 35/019"}, "examination_codes": {"BZ": 954, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 561, "fields": {"code": 1005, "state_id": 733, "transition": 501, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 148 /min\nzentral nicht tastbar\nRR: 43/020"}, "examination_codes": {"BZ": 954, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 562, "fields": {"code": 1005, "state_id": 743, "transition": 501, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 141 /min\nnur zentral noch tastbar\nRR: 53/020"}, "examination_codes": {"BZ": 954, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 563, "fields": {"code": 1005, "state_id": 723, "transition": 501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 112 /min\nperipher tastbar\nRR: 91/045"}, "examination_codes": {"BZ": 954, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 564, "fields": {"code": 1005, "state_id": 673, "transition": 501, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 134 /min\nnur zentral noch tastbar\nRR: 53/022"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 565, "fields": {"code": 1005, "state_id": 653, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 115 /min\nperipher tastbar\nRR: 79/035"}, "examination_codes": {"BZ": 954, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 566, "fields": {"code": 1005, "state_id": 663, "transition": 501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 89/035"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 567, "fields": {"code": 1005, "state_id": 643, "transition": 501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 97/036"}, "examination_codes": {"BZ": 954, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 568, "fields": {"code": 1005, "state_id": 713, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 89/035"}, "examination_codes": {"BZ": 954, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 569, "fields": {"code": 1005, "state_id": 693, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 97/036"}, "examination_codes": {"BZ": 954, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 570, "fields": {"code": 1005, "state_id": 703, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 82 /min\nperipher tastbar\nRR: 119/048"}, "examination_codes": {"BZ": 954, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 571, "fields": {"code": 1005, "state_id": 683, "transition": 501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 127/049"}, "examination_codes": {"BZ": 954, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 572, "fields": {"code": 1005, "state_id": 633, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 107/038"}, "examination_codes": {"BZ": 954, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 573, "fields": {"code": 1005, "state_id": 613, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 127/051"}, "examination_codes": {"BZ": 954, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 574, "fields": {"code": 1005, "state_id": 623, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 137/051"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 575, "fields": {"code": 1005, "state_id": 603, "transition": 501, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 145/052"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 576, "fields": {"code": 1005, "state_id": 332, "transition": 533, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 116 /min\nnur zentral noch tastbar\nRR: 52/026"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 577, "fields": {"code": 1005, "state_id": 342, "transition": 533, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 110 /min\nnur zentral noch tastbar\nRR: 62/026"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 578, "fields": {"code": 1005, "state_id": 322, "transition": 533, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 90/043"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 579, "fields": {"code": 1005, "state_id": 272, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 105 /min\nnur zentral noch tastbar\nRR: 62/028"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 580, "fields": {"code": 1005, "state_id": 252, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 82/037"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 581, "fields": {"code": 1005, "state_id": 262, "transition": 533, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 92/037"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 582, "fields": {"code": 1005, "state_id": 242, "transition": 533, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 100/038"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 583, "fields": {"code": 1005, "state_id": 312, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 92/037"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 584, "fields": {"code": 1005, "state_id": 292, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 100/038"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 585, "fields": {"code": 1005, "state_id": 302, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 118/046"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 586, "fields": {"code": 1005, "state_id": 282, "transition": 533, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 126/047"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 587, "fields": {"code": 1005, "state_id": 232, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 110/040"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 588, "fields": {"code": 1005, "state_id": 212, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 63 /min\nperipher tastbar\nRR: 126/049"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 589, "fields": {"code": 1005, "state_id": 222, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 136/049"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 590, "fields": {"code": 1005, "state_id": 202, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 144/050"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 591, "fields": {"code": 1005, "state_id": 752, "transition": 533, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 157 /min\nzentral nicht tastbar\nRR: 44/025"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 592, "fields": {"code": 1005, "state_id": 732, "transition": 533, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 149 /min\nnur zentral noch tastbar\nRR: 52/026"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 593, "fields": {"code": 1005, "state_id": 742, "transition": 533, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 141 /min\nnur zentral noch tastbar\nRR: 62/026"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 594, "fields": {"code": 1005, "state_id": 722, "transition": 533, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 119 /min\nperipher tastbar\nRR: 90/043"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 595, "fields": {"code": 1005, "state_id": 672, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 134 /min\nnur zentral noch tastbar\nRR: 62/028"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 596, "fields": {"code": 1005, "state_id": 652, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 119 /min\nperipher tastbar\nRR: 82/037"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 597, "fields": {"code": 1005, "state_id": 662, "transition": 533, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 92/037"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 598, "fields": {"code": 1005, "state_id": 642, "transition": 533, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 100/038"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 599, "fields": {"code": 1005, "state_id": 712, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 92/037"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 600, "fields": {"code": 1005, "state_id": 692, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 100/038"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 601, "fields": {"code": 1005, "state_id": 702, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 118/046"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 602, "fields": {"code": 1005, "state_id": 682, "transition": 533, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 126/047"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 603, "fields": {"code": 1005, "state_id": 632, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 110/040"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 604, "fields": {"code": 1005, "state_id": 612, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 126/049"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 605, "fields": {"code": 1005, "state_id": 622, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 136/049"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 606, "fields": {"code": 1005, "state_id": 602, "transition": 533, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 144/050"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 607, "fields": {"code": 1005, "state_id": 331, "transition": 565, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 110 /min\nnur zentral noch tastbar\nRR: 56/027"}, "examination_codes": {"BZ": 954, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 608, "fields": {"code": 1005, "state_id": 341, "transition": 565, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 104 /min\nnur zentral noch tastbar\nRR: 66/027"}, "examination_codes": {"BZ": 954, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 609, "fields": {"code": 1005, "state_id": 321, "transition": 565, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 84/036"}, "examination_codes": {"BZ": 954, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 610, "fields": {"code": 1005, "state_id": 271, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 99 /min\nnur zentral noch tastbar\nRR: 66/029"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 611, "fields": {"code": 1005, "state_id": 251, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 80/034"}, "examination_codes": {"BZ": 954, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 612, "fields": {"code": 1005, "state_id": 261, "transition": 565, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 90/034"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 613, "fields": {"code": 1005, "state_id": 241, "transition": 565, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 82 /min\nperipher tastbar\nRR: 98/035"}, "examination_codes": {"BZ": 954, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 614, "fields": {"code": 1005, "state_id": 311, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 90/034"}, "examination_codes": {"BZ": 954, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 615, "fields": {"code": 1005, "state_id": 291, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 98/035"}, "examination_codes": {"BZ": 954, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 616, "fields": {"code": 1005, "state_id": 301, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 122/039"}, "examination_codes": {"BZ": 954, "Hb": 403, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 617, "fields": {"code": 1005, "state_id": 281, "transition": 565, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 120/040"}, "examination_codes": {"BZ": 954, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 618, "fields": {"code": 1005, "state_id": 231, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 108/037"}, "examination_codes": {"BZ": 954, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 619, "fields": {"code": 1005, "state_id": 211, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 63 /min\nperipher tastbar\nRR: 120/042"}, "examination_codes": {"BZ": 954, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 620, "fields": {"code": 1005, "state_id": 221, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 130/042"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 621, "fields": {"code": 1005, "state_id": 201, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 138/043"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 622, "fields": {"code": 1005, "state_id": 751, "transition": 565, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 148 /min\nzentral nicht tastbar\nRR: 48/026"}, "examination_codes": {"BZ": 954, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 623, "fields": {"code": 1005, "state_id": 731, "transition": 565, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 141 /min\nnur zentral noch tastbar\nRR: 56/027"}, "examination_codes": {"BZ": 954, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 624, "fields": {"code": 1005, "state_id": 741, "transition": 565, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 133 /min\nnur zentral noch tastbar\nRR: 66/027"}, "examination_codes": {"BZ": 954, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 625, "fields": {"code": 1005, "state_id": 721, "transition": 565, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 120 /min\nperipher tastbar\nRR: 84/036"}, "examination_codes": {"BZ": 954, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 626, "fields": {"code": 1005, "state_id": 671, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 126 /min\nnur zentral noch tastbar\nRR: 66/029"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 627, "fields": {"code": 1005, "state_id": 651, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 80/034"}, "examination_codes": {"BZ": 954, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 628, "fields": {"code": 1005, "state_id": 661, "transition": 565, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 90/034"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 629, "fields": {"code": 1005, "state_id": 641, "transition": 565, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 98/035"}, "examination_codes": {"BZ": 954, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 630, "fields": {"code": 1005, "state_id": 711, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 90/034"}, "examination_codes": {"BZ": 954, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 631, "fields": {"code": 1005, "state_id": 691, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 98/035"}, "examination_codes": {"BZ": 954, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 632, "fields": {"code": 1005, "state_id": 701, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 112/039"}, "examination_codes": {"BZ": 954, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 633, "fields": {"code": 1005, "state_id": 681, "transition": 565, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 120/040"}, "examination_codes": {"BZ": 954, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 634, "fields": {"code": 1005, "state_id": 631, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 108/037"}, "examination_codes": {"BZ": 954, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 635, "fields": {"code": 1005, "state_id": 611, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 120/042"}, "examination_codes": {"BZ": 954, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 636, "fields": {"code": 1005, "state_id": 621, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 130/042"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 637, "fields": {"code": 1005, "state_id": 601, "transition": 565, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 138/043"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 638, "fields": {"code": 1005, "state_id": 551, "transition": 340, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 144 /min\nnur zentral noch tastbar\nRR: 58/026"}, "examination_codes": {"BZ": 928, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 130, "Rö-Thorax": 471, "Ultraschall": 615, "Rö-Extremitäten": 664}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 639, "fields": {"code": 1006, "state_id": 101, "transition": 671, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 51 %\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 52 /min\nnur zentral noch tastbar\nRR: 70/043"}, "examination_codes": {"BZ": 953, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 640, "fields": {"code": 1006, "state_id": 231, "transition": 666, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 80 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 87 /min\nperipher tastbar\nRR: 95/067"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 641, "fields": {"code": 1006, "state_id": 232, "transition": 661, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 85 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 101/071"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 642, "fields": {"code": 1006, "state_id": 233, "transition": 656, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 88 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 96/068"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 643, "fields": {"code": 1006, "state_id": 234, "transition": 651, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 93 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 102/072"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 644, "fields": {"code": 1006, "state_id": 235, "transition": 646, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 97/069"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 645, "fields": {"code": 1006, "state_id": 236, "transition": 641, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 103/073"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 646, "fields": {"code": 1006, "state_id": 237, "transition": 636, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 98/070"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 647, "fields": {"code": 1006, "state_id": 238, "transition": 630, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 104/074"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 648, "fields": {"code": 1006, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 99/071"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 649, "fields": {"code": 1006, "state_id": 279, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 51 /min\nperipher tastbar\nRR: 88/065"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 650, "fields": {"code": 1006, "state_id": 500, "transition": 631, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfrequenz: 0 /min\nSpO2: n.m. %\nAtemstillstand", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 651, "fields": {"code": 1006, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 80 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 99/071"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 652, "fields": {"code": 1006, "state_id": 359, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 52 /min\nperipher tastbar\nRR: 78/051"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 653, "fields": {"code": 1006, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 99/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 739, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 654, "fields": {"code": 1006, "state_id": 278, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 2 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 54 /min\nperipher tastbar\nRR: 93/068"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 726, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 655, "fields": {"code": 1006, "state_id": 318, "transition": 630, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 81 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 104/074"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 656, "fields": {"code": 1006, "state_id": 358, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 2 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 55 /min\nperipher tastbar\nRR: 83/054"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 726, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 657, "fields": {"code": 1006, "state_id": 718, "transition": 630, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 104/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 739, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 658, "fields": {"code": 1006, "state_id": 277, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 51 /min\nperipher tastbar\nRR: 87/064"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 659, "fields": {"code": 1006, "state_id": 317, "transition": 636, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 80 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 98/070"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 660, "fields": {"code": 1006, "state_id": 357, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 52 /min\nperipher tastbar\nRR: 77/050"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 661, "fields": {"code": 1006, "state_id": 717, "transition": 636, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 98/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 739, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 662, "fields": {"code": 1006, "state_id": 276, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 2 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 54 /min\nperipher tastbar\nRR: 92/067"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 726, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 663, "fields": {"code": 1006, "state_id": 316, "transition": 641, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 81 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 103/073"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 664, "fields": {"code": 1006, "state_id": 356, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 2 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 55 /min\nperipher tastbar\nRR: 82/053"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 726, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 665, "fields": {"code": 1006, "state_id": 716, "transition": 641, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 103/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 739, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 666, "fields": {"code": 1006, "state_id": 275, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 51 /min\nperipher tastbar\nRR: 86/063"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 667, "fields": {"code": 1006, "state_id": 315, "transition": 646, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 80 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 97/069"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 668, "fields": {"code": 1006, "state_id": 355, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 52 /min\nperipher tastbar\nRR: 76/049"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 669, "fields": {"code": 1006, "state_id": 715, "transition": 646, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 97/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 739, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 670, "fields": {"code": 1006, "state_id": 274, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 2 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 54 /min\nperipher tastbar\nRR: 91/066"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 726, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 671, "fields": {"code": 1006, "state_id": 314, "transition": 651, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 81 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 102/072"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 672, "fields": {"code": 1006, "state_id": 354, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 2 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 55 /min\nperipher tastbar\nRR: 81/052"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 726, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 673, "fields": {"code": 1006, "state_id": 714, "transition": 651, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 102/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 739, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 674, "fields": {"code": 1006, "state_id": 273, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 51 /min\nperipher tastbar\nRR: 85/062"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 675, "fields": {"code": 1006, "state_id": 313, "transition": 656, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 80 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 96/068"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 676, "fields": {"code": 1006, "state_id": 353, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 52 /min\nperipher tastbar\nRR: 75/048"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 677, "fields": {"code": 1006, "state_id": 713, "transition": 656, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 88 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 96/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 739, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 176, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 678, "fields": {"code": 1006, "state_id": 272, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 2 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 54 /min\nperipher tastbar\nRR: 90/065"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 726, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 679, "fields": {"code": 1006, "state_id": 312, "transition": 661, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 81 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 101/071"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 680, "fields": {"code": 1006, "state_id": 352, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 2 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 55 /min\nperipher tastbar\nRR: 80/051"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 726, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 681, "fields": {"code": 1006, "state_id": 712, "transition": 661, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 85 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 101/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 739, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 682, "fields": {"code": 1006, "state_id": 271, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 51 /min\nperipher tastbar\nRR: 84/061"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 683, "fields": {"code": 1006, "state_id": 311, "transition": 666, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 80 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 87 /min\nperipher tastbar\nRR: 95/067"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 684, "fields": {"code": 1006, "state_id": 351, "transition": 631, "vital_signs": {"Haut": "feucht\nblass", "Airway": "Atemwegsverlegung", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 0 /min\nSpO2: 0 % nicht messbar\nAtemstillstand\nkein AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 52 /min\nnur zentral noch tastbar\nRR: 74/047"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 726, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 685, "fields": {"code": 1006, "state_id": 711, "transition": 666, "vital_signs": {"Haut": "trocken\nsichtbare Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 80 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 87 /min\nperipher tastbar\nRR: 95/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 739, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 686, "fields": {"code": 1006, "state_id": 551, "transition": 671, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 281, "Rö-Thorax": 388, "Ultraschall": 615, "Rö-Extremitäten": 650}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 687, "fields": {"code": 1007, "state_id": 101, "transition": 868, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 137/089"}, "examination_codes": {"BZ": 928, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 688, "fields": {"code": 1007, "state_id": 102, "transition": 844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 104 /min\nnur zentral noch tastbar\nRR: 70/063"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 689, "fields": {"code": 1007, "state_id": 202, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 128/075"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 690, "fields": {"code": 1007, "state_id": 203, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 59 /min\nperipher tastbar\nRR: 125/073"}, "examination_codes": {"BZ": 954, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 691, "fields": {"code": 1007, "state_id": 204, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 127/076"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 692, "fields": {"code": 1007, "state_id": 205, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 59 /min\nperipher tastbar\nRR: 124/074"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 693, "fields": {"code": 1007, "state_id": 206, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 126/077"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 694, "fields": {"code": 1007, "state_id": 207, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 59 /min\nperipher tastbar\nRR: 123/075"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 695, "fields": {"code": 1007, "state_id": 208, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 125/078"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 696, "fields": {"code": 1007, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 59 /min\nperipher tastbar\nRR: 122/076"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 697, "fields": {"code": 1007, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 62 /min\nperipher tastbar\nRR: 110/067"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 698, "fields": {"code": 1007, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 104/075"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 699, "fields": {"code": 1007, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nnur zentral noch tastbar\nRR: 52/051"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 700, "fields": {"code": 1007, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 90/072"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 701, "fields": {"code": 1007, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 78/063"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 702, "fields": {"code": 1007, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nnur zentral noch tastbar\nRR: 72/071"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 703, "fields": {"code": 1007, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 125 /min\nzentral nicht tastbar\nRR: 20/018"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 704, "fields": {"code": 1007, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 47 /min\nperipher kräftig tastbar\nRR: 162/084"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 705, "fields": {"code": 1007, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 110/067"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 706, "fields": {"code": 1007, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 52 /min\nperipher kräftig tastbar\nRR: 144/083"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 707, "fields": {"code": 1007, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 87 /min\nnur zentral noch tastbar\nRR: 52/051"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 708, "fields": {"code": 1007, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 130/080"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 709, "fields": {"code": 1007, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 114 /min\nzentral nicht tastbar\nRR: 38/034"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 710, "fields": {"code": 1007, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 112/079"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 711, "fields": {"code": 1007, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 127 /min\nzentral nicht tastbar\nRR: 20/018"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 712, "fields": {"code": 1007, "state_id": 689, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 162/084"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 713, "fields": {"code": 1007, "state_id": 699, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 110/067"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 714, "fields": {"code": 1007, "state_id": 709, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 66 /min\nperipher kräftig tastbar\nRR: 144/083"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 715, "fields": {"code": 1007, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nnur zentral noch tastbar\nRR: 52/051"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 716, "fields": {"code": 1007, "state_id": 729, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 130/080"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 717, "fields": {"code": 1007, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 141 /min\nzentral nicht tastbar\nRR: 38/034"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 718, "fields": {"code": 1007, "state_id": 749, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 112/079"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 719, "fields": {"code": 1007, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 155 /min\nzentral nicht tastbar\nRR: 20/018"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 720, "fields": {"code": 1007, "state_id": 218, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 113/069"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 721, "fields": {"code": 1007, "state_id": 228, "transition": 676, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 107/077"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 722, "fields": {"code": 1007, "state_id": 238, "transition": 676, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nnur zentral noch tastbar\nRR: 60/054"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 723, "fields": {"code": 1007, "state_id": 248, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 93/074"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 724, "fields": {"code": 1007, "state_id": 258, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 81/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 725, "fields": {"code": 1007, "state_id": 268, "transition": 676, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 75/073"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 726, "fields": {"code": 1007, "state_id": 278, "transition": 676, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 125 /min\nzentral nicht tastbar\nRR: 28/025"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 727, "fields": {"code": 1007, "state_id": 288, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 49 /min\nperipher kräftig tastbar\nRR: 160/085"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 728, "fields": {"code": 1007, "state_id": 298, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 113/069"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 729, "fields": {"code": 1007, "state_id": 308, "transition": 676, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 56 /min\nperipher kräftig tastbar\nRR: 142/084"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 730, "fields": {"code": 1007, "state_id": 318, "transition": 676, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 87 /min\nnur zentral noch tastbar\nRR: 60/054"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 731, "fields": {"code": 1007, "state_id": 328, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher tastbar\nRR: 128/081"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 732, "fields": {"code": 1007, "state_id": 338, "transition": 676, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 115 /min\nzentral nicht tastbar\nRR: 46/041"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 733, "fields": {"code": 1007, "state_id": 348, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 110/080"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 734, "fields": {"code": 1007, "state_id": 358, "transition": 676, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 127 /min\nzentral nicht tastbar\nRR: 28/025"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 735, "fields": {"code": 1007, "state_id": 688, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 160/085"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 736, "fields": {"code": 1007, "state_id": 698, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 113/069"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 737, "fields": {"code": 1007, "state_id": 708, "transition": 676, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 142/084"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 738, "fields": {"code": 1007, "state_id": 718, "transition": 676, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nnur zentral noch tastbar\nRR: 60/054"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 739, "fields": {"code": 1007, "state_id": 728, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 128/081"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 740, "fields": {"code": 1007, "state_id": 738, "transition": 676, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 141 /min\nzentral nicht tastbar\nRR: 46/041"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 741, "fields": {"code": 1007, "state_id": 748, "transition": 676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 110/080"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 742, "fields": {"code": 1007, "state_id": 758, "transition": 676, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 155 /min\nzentral nicht tastbar\nRR: 28/025"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 743, "fields": {"code": 1007, "state_id": 217, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 62 /min\nperipher tastbar\nRR: 111/066"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 744, "fields": {"code": 1007, "state_id": 227, "transition": 700, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 105/074"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 745, "fields": {"code": 1007, "state_id": 237, "transition": 700, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nnur zentral noch tastbar\nRR: 63/059"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 746, "fields": {"code": 1007, "state_id": 247, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 91/071"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 747, "fields": {"code": 1007, "state_id": 257, "transition": 700, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 79/062"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 748, "fields": {"code": 1007, "state_id": 267, "transition": 700, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nnur zentral noch tastbar\nRR: 73/070"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 749, "fields": {"code": 1007, "state_id": 277, "transition": 700, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 117 /min\nzentral nicht tastbar\nRR: 31/028"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 750, "fields": {"code": 1007, "state_id": 287, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 49 /min\nperipher kräftig tastbar\nRR: 153/081"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 751, "fields": {"code": 1007, "state_id": 297, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 111/066"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 752, "fields": {"code": 1007, "state_id": 307, "transition": 700, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 56 /min\nperipher kräftig tastbar\nRR: 135/080"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 753, "fields": {"code": 1007, "state_id": 317, "transition": 700, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 82 /min\nnur zentral noch tastbar\nRR: 63/059"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 754, "fields": {"code": 1007, "state_id": 327, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 755, "fields": {"code": 1007, "state_id": 337, "transition": 700, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 109 /min\nzentral nicht tastbar\nRR: 49/048"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 756, "fields": {"code": 1007, "state_id": 347, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 103/076"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 757, "fields": {"code": 1007, "state_id": 357, "transition": 700, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 31/028"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 758, "fields": {"code": 1007, "state_id": 687, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 153/081"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 759, "fields": {"code": 1007, "state_id": 697, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 111/066"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 760, "fields": {"code": 1007, "state_id": 707, "transition": 700, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 135/080"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 761, "fields": {"code": 1007, "state_id": 717, "transition": 700, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nnur zentral noch tastbar\nRR: 63/059"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 762, "fields": {"code": 1007, "state_id": 727, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 763, "fields": {"code": 1007, "state_id": 737, "transition": 700, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 133 /min\nzentral nicht tastbar\nRR: 49/048"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 764, "fields": {"code": 1007, "state_id": 747, "transition": 700, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 103/076"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 765, "fields": {"code": 1007, "state_id": 757, "transition": 700, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 146 /min\nzentral nicht tastbar\nRR: 31/028"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 766, "fields": {"code": 1007, "state_id": 216, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 114/068"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 767, "fields": {"code": 1007, "state_id": 226, "transition": 724, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 108/076"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 768, "fields": {"code": 1007, "state_id": 236, "transition": 724, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nnur zentral noch tastbar\nRR: 71/062"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 769, "fields": {"code": 1007, "state_id": 246, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 94/073"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 770, "fields": {"code": 1007, "state_id": 256, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 82/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 771, "fields": {"code": 1007, "state_id": 266, "transition": 724, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 76/072"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 772, "fields": {"code": 1007, "state_id": 276, "transition": 724, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 117 /min\nzentral nicht tastbar\nRR: 39/035"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 773, "fields": {"code": 1007, "state_id": 286, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 151/082"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 774, "fields": {"code": 1007, "state_id": 296, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 114/068"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 775, "fields": {"code": 1007, "state_id": 306, "transition": 724, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 60 /min\nperipher kräftig tastbar\nRR: 133/081"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 776, "fields": {"code": 1007, "state_id": 316, "transition": 724, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nnur zentral noch tastbar\nRR: 71/062"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 777, "fields": {"code": 1007, "state_id": 326, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 119/078"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 778, "fields": {"code": 1007, "state_id": 336, "transition": 724, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 109 /min\nnur zentral noch tastbar\nRR: 57/051"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 779, "fields": {"code": 1007, "state_id": 346, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 101/077"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 780, "fields": {"code": 1007, "state_id": 356, "transition": 724, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 39/035"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 781, "fields": {"code": 1007, "state_id": 686, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 66 /min\nperipher kräftig tastbar\nRR: 151/082"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 782, "fields": {"code": 1007, "state_id": 696, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 114/068"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 783, "fields": {"code": 1007, "state_id": 706, "transition": 724, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 133/081"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 784, "fields": {"code": 1007, "state_id": 716, "transition": 724, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nnur zentral noch tastbar\nRR: 71/062"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 785, "fields": {"code": 1007, "state_id": 726, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 119/078"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 786, "fields": {"code": 1007, "state_id": 736, "transition": 724, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 133 /min\nnur zentral noch tastbar\nRR: 57/051"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 787, "fields": {"code": 1007, "state_id": 746, "transition": 724, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 101/077"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 788, "fields": {"code": 1007, "state_id": 756, "transition": 724, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 147 /min\nzentral nicht tastbar\nRR: 39/035"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 789, "fields": {"code": 1007, "state_id": 215, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 62 /min\nperipher tastbar\nRR: 112/065"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 790, "fields": {"code": 1007, "state_id": 225, "transition": 748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 106/073"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 791, "fields": {"code": 1007, "state_id": 235, "transition": 748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nnur zentral noch tastbar\nRR: 74/060"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 792, "fields": {"code": 1007, "state_id": 245, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 92/070"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 793, "fields": {"code": 1007, "state_id": 255, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 80/061"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 794, "fields": {"code": 1007, "state_id": 265, "transition": 748, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nnur zentral noch tastbar\nRR: 74/069"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 795, "fields": {"code": 1007, "state_id": 275, "transition": 748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 111 /min\nzentral nicht tastbar\nRR: 42/038"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 796, "fields": {"code": 1007, "state_id": 285, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 144/078"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 797, "fields": {"code": 1007, "state_id": 295, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 112/065"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 798, "fields": {"code": 1007, "state_id": 305, "transition": 748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 60 /min\nperipher tastbar\nRR: 126/077"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 799, "fields": {"code": 1007, "state_id": 315, "transition": 748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nnur zentral noch tastbar\nRR: 74/060"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 800, "fields": {"code": 1007, "state_id": 325, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 112/074"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 801, "fields": {"code": 1007, "state_id": 335, "transition": 748, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 103 /min\nnur zentral noch tastbar\nRR: 60/057"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 802, "fields": {"code": 1007, "state_id": 345, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 94/073"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 803, "fields": {"code": 1007, "state_id": 355, "transition": 748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 113 /min\nzentral nicht tastbar\nRR: 42/038"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 804, "fields": {"code": 1007, "state_id": 685, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 66 /min\nperipher kräftig tastbar\nRR: 144/078"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 805, "fields": {"code": 1007, "state_id": 695, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 112/065"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 806, "fields": {"code": 1007, "state_id": 705, "transition": 748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 126/077"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 807, "fields": {"code": 1007, "state_id": 715, "transition": 748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nnur zentral noch tastbar\nRR: 74/060"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 808, "fields": {"code": 1007, "state_id": 725, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 112/074"}, "examination_codes": {"BZ": 920, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 809, "fields": {"code": 1007, "state_id": 735, "transition": 748, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 125 /min\nnur zentral noch tastbar\nRR: 60/057"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 810, "fields": {"code": 1007, "state_id": 745, "transition": 748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 94/073"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 811, "fields": {"code": 1007, "state_id": 755, "transition": 748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 139 /min\nzentral nicht tastbar\nRR: 42/038"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 812, "fields": {"code": 1007, "state_id": 214, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 115/067"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 813, "fields": {"code": 1007, "state_id": 224, "transition": 772, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 109/075"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 814, "fields": {"code": 1007, "state_id": 234, "transition": 772, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 82/063"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 815, "fields": {"code": 1007, "state_id": 244, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 95/072"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 816, "fields": {"code": 1007, "state_id": 254, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 83/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 817, "fields": {"code": 1007, "state_id": 264, "transition": 772, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 77/071"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 818, "fields": {"code": 1007, "state_id": 274, "transition": 772, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 111 /min\nnur zentral noch tastbar\nRR: 50/045"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 819, "fields": {"code": 1007, "state_id": 284, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 142/079"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 820, "fields": {"code": 1007, "state_id": 294, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 115/067"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 821, "fields": {"code": 1007, "state_id": 304, "transition": 772, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 124/078"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 822, "fields": {"code": 1007, "state_id": 314, "transition": 772, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 82/063"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 823, "fields": {"code": 1007, "state_id": 324, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 110/075"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 824, "fields": {"code": 1007, "state_id": 334, "transition": 772, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 103 /min\nnur zentral noch tastbar\nRR: 68/060"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 825, "fields": {"code": 1007, "state_id": 344, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 92/074"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 826, "fields": {"code": 1007, "state_id": 354, "transition": 772, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 113 /min\nnur zentral noch tastbar\nRR: 50/045"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 827, "fields": {"code": 1007, "state_id": 684, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 142/079"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 828, "fields": {"code": 1007, "state_id": 694, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 115/067"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 829, "fields": {"code": 1007, "state_id": 704, "transition": 772, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher tastbar\nRR: 124/078"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 830, "fields": {"code": 1007, "state_id": 714, "transition": 772, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 82/063"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 831, "fields": {"code": 1007, "state_id": 724, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 110/075"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 832, "fields": {"code": 1007, "state_id": 734, "transition": 772, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 125 /min\nnur zentral noch tastbar\nRR: 68/060"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 833, "fields": {"code": 1007, "state_id": 744, "transition": 772, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 92/074"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 834, "fields": {"code": 1007, "state_id": 754, "transition": 772, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 139 /min\nnur zentral noch tastbar\nRR: 50/045"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 835, "fields": {"code": 1007, "state_id": 213, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 62 /min\nperipher tastbar\nRR: 113/064"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 836, "fields": {"code": 1007, "state_id": 223, "transition": 796, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 107/072"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 837, "fields": {"code": 1007, "state_id": 233, "transition": 796, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 73 /min\nperipher tastbar\nRR: 85/061"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 838, "fields": {"code": 1007, "state_id": 243, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 93/069"}, "examination_codes": {"BZ": 954, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 839, "fields": {"code": 1007, "state_id": 253, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 81/060"}, "examination_codes": {"BZ": 954, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 840, "fields": {"code": 1007, "state_id": 263, "transition": 796, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 75/068"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 841, "fields": {"code": 1007, "state_id": 273, "transition": 796, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 105 /min\nnur zentral noch tastbar\nRR: 53/048"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 842, "fields": {"code": 1007, "state_id": 283, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 135/075"}, "examination_codes": {"BZ": 954, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 843, "fields": {"code": 1007, "state_id": 293, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 113/064"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 844, "fields": {"code": 1007, "state_id": 303, "transition": 796, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 117/074"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 845, "fields": {"code": 1007, "state_id": 313, "transition": 796, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 85/061"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 846, "fields": {"code": 1007, "state_id": 323, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 103/071"}, "examination_codes": {"BZ": 954, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 847, "fields": {"code": 1007, "state_id": 333, "transition": 796, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nnur zentral noch tastbar\nRR: 71/058"}, "examination_codes": {"BZ": 954, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 848, "fields": {"code": 1007, "state_id": 343, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 85/070"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 849, "fields": {"code": 1007, "state_id": 353, "transition": 796, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 107 /min\nnur zentral noch tastbar\nRR: 53/048"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 850, "fields": {"code": 1007, "state_id": 683, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 135/075"}, "examination_codes": {"BZ": 954, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 851, "fields": {"code": 1007, "state_id": 693, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 113/064"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 852, "fields": {"code": 1007, "state_id": 703, "transition": 796, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher tastbar\nRR: 117/074"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 853, "fields": {"code": 1007, "state_id": 713, "transition": 796, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 85/061"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 854, "fields": {"code": 1007, "state_id": 723, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 103/071"}, "examination_codes": {"BZ": 954, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 855, "fields": {"code": 1007, "state_id": 733, "transition": 796, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 117 /min\nnur zentral noch tastbar\nRR: 71/058"}, "examination_codes": {"BZ": 954, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 856, "fields": {"code": 1007, "state_id": 743, "transition": 796, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 85/070"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 857, "fields": {"code": 1007, "state_id": 753, "transition": 796, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 131 /min\nnur zentral noch tastbar\nRR: 53/048"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 858, "fields": {"code": 1007, "state_id": 212, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 116/066"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 859, "fields": {"code": 1007, "state_id": 222, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 110/074"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 860, "fields": {"code": 1007, "state_id": 232, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 73 /min\nperipher tastbar\nRR: 93/064"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 861, "fields": {"code": 1007, "state_id": 242, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 96/071"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 862, "fields": {"code": 1007, "state_id": 252, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 84/062"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 863, "fields": {"code": 1007, "state_id": 262, "transition": 820, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 78/070"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 864, "fields": {"code": 1007, "state_id": 272, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 105 /min\nnur zentral noch tastbar\nRR: 61/060"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 865, "fields": {"code": 1007, "state_id": 282, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 133/076"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 866, "fields": {"code": 1007, "state_id": 292, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 116/066"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 867, "fields": {"code": 1007, "state_id": 302, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 115/075"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 868, "fields": {"code": 1007, "state_id": 312, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 93/064"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 869, "fields": {"code": 1007, "state_id": 322, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher tastbar\nRR: 101/072"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 870, "fields": {"code": 1007, "state_id": 332, "transition": 820, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 79/061"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 871, "fields": {"code": 1007, "state_id": 342, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 83/071"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 872, "fields": {"code": 1007, "state_id": 352, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 107 /min\nnur zentral noch tastbar\nRR: 61/060"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 873, "fields": {"code": 1007, "state_id": 682, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 133/076"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 808, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 874, "fields": {"code": 1007, "state_id": 692, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 116/066"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 875, "fields": {"code": 1007, "state_id": 702, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 82 /min\nperipher tastbar\nRR: 115/075"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 876, "fields": {"code": 1007, "state_id": 712, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 93/064"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 877, "fields": {"code": 1007, "state_id": 722, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 101/072"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 878, "fields": {"code": 1007, "state_id": 732, "transition": 820, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 117 /min\nperipher tastbar\nRR: 79/061"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 879, "fields": {"code": 1007, "state_id": 742, "transition": 820, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 117 /min\nperipher tastbar\nRR: 83/071"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 880, "fields": {"code": 1007, "state_id": 752, "transition": 820, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 131 /min\nnur zentral noch tastbar\nRR: 61/060"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 881, "fields": {"code": 1007, "state_id": 551, "transition": 869, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 137/089"}, "examination_codes": {"BZ": 928, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 882, "fields": {"code": 1007, "state_id": 552, "transition": 844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 130 /min\nnur zentral noch tastbar\nRR: 70/063"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 237, "Rö-Thorax": 445, "Ultraschall": 615, "Rö-Extremitäten": 527}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 883, "fields": {"code": 1008, "state_id": 101, "transition": 1018, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 143/076"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 207, "Rö-Thorax": 389, "Ultraschall": 624, "Rö-Extremitäten": 607}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 884, "fields": {"code": 1008, "state_id": 102, "transition": 1017, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 145/079"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 207, "Rö-Thorax": 389, "Ultraschall": 624, "Rö-Extremitäten": 607}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 885, "fields": {"code": 1008, "state_id": 103, "transition": 1016, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 142/077"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 207, "Rö-Thorax": 389, "Ultraschall": 624, "Rö-Extremitäten": 607}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 886, "fields": {"code": 1008, "state_id": 104, "transition": 992, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 75/068"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 207, "Rö-Thorax": 389, "Ultraschall": 624, "Rö-Extremitäten": 607}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 887, "fields": {"code": 1008, "state_id": 204, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 133/086"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 888, "fields": {"code": 1008, "state_id": 205, "transition": 944, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 130/084"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 889, "fields": {"code": 1008, "state_id": 206, "transition": 943, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 132/087"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 890, "fields": {"code": 1008, "state_id": 500, "transition": 870, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfrequenz: 0 /min\nSpO2: n.m. %\nAtemstillstand", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 891, "fields": {"code": 1008, "state_id": 502, "transition": 870, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 892, "fields": {"code": 1008, "state_id": 207, "transition": 895, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 59 /min\nperipher tastbar\nRR: 129/085"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 893, "fields": {"code": 1008, "state_id": 208, "transition": 871, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 131/088"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 894, "fields": {"code": 1008, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 59 /min\nperipher tastbar\nRR: 128/086"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 895, "fields": {"code": 1008, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 85/076"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 896, "fields": {"code": 1008, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 110/085"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 897, "fields": {"code": 1008, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 107 /min\nzentral nicht tastbar\nRR: 37/033"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 898, "fields": {"code": 1008, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 96/082"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 899, "fields": {"code": 1008, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 114 /min\nnur zentral noch tastbar\nRR: 53/052"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 900, "fields": {"code": 1008, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 78/073"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 901, "fields": {"code": 1008, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 153 /min\nzentral nicht tastbar\nRR: 5/005"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 714, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 902, "fields": {"code": 1008, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 49 /min\nperipher kräftig tastbar\nRR: 158/092"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 903, "fields": {"code": 1008, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 85/076"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 904, "fields": {"code": 1008, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 56 /min\nperipher kräftig tastbar\nRR: 140/091"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 905, "fields": {"code": 1008, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 110 /min\nzentral nicht tastbar\nRR: 37/033"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 906, "fields": {"code": 1008, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher tastbar\nRR: 126/088"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 907, "fields": {"code": 1008, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 142 /min\nzentral nicht tastbar\nRR: 23/021"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 908, "fields": {"code": 1008, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 108/087"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 909, "fields": {"code": 1008, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 155 /min\nzentral nicht tastbar\nRR: 5/005"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 714, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 910, "fields": {"code": 1008, "state_id": 689, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 158/092"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 911, "fields": {"code": 1008, "state_id": 699, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 85/076"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 912, "fields": {"code": 1008, "state_id": 709, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 140/091"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 913, "fields": {"code": 1008, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 136 /min\nzentral nicht tastbar\nRR: 37/033"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 914, "fields": {"code": 1008, "state_id": 729, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 126/088"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 915, "fields": {"code": 1008, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 171 /min\nzentral nicht tastbar\nRR: 23/021"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 916, "fields": {"code": 1008, "state_id": 749, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 108/087"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 917, "fields": {"code": 1008, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 190 /min\nzentral nicht tastbar\nRR: 5/005"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 714, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 918, "fields": {"code": 1008, "state_id": 218, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 88/078"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 919, "fields": {"code": 1008, "state_id": 228, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 113/087"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 920, "fields": {"code": 1008, "state_id": 238, "transition": 871, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 107 /min\nzentral nicht tastbar\nRR: 45/041"}, "examination_codes": {"BZ": 906, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 921, "fields": {"code": 1008, "state_id": 248, "transition": 871, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 99/084"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 922, "fields": {"code": 1008, "state_id": 258, "transition": 871, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 118 /min\nnur zentral noch tastbar\nRR: 56/054"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 923, "fields": {"code": 1008, "state_id": 268, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 81/075"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 924, "fields": {"code": 1008, "state_id": 278, "transition": 871, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 153 /min\nzentral nicht tastbar\nRR: 13/012"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 714, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 925, "fields": {"code": 1008, "state_id": 288, "transition": 871, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 156/093"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 926, "fields": {"code": 1008, "state_id": 298, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 88/078"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 927, "fields": {"code": 1008, "state_id": 308, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 60 /min\nperipher kräftig tastbar\nRR: 138/092"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 928, "fields": {"code": 1008, "state_id": 318, "transition": 871, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 110 /min\nzentral nicht tastbar\nRR: 45/041"}, "examination_codes": {"BZ": 906, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 929, "fields": {"code": 1008, "state_id": 328, "transition": 871, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 124/089"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 930, "fields": {"code": 1008, "state_id": 338, "transition": 871, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 142 /min\nzentral nicht tastbar\nRR: 31/028"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 931, "fields": {"code": 1008, "state_id": 348, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 106/088"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 932, "fields": {"code": 1008, "state_id": 358, "transition": 871, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 155 /min\nzentral nicht tastbar\nRR: 13/012"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 714, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 933, "fields": {"code": 1008, "state_id": 688, "transition": 871, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 66 /min\nperipher kräftig tastbar\nRR: 156/093"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 934, "fields": {"code": 1008, "state_id": 698, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 88/078"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 935, "fields": {"code": 1008, "state_id": 708, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 138/092"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 936, "fields": {"code": 1008, "state_id": 718, "transition": 871, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 136 /min\nzentral nicht tastbar\nRR: 45/041"}, "examination_codes": {"BZ": 906, "Hb": 407, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 937, "fields": {"code": 1008, "state_id": 728, "transition": 871, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 124/089"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 938, "fields": {"code": 1008, "state_id": 738, "transition": 871, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 171 /min\nzentral nicht tastbar\nRR: 31/028"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 939, "fields": {"code": 1008, "state_id": 748, "transition": 871, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 106/088"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 940, "fields": {"code": 1008, "state_id": 758, "transition": 871, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 190 /min\nzentral nicht tastbar\nRR: 13/012"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 714, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 941, "fields": {"code": 1008, "state_id": 217, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 86/075"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 942, "fields": {"code": 1008, "state_id": 227, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 111/084"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 943, "fields": {"code": 1008, "state_id": 237, "transition": 895, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 101 /min\nzentral nicht tastbar\nRR: 48/043"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 944, "fields": {"code": 1008, "state_id": 247, "transition": 895, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 97/081"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 945, "fields": {"code": 1008, "state_id": 257, "transition": 895, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 115 /min\nnur zentral noch tastbar\nRR: 54/051"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 946, "fields": {"code": 1008, "state_id": 267, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 79/072"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 947, "fields": {"code": 1008, "state_id": 277, "transition": 895, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 145 /min\nzentral nicht tastbar\nRR: 16/014"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 948, "fields": {"code": 1008, "state_id": 287, "transition": 895, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 149/089"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 949, "fields": {"code": 1008, "state_id": 297, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 82 /min\nperipher tastbar\nRR: 86/075"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 950, "fields": {"code": 1008, "state_id": 307, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 60 /min\nperipher kräftig tastbar\nRR: 131/088"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 951, "fields": {"code": 1008, "state_id": 317, "transition": 895, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 104 /min\nzentral nicht tastbar\nRR: 48/043"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 952, "fields": {"code": 1008, "state_id": 327, "transition": 895, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 117/085"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 953, "fields": {"code": 1008, "state_id": 337, "transition": 895, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 134 /min\nzentral nicht tastbar\nRR: 34/031"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 954, "fields": {"code": 1008, "state_id": 347, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 99/084"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 955, "fields": {"code": 1008, "state_id": 357, "transition": 895, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 146 /min\nzentral nicht tastbar\nRR: 16/014"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 956, "fields": {"code": 1008, "state_id": 687, "transition": 895, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 66 /min\nperipher kräftig tastbar\nRR: 149/089"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 957, "fields": {"code": 1008, "state_id": 697, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 86/075"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 958, "fields": {"code": 1008, "state_id": 707, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 131/088"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 959, "fields": {"code": 1008, "state_id": 717, "transition": 895, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 128 /min\nzentral nicht tastbar\nRR: 48/043"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 960, "fields": {"code": 1008, "state_id": 727, "transition": 895, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 117/085"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 961, "fields": {"code": 1008, "state_id": 737, "transition": 895, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 161 /min\nzentral nicht tastbar\nRR: 34/031"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 962, "fields": {"code": 1008, "state_id": 747, "transition": 895, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 99/084"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 963, "fields": {"code": 1008, "state_id": 757, "transition": 895, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 179 /min\nzentral nicht tastbar\nRR: 16/014"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 964, "fields": {"code": 1008, "state_id": 216, "transition": 943, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 89/077"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 965, "fields": {"code": 1008, "state_id": 226, "transition": 943, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 114/086"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 966, "fields": {"code": 1008, "state_id": 236, "transition": 943, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 101 /min\nnur zentral noch tastbar\nRR: 56/055"}, "examination_codes": {"BZ": 906, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 967, "fields": {"code": 1008, "state_id": 246, "transition": 943, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 100/083"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 968, "fields": {"code": 1008, "state_id": 256, "transition": 943, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 119 /min\nnur zentral noch tastbar\nRR: 57/053"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 969, "fields": {"code": 1008, "state_id": 266, "transition": 943, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 82/074"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 970, "fields": {"code": 1008, "state_id": 276, "transition": 943, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 145 /min\nzentral nicht tastbar\nRR: 24/022"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 971, "fields": {"code": 1008, "state_id": 286, "transition": 943, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 147/090"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 972, "fields": {"code": 1008, "state_id": 296, "transition": 943, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 89/077"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 973, "fields": {"code": 1008, "state_id": 306, "transition": 943, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 129/089"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 974, "fields": {"code": 1008, "state_id": 316, "transition": 943, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 104 /min\nnur zentral noch tastbar\nRR: 56/055"}, "examination_codes": {"BZ": 906, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 975, "fields": {"code": 1008, "state_id": 326, "transition": 943, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 115/086"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 976, "fields": {"code": 1008, "state_id": 336, "transition": 943, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 134 /min\nzentral nicht tastbar\nRR: 42/038"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 977, "fields": {"code": 1008, "state_id": 346, "transition": 943, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 97/085"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 978, "fields": {"code": 1008, "state_id": 356, "transition": 943, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 147 /min\nzentral nicht tastbar\nRR: 24/022"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 979, "fields": {"code": 1008, "state_id": 686, "transition": 870, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 147/090"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 980, "fields": {"code": 1008, "state_id": 696, "transition": 870, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 89/077"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 981, "fields": {"code": 1008, "state_id": 706, "transition": 870, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher tastbar\nRR: 129/089"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 982, "fields": {"code": 1008, "state_id": 716, "transition": 870, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 128 /min\nnur zentral noch tastbar\nRR: 56/055"}, "examination_codes": {"BZ": 906, "Hb": 407, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 983, "fields": {"code": 1008, "state_id": 726, "transition": 870, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 115/086"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 984, "fields": {"code": 1008, "state_id": 736, "transition": 870, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 161 /min\nzentral nicht tastbar\nRR: 42/038"}, "examination_codes": {"BZ": 906, "Hb": 411, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 985, "fields": {"code": 1008, "state_id": 746, "transition": 870, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 97/085"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 986, "fields": {"code": 1008, "state_id": 756, "transition": 870, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 180 /min\nzentral nicht tastbar\nRR: 24/022"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 191, "Rö-Thorax": 377, "Ultraschall": 626, "Rö-Extremitäten": 563}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 987, "fields": {"code": 1008, "state_id": 215, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 87/074"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 988, "fields": {"code": 1008, "state_id": 225, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 112/083"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 989, "fields": {"code": 1008, "state_id": 235, "transition": 944, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 95 /min\nnur zentral noch tastbar\nRR: 59/053"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 990, "fields": {"code": 1008, "state_id": 245, "transition": 944, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 98/080"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 991, "fields": {"code": 1008, "state_id": 255, "transition": 944, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 116 /min\nnur zentral noch tastbar\nRR: 55/050"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 992, "fields": {"code": 1008, "state_id": 265, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 80/079"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 993, "fields": {"code": 1008, "state_id": 275, "transition": 944, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 137 /min\nzentral nicht tastbar\nRR: 27/024"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 994, "fields": {"code": 1008, "state_id": 285, "transition": 944, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 140/086"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 995, "fields": {"code": 1008, "state_id": 295, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 87/074"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 996, "fields": {"code": 1008, "state_id": 305, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 122/085"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 997, "fields": {"code": 1008, "state_id": 315, "transition": 944, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 98 /min\nnur zentral noch tastbar\nRR: 59/053"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 998, "fields": {"code": 1008, "state_id": 325, "transition": 944, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 108/082"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 999, "fields": {"code": 1008, "state_id": 335, "transition": 944, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 126 /min\nzentral nicht tastbar\nRR: 45/041"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1000, "fields": {"code": 1008, "state_id": 345, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 90/081"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1001, "fields": {"code": 1008, "state_id": 355, "transition": 944, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 139 /min\nzentral nicht tastbar\nRR: 27/024"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 827, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1002, "fields": {"code": 1008, "state_id": 685, "transition": 944, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 140/086"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1003, "fields": {"code": 1008, "state_id": 695, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 87/074"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1004, "fields": {"code": 1008, "state_id": 705, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher tastbar\nRR: 122/085"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1005, "fields": {"code": 1008, "state_id": 715, "transition": 944, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 120 /min\nnur zentral noch tastbar\nRR: 59/053"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1006, "fields": {"code": 1008, "state_id": 725, "transition": 944, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 108/082"}, "examination_codes": {"BZ": 920, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1007, "fields": {"code": 1008, "state_id": 735, "transition": 944, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 151 /min\nzentral nicht tastbar\nRR: 45/041"}, "examination_codes": {"BZ": 920, "Hb": 411, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1008, "fields": {"code": 1008, "state_id": 745, "transition": 944, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 90/081"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1009, "fields": {"code": 1008, "state_id": 755, "transition": 944, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 170 /min\nzentral nicht tastbar\nRR: 27/024"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 173, "Rö-Thorax": 429, "Ultraschall": 502, "Rö-Extremitäten": 640}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1010, "fields": {"code": 1008, "state_id": 214, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1011, "fields": {"code": 1008, "state_id": 224, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 115/085"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1012, "fields": {"code": 1008, "state_id": 234, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 73 /min\nperipher tastbar\nRR: 98/075"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1013, "fields": {"code": 1008, "state_id": 244, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 101/082"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1014, "fields": {"code": 1008, "state_id": 254, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 89/073"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1015, "fields": {"code": 1008, "state_id": 264, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 83/081"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1016, "fields": {"code": 1008, "state_id": 274, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 105 /min\nnur zentral noch tastbar\nRR: 66/063"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1017, "fields": {"code": 1008, "state_id": 284, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 138/087"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1018, "fields": {"code": 1008, "state_id": 294, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1019, "fields": {"code": 1008, "state_id": 304, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 120/086"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1020, "fields": {"code": 1008, "state_id": 314, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 98/075"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1021, "fields": {"code": 1008, "state_id": 324, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher tastbar\nRR: 106/083"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1022, "fields": {"code": 1008, "state_id": 334, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 84/072"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1023, "fields": {"code": 1008, "state_id": 344, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 88/082"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1024, "fields": {"code": 1008, "state_id": 354, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 107 /min\nnur zentral noch tastbar\nRR: 66/063"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1025, "fields": {"code": 1008, "state_id": 684, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 138/087"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 800, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1026, "fields": {"code": 1008, "state_id": 694, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1027, "fields": {"code": 1008, "state_id": 704, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 82 /min\nperipher tastbar\nRR: 120/086"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1028, "fields": {"code": 1008, "state_id": 714, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 98/075"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1029, "fields": {"code": 1008, "state_id": 724, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 106/083"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1030, "fields": {"code": 1008, "state_id": 734, "transition": 968, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 84/072"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1031, "fields": {"code": 1008, "state_id": 744, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 88/082"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1032, "fields": {"code": 1008, "state_id": 754, "transition": 968, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 131 /min\nnur zentral noch tastbar\nRR: 66/063"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 274, "Rö-Thorax": 370, "Ultraschall": 665, "Rö-Extremitäten": 511}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1033, "fields": {"code": 1008, "state_id": 551, "transition": 1021, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 143/076"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 207, "Rö-Thorax": 389, "Ultraschall": 624, "Rö-Extremitäten": 607}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1034, "fields": {"code": 1008, "state_id": 552, "transition": 1020, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 145/079"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 207, "Rö-Thorax": 389, "Ultraschall": 624, "Rö-Extremitäten": 607}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1035, "fields": {"code": 1008, "state_id": 553, "transition": 1019, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 142/077"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 207, "Rö-Thorax": 389, "Ultraschall": 624, "Rö-Extremitäten": 607}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1036, "fields": {"code": 1008, "state_id": 554, "transition": 992, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 130 /min\nperipher tastbar\nRR: 75/068"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 207, "Rö-Thorax": 389, "Ultraschall": 624, "Rö-Extremitäten": 607}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1037, "fields": {"code": 1009, "state_id": 101, "transition": 1077, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1038, "fields": {"code": 1009, "state_id": 102, "transition": 1076, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1039, "fields": {"code": 1009, "state_id": 103, "transition": 1075, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1040, "fields": {"code": 1009, "state_id": 104, "transition": 1074, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1041, "fields": {"code": 1009, "state_id": 105, "transition": 1064, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 102 /min\nnur zentral noch tastbar\nRR: 55/042"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 725, "ZVD": 817, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1042, "fields": {"code": 1009, "state_id": 215, "transition": 1054, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 113/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1043, "fields": {"code": 1009, "state_id": 216, "transition": 1044, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1044, "fields": {"code": 1009, "state_id": 217, "transition": 1034, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 118/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1045, "fields": {"code": 1009, "state_id": 218, "transition": 1022, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 126/084"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1046, "fields": {"code": 1009, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 123/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1047, "fields": {"code": 1009, "state_id": 239, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 9 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 2 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1048, "fields": {"code": 1009, "state_id": 500, "transition": 1023, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfrequenz: 0 /min\nSpO2: n.m. %\nAtemstillstand", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 1049, "fields": {"code": 1009, "state_id": 502, "transition": 1023, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 1050, "fields": {"code": 1009, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 123/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1051, "fields": {"code": 1009, "state_id": 279, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 11 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 3 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1052, "fields": {"code": 1009, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 123/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1053, "fields": {"code": 1009, "state_id": 319, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 11 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 2 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1054, "fields": {"code": 1009, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 123/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1055, "fields": {"code": 1009, "state_id": 359, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 13 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 3 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1056, "fields": {"code": 1009, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher tastbar\nRR: 123/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1057, "fields": {"code": 1009, "state_id": 759, "transition": 1023, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 2 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1058, "fields": {"code": 1009, "state_id": 238, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 11 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 5 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1059, "fields": {"code": 1009, "state_id": 258, "transition": 1022, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 126/084"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1060, "fields": {"code": 1009, "state_id": 278, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 13 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 6 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1061, "fields": {"code": 1009, "state_id": 298, "transition": 1022, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 126/084"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1062, "fields": {"code": 1009, "state_id": 318, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 13 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 5 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1063, "fields": {"code": 1009, "state_id": 338, "transition": 1022, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 126/084"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1064, "fields": {"code": 1009, "state_id": 358, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 6 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1065, "fields": {"code": 1009, "state_id": 738, "transition": 1022, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 126/084"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1066, "fields": {"code": 1009, "state_id": 758, "transition": 1023, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 5 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1067, "fields": {"code": 1009, "state_id": 237, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 9 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 10 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1068, "fields": {"code": 1009, "state_id": 257, "transition": 1034, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 118/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1069, "fields": {"code": 1009, "state_id": 277, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 11 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 12 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1070, "fields": {"code": 1009, "state_id": 297, "transition": 1034, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 118/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1071, "fields": {"code": 1009, "state_id": 317, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 11 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 10 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1072, "fields": {"code": 1009, "state_id": 337, "transition": 1034, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 118/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1073, "fields": {"code": 1009, "state_id": 357, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 13 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 12 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1074, "fields": {"code": 1009, "state_id": 737, "transition": 1034, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 118/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1075, "fields": {"code": 1009, "state_id": 757, "transition": 1023, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 10 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 714, "ZVD": 816, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 189, "Rö-Thorax": 324, "Ultraschall": 615, "Rö-Extremitäten": 652}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1076, "fields": {"code": 1009, "state_id": 236, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 11 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 23 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 714, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1077, "fields": {"code": 1009, "state_id": 256, "transition": 1044, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1078, "fields": {"code": 1009, "state_id": 276, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 13 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 26 /min\nzentral nicht tastbar\nRR: 1/001"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 714, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1079, "fields": {"code": 1009, "state_id": 296, "transition": 1044, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1080, "fields": {"code": 1009, "state_id": 316, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 13 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 23 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 714, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1081, "fields": {"code": 1009, "state_id": 336, "transition": 1044, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1082, "fields": {"code": 1009, "state_id": 356, "transition": 1024, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 26 /min\nzentral nicht tastbar\nRR: 3/003"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 714, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1083, "fields": {"code": 1009, "state_id": 736, "transition": 1044, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 121/077"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1084, "fields": {"code": 1009, "state_id": 756, "transition": 1023, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 23 /min\nzentral nicht tastbar\nRR: 0"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 714, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 137, "Rö-Thorax": 485, "Ultraschall": 615, "Rö-Extremitäten": 675}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1085, "fields": {"code": 1009, "state_id": 235, "transition": 1054, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 9 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 45 /min\nzentral nicht tastbar\nRR: 19/018"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 725, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1086, "fields": {"code": 1009, "state_id": 255, "transition": 1054, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 113/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1087, "fields": {"code": 1009, "state_id": 275, "transition": 1054, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 11 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 50 /min\nzentral nicht tastbar\nRR: 26/024"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 725, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1088, "fields": {"code": 1009, "state_id": 295, "transition": 1054, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 113/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1089, "fields": {"code": 1009, "state_id": 315, "transition": 1054, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 11 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 45 /min\nzentral nicht tastbar\nRR: 21/019"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 725, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1090, "fields": {"code": 1009, "state_id": 335, "transition": 1054, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 113/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1091, "fields": {"code": 1009, "state_id": 355, "transition": 1054, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 13 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 50 /min\nzentral nicht tastbar\nRR: 28/025"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 725, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1092, "fields": {"code": 1009, "state_id": 735, "transition": 1054, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nbeidseitiges AG\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 113/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1093, "fields": {"code": 1009, "state_id": 755, "transition": 1054, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 45 /min\nzentral nicht tastbar\nRR: 19/018"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 725, "ZVD": 835, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 112, "Rö-Thorax": 381, "Ultraschall": 615, "Rö-Extremitäten": 591}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1094, "fields": {"code": 1009, "state_id": 551, "transition": 1081, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1095, "fields": {"code": 1009, "state_id": 552, "transition": 1080, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1096, "fields": {"code": 1009, "state_id": 553, "transition": 1079, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1097, "fields": {"code": 1009, "state_id": 554, "transition": 1078, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 127/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1098, "fields": {"code": 1009, "state_id": 555, "transition": 1064, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnur einseitiges AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 102 /min\nnur zentral noch tastbar\nRR: 55/042"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 725, "ZVD": 817, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 135, "Rö-Thorax": 401, "Ultraschall": 615, "Rö-Extremitäten": 609}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1099, "fields": {"code": 1010, "state_id": 101, "transition": 1154, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 143/076"}, "examination_codes": {"BZ": 928, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1100, "fields": {"code": 1010, "state_id": 102, "transition": 1153, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 145/079"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1101, "fields": {"code": 1010, "state_id": 103, "transition": 1152, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 142/077"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1102, "fields": {"code": 1010, "state_id": 104, "transition": 1151, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 144/080"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1103, "fields": {"code": 1010, "state_id": 105, "transition": 1150, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 141/078"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1104, "fields": {"code": 1010, "state_id": 106, "transition": 1149, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 143/081"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1105, "fields": {"code": 1010, "state_id": 107, "transition": 1148, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 140/079"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1106, "fields": {"code": 1010, "state_id": 108, "transition": 1116, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 118 /min\nnur zentral noch tastbar\nRR: 57/032"}, "examination_codes": {"BZ": 920, "Hb": 406, "EKG": 722, "ZVD": 831, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 105, "Rö-Thorax": 312, "Ultraschall": 591, "Rö-Extremitäten": 619}, "special_events": "Pat. klagt über starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1107, "fields": {"code": 1010, "state_id": 358, "transition": 1115, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 121 /min\nzentral nicht tastbar\nRR: 47/032"}, "examination_codes": {"BZ": 906, "Hb": 406, "EKG": 722, "ZVD": 831, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1108, "fields": {"code": 1010, "state_id": 500, "transition": 1082, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfrequenz: 0 /min\nSpO2: n.m. %\nAtemstillstand", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 1109, "fields": {"code": 1010, "state_id": 502, "transition": 1082, "vital_signs": {"Haut": "kalt\ngrau/marmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit, entrundet", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 0 /min\n0\nRR: 0"}, "examination_codes": {}, "special_events": "0\nsichere Todeszeichen", "is_dead": true}}, {"model": "template.patientstate", "pk": 1110, "fields": {"code": 1010, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 121 /min\nzentral nicht tastbar\nRR: 38/026"}, "examination_codes": {"BZ": 920, "Hb": 406, "EKG": 722, "ZVD": 831, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1111, "fields": {"code": 1010, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 113 /min\nzentral nicht tastbar\nRR: 46/027"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 722, "ZVD": 814, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1112, "fields": {"code": 1010, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 108 /min\nnur zentral noch tastbar\nRR: 56/027"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 823, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1113, "fields": {"code": 1010, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 84/044"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 838, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1114, "fields": {"code": 1010, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 102 /min\nnur zentral noch tastbar\nRR: 56/029"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 838, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1115, "fields": {"code": 1010, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 76/038"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 822, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1116, "fields": {"code": 1010, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 87 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 805, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1117, "fields": {"code": 1010, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 837, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1118, "fields": {"code": 1010, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 80 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 429, "EKG": 722, "ZVD": 837, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1119, "fields": {"code": 1010, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 810, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1120, "fields": {"code": 1010, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 112/047"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 821, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1121, "fields": {"code": 1010, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 65 /min\nperipher tastbar\nRR: 120/048"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 813, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1122, "fields": {"code": 1010, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 104/041"}, "examination_codes": {"BZ": 920, "Hb": 425, "EKG": 722, "ZVD": 813, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1123, "fields": {"code": 1010, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 120/050"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 804, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1124, "fields": {"code": 1010, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 130/050"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 836, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1125, "fields": {"code": 1010, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 138/051"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1126, "fields": {"code": 1010, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 150 /min\nzentral nicht tastbar\nRR: 38/026"}, "examination_codes": {"BZ": 920, "Hb": 406, "EKG": 722, "ZVD": 838, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1127, "fields": {"code": 1010, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 145 /min\nzentral nicht tastbar\nRR: 46/027"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 722, "ZVD": 822, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1128, "fields": {"code": 1010, "state_id": 749, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 137 /min\nnur zentral noch tastbar\nRR: 56/027"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 805, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1129, "fields": {"code": 1010, "state_id": 729, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 84/044"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 837, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1130, "fields": {"code": 1010, "state_id": 679, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 130 /min\nnur zentral noch tastbar\nRR: 56/029"}, "examination_codes": {"BZ": 920, "Hb": 407, "EKG": 722, "ZVD": 837, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1131, "fields": {"code": 1010, "state_id": 659, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 76/038"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 810, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1132, "fields": {"code": 1010, "state_id": 669, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 821, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1133, "fields": {"code": 1010, "state_id": 649, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 813, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1134, "fields": {"code": 1010, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 429, "EKG": 722, "ZVD": 813, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1135, "fields": {"code": 1010, "state_id": 699, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 804, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1136, "fields": {"code": 1010, "state_id": 709, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 112/047"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 836, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1137, "fields": {"code": 1010, "state_id": 689, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 120/048"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1138, "fields": {"code": 1010, "state_id": 639, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 104/041"}, "examination_codes": {"BZ": 920, "Hb": 425, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1139, "fields": {"code": 1010, "state_id": 619, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 120/050"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1140, "fields": {"code": 1010, "state_id": 629, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 130/050"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1141, "fields": {"code": 1010, "state_id": 609, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 138/051"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 185, "Rö-Thorax": 427, "Ultraschall": 658, "Rö-Extremitäten": 681}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1142, "fields": {"code": 1010, "state_id": 338, "transition": 1115, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 114 /min\nnur zentral noch tastbar\nRR: 55/033"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 814, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1143, "fields": {"code": 1010, "state_id": 348, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 108 /min\nnur zentral noch tastbar\nRR: 65/033"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 823, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1144, "fields": {"code": 1010, "state_id": 328, "transition": 1115, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 83/042"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 838, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Pat. klagt über leichte Atemnot", "is_dead": false}}, {"model": "template.patientstate", "pk": 1145, "fields": {"code": 1010, "state_id": 278, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 0 % nicht messbar\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 102 /min\nnur zentral noch tastbar\nRR: 65/035"}, "examination_codes": {"BZ": 906, "Hb": 407, "EKG": 722, "ZVD": 838, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1146, "fields": {"code": 1010, "state_id": 258, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 79/040"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 822, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1147, "fields": {"code": 1010, "state_id": 268, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 805, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1148, "fields": {"code": 1010, "state_id": 248, "transition": 1115, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 837, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1149, "fields": {"code": 1010, "state_id": 318, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 82 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 429, "EKG": 722, "ZVD": 837, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1150, "fields": {"code": 1010, "state_id": 298, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 78 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 810, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1151, "fields": {"code": 1010, "state_id": 308, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 111/045"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 821, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Pat. klagt über leichte Atemnot", "is_dead": false}}, {"model": "template.patientstate", "pk": 1152, "fields": {"code": 1010, "state_id": 288, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 119/046"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 813, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Pat. klagt über leichte Atemnot", "is_dead": false}}, {"model": "template.patientstate", "pk": 1153, "fields": {"code": 1010, "state_id": 238, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 70 /min\nperipher tastbar\nRR: 107/043"}, "examination_codes": {"BZ": 906, "Hb": 425, "EKG": 722, "ZVD": 813, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1154, "fields": {"code": 1010, "state_id": 218, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 65 /min\nperipher tastbar\nRR: 119/048"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 804, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Pat. klagt über leichte Atemnot", "is_dead": false}}, {"model": "template.patientstate", "pk": 1155, "fields": {"code": 1010, "state_id": 228, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 129/048"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 836, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Pat. klagt über leichte Atemnot", "is_dead": false}}, {"model": "template.patientstate", "pk": 1156, "fields": {"code": 1010, "state_id": 208, "transition": 1115, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 137/049"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Pat. klagt über leichte Atemnot", "is_dead": false}}, {"model": "template.patientstate", "pk": 1157, "fields": {"code": 1010, "state_id": 758, "transition": 1082, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 150 /min\nzentral nicht tastbar\nRR: 47/032"}, "examination_codes": {"BZ": 906, "Hb": 406, "EKG": 722, "ZVD": 838, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1158, "fields": {"code": 1010, "state_id": 738, "transition": 1082, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 145 /min\nnur zentral noch tastbar\nRR: 55/033"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 822, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1159, "fields": {"code": 1010, "state_id": 748, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 137 /min\nnur zentral noch tastbar\nRR: 65/033"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 805, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1160, "fields": {"code": 1010, "state_id": 728, "transition": 1082, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 124 /min\nperipher tastbar\nRR: 83/042"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 837, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1161, "fields": {"code": 1010, "state_id": 678, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 130 /min\nnur zentral noch tastbar\nRR: 65/035"}, "examination_codes": {"BZ": 906, "Hb": 407, "EKG": 722, "ZVD": 837, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1162, "fields": {"code": 1010, "state_id": 658, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 79/040"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 810, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1163, "fields": {"code": 1010, "state_id": 668, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 821, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1164, "fields": {"code": 1010, "state_id": 648, "transition": 1082, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 813, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1165, "fields": {"code": 1010, "state_id": 718, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 429, "EKG": 722, "ZVD": 813, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1166, "fields": {"code": 1010, "state_id": 698, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 804, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1167, "fields": {"code": 1010, "state_id": 708, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 111/045"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 836, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1168, "fields": {"code": 1010, "state_id": 688, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 87 /min\nperipher tastbar\nRR: 119/046"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1169, "fields": {"code": 1010, "state_id": 638, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 107/043"}, "examination_codes": {"BZ": 906, "Hb": 425, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1170, "fields": {"code": 1010, "state_id": 618, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 119/048"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1171, "fields": {"code": 1010, "state_id": 628, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 129/048"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1172, "fields": {"code": 1010, "state_id": 608, "transition": 1082, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 137/049"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 123, "Rö-Thorax": 460, "Ultraschall": 612, "Rö-Extremitäten": 530}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1173, "fields": {"code": 1010, "state_id": 551, "transition": 1161, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 143/076"}, "examination_codes": {"BZ": 928, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1174, "fields": {"code": 1010, "state_id": 552, "transition": 1160, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 145/079"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1175, "fields": {"code": 1010, "state_id": 553, "transition": 1159, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 142/077"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1176, "fields": {"code": 1010, "state_id": 554, "transition": 1158, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 144/080"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1177, "fields": {"code": 1010, "state_id": 555, "transition": 1157, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 141/078"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1178, "fields": {"code": 1010, "state_id": 556, "transition": 1156, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 143/081"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1179, "fields": {"code": 1010, "state_id": 557, "transition": 1155, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 90 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 140/079"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 136, "Rö-Thorax": 376, "Ultraschall": 522, "Rö-Extremitäten": 590}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1180, "fields": {"code": 1010, "state_id": 558, "transition": 1116, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 0 % nicht messbar\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 148 /min\nnur zentral noch tastbar\nRR: 57/032"}, "examination_codes": {"BZ": 920, "Hb": 406, "EKG": 722, "ZVD": 838, "Leber": 113, "Niere": 123, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 105, "Rö-Thorax": 312, "Ultraschall": 591, "Rö-Extremitäten": 619}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1181, "fields": {"code": 1011, "state_id": 101, "transition": 1178, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1182, "fields": {"code": 1011, "state_id": 351, "transition": 1176, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1183, "fields": {"code": 1011, "state_id": 352, "transition": 1174, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 926, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1184, "fields": {"code": 1011, "state_id": 353, "transition": 1172, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1185, "fields": {"code": 1011, "state_id": 354, "transition": 1170, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1186, "fields": {"code": 1011, "state_id": 355, "transition": 1168, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1187, "fields": {"code": 1011, "state_id": 356, "transition": 1166, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1188, "fields": {"code": 1011, "state_id": 357, "transition": 1164, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1189, "fields": {"code": 1011, "state_id": 358, "transition": 1162, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 420, "EKG": 739, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1190, "fields": {"code": 1011, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1191, "fields": {"code": 1011, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1192, "fields": {"code": 1011, "state_id": 758, "transition": 1162, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 420, "EKG": 739, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1193, "fields": {"code": 1011, "state_id": 757, "transition": 1164, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1194, "fields": {"code": 1011, "state_id": 756, "transition": 1166, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 420, "EKG": 739, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1195, "fields": {"code": 1011, "state_id": 755, "transition": 1168, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1196, "fields": {"code": 1011, "state_id": 754, "transition": 1170, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 420, "EKG": 739, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1197, "fields": {"code": 1011, "state_id": 753, "transition": 1172, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1198, "fields": {"code": 1011, "state_id": 752, "transition": 1174, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 926, "Hb": 420, "EKG": 739, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1199, "fields": {"code": 1011, "state_id": 751, "transition": 1176, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 912, "Hb": 420, "EKG": 739, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1200, "fields": {"code": 1011, "state_id": 551, "transition": 1178, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 91 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 739, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 175, "Rö-Thorax": 343, "Ultraschall": 615, "Rö-Extremitäten": 524}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1201, "fields": {"code": 1012, "state_id": 101, "transition": 1194, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1202, "fields": {"code": 1012, "state_id": 102, "transition": 1193, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1203, "fields": {"code": 1012, "state_id": 103, "transition": 1192, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1204, "fields": {"code": 1012, "state_id": 104, "transition": 1190, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1205, "fields": {"code": 1012, "state_id": 354, "transition": 1188, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1206, "fields": {"code": 1012, "state_id": 355, "transition": 1186, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1207, "fields": {"code": 1012, "state_id": 356, "transition": 1184, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1208, "fields": {"code": 1012, "state_id": 357, "transition": 1182, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1209, "fields": {"code": 1012, "state_id": 358, "transition": 1180, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1210, "fields": {"code": 1012, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1211, "fields": {"code": 1012, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1212, "fields": {"code": 1012, "state_id": 758, "transition": 1180, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1213, "fields": {"code": 1012, "state_id": 757, "transition": 1182, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1214, "fields": {"code": 1012, "state_id": 756, "transition": 1184, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1215, "fields": {"code": 1012, "state_id": 755, "transition": 1186, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1216, "fields": {"code": 1012, "state_id": 754, "transition": 1188, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1217, "fields": {"code": 1012, "state_id": 551, "transition": 1197, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1218, "fields": {"code": 1012, "state_id": 552, "transition": 1196, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1219, "fields": {"code": 1012, "state_id": 553, "transition": 1195, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1220, "fields": {"code": 1012, "state_id": 554, "transition": 1190, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 127/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1221, "fields": {"code": 1013, "state_id": 101, "transition": 1227, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1222, "fields": {"code": 1013, "state_id": 102, "transition": 1226, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1223, "fields": {"code": 1013, "state_id": 103, "transition": 1225, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1224, "fields": {"code": 1013, "state_id": 104, "transition": 1224, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1225, "fields": {"code": 1013, "state_id": 105, "transition": 1223, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1226, "fields": {"code": 1013, "state_id": 106, "transition": 1222, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1227, "fields": {"code": 1013, "state_id": 107, "transition": 1214, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 79 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 148/066"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1228, "fields": {"code": 1013, "state_id": 257, "transition": 1206, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 134/073"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1229, "fields": {"code": 1013, "state_id": 258, "transition": 1198, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 142/080"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1230, "fields": {"code": 1013, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 139/080"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1231, "fields": {"code": 1013, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 81 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 142/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1232, "fields": {"code": 1013, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 139/080"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1233, "fields": {"code": 1013, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 86 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 148/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1234, "fields": {"code": 1013, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 144/080"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1235, "fields": {"code": 1013, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nsichtbare ,", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 76 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 147/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1236, "fields": {"code": 1013, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 134/080"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1237, "fields": {"code": 1013, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 84 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 143/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1238, "fields": {"code": 1013, "state_id": 278, "transition": 1198, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 83 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 149/068"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1239, "fields": {"code": 1013, "state_id": 298, "transition": 1198, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 142/080"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1240, "fields": {"code": 1013, "state_id": 318, "transition": 1198, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 87 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 153/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1241, "fields": {"code": 1013, "state_id": 338, "transition": 1198, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 147/080"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1242, "fields": {"code": 1013, "state_id": 358, "transition": 1198, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 78 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 154/068"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1243, "fields": {"code": 1013, "state_id": 738, "transition": 1198, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 137/080"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1244, "fields": {"code": 1013, "state_id": 758, "transition": 1198, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 85 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 148/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1245, "fields": {"code": 1013, "state_id": 277, "transition": 1206, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 83 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 145/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1246, "fields": {"code": 1013, "state_id": 297, "transition": 1206, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 134/073"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1247, "fields": {"code": 1013, "state_id": 317, "transition": 1206, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 86 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 147/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1248, "fields": {"code": 1013, "state_id": 337, "transition": 1206, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 139/073"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1249, "fields": {"code": 1013, "state_id": 357, "transition": 1206, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 78 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 150/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1250, "fields": {"code": 1013, "state_id": 737, "transition": 1206, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher tastbar\nRR: 129/073"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1251, "fields": {"code": 1013, "state_id": 757, "transition": 1206, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 84 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 142/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1252, "fields": {"code": 1013, "state_id": 551, "transition": 1233, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1253, "fields": {"code": 1013, "state_id": 552, "transition": 1232, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1254, "fields": {"code": 1013, "state_id": 553, "transition": 1231, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1255, "fields": {"code": 1013, "state_id": 554, "transition": 1230, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 127/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1256, "fields": {"code": 1013, "state_id": 555, "transition": 1229, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 122/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1257, "fields": {"code": 1013, "state_id": 556, "transition": 1228, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 128/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1258, "fields": {"code": 1013, "state_id": 557, "transition": 1214, "vital_signs": {"Haut": "trocken\nsichtbare Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 79 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 143/066"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 162, "Rö-Thorax": 347, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1259, "fields": {"code": 1014, "state_id": 101, "transition": 1247, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1260, "fields": {"code": 1014, "state_id": 102, "transition": 1246, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1261, "fields": {"code": 1014, "state_id": 103, "transition": 1245, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1262, "fields": {"code": 1014, "state_id": 104, "transition": 1244, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 132/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1263, "fields": {"code": 1014, "state_id": 105, "transition": 1242, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 127/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1264, "fields": {"code": 1014, "state_id": 355, "transition": 1240, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1265, "fields": {"code": 1014, "state_id": 356, "transition": 1238, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1266, "fields": {"code": 1014, "state_id": 357, "transition": 1236, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1267, "fields": {"code": 1014, "state_id": 358, "transition": 1234, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1268, "fields": {"code": 1014, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "Pat klagt über sehr wenig Schmerz", "is_dead": false}}, {"model": "template.patientstate", "pk": 1269, "fields": {"code": 1014, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1270, "fields": {"code": 1014, "state_id": 758, "transition": 1234, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1271, "fields": {"code": 1014, "state_id": 757, "transition": 1236, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1272, "fields": {"code": 1014, "state_id": 756, "transition": 1238, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1273, "fields": {"code": 1014, "state_id": 755, "transition": 1240, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1274, "fields": {"code": 1014, "state_id": 551, "transition": 1251, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1275, "fields": {"code": 1014, "state_id": 552, "transition": 1250, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1276, "fields": {"code": 1014, "state_id": 553, "transition": 1249, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1277, "fields": {"code": 1014, "state_id": 554, "transition": 1248, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher tastbar\nRR: 127/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1278, "fields": {"code": 1014, "state_id": 555, "transition": 1242, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 122/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 260, "Rö-Thorax": 422, "Ultraschall": 615, "Rö-Extremitäten": 579}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1279, "fields": {"code": 1015, "state_id": 101, "transition": 1308, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1280, "fields": {"code": 1015, "state_id": 102, "transition": 1307, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1281, "fields": {"code": 1015, "state_id": 103, "transition": 1306, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1282, "fields": {"code": 1015, "state_id": 104, "transition": 1305, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1283, "fields": {"code": 1015, "state_id": 105, "transition": 1304, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1284, "fields": {"code": 1015, "state_id": 106, "transition": 1303, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1285, "fields": {"code": 1015, "state_id": 107, "transition": 1286, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 146/086"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1286, "fields": {"code": 1015, "state_id": 207, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 114/028"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1287, "fields": {"code": 1015, "state_id": 208, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 122/035"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1288, "fields": {"code": 1015, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 10 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 119/035"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1289, "fields": {"code": 1015, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 136/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1290, "fields": {"code": 1015, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 122/035"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1291, "fields": {"code": 1015, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 139/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1292, "fields": {"code": 1015, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 136/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1293, "fields": {"code": 1015, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 147/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1294, "fields": {"code": 1015, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 139/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1295, "fields": {"code": 1015, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 144/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1296, "fields": {"code": 1015, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 120/040"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1297, "fields": {"code": 1015, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 137/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1298, "fields": {"code": 1015, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 123/040"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1299, "fields": {"code": 1015, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 140/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1300, "fields": {"code": 1015, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 137/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1301, "fields": {"code": 1015, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 148/091"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1302, "fields": {"code": 1015, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 140/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1303, "fields": {"code": 1015, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 145/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1304, "fields": {"code": 1015, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 134/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1305, "fields": {"code": 1015, "state_id": 218, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 139/065"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1306, "fields": {"code": 1015, "state_id": 228, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 125/035"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1307, "fields": {"code": 1015, "state_id": 238, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 142/065"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1308, "fields": {"code": 1015, "state_id": 248, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 139/065"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1309, "fields": {"code": 1015, "state_id": 258, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 152/089"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1310, "fields": {"code": 1015, "state_id": 268, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 142/065"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1311, "fields": {"code": 1015, "state_id": 278, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 151/083"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1312, "fields": {"code": 1015, "state_id": 288, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 123/040"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1313, "fields": {"code": 1015, "state_id": 298, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 140/070"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1314, "fields": {"code": 1015, "state_id": 308, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 126/040"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1315, "fields": {"code": 1015, "state_id": 318, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 143/070"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1316, "fields": {"code": 1015, "state_id": 328, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 140/070"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1317, "fields": {"code": 1015, "state_id": 338, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 153/094"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1318, "fields": {"code": 1015, "state_id": 348, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 143/070"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1319, "fields": {"code": 1015, "state_id": 358, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 152/088"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1320, "fields": {"code": 1015, "state_id": 758, "transition": 1252, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 137/065"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1321, "fields": {"code": 1015, "state_id": 217, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/058"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1322, "fields": {"code": 1015, "state_id": 227, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 117/028"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1323, "fields": {"code": 1015, "state_id": 237, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 134/058"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1324, "fields": {"code": 1015, "state_id": 247, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 131/058"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1325, "fields": {"code": 1015, "state_id": 257, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 146/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1326, "fields": {"code": 1015, "state_id": 267, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 134/058"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1327, "fields": {"code": 1015, "state_id": 277, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 147/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1328, "fields": {"code": 1015, "state_id": 287, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 115/033"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1329, "fields": {"code": 1015, "state_id": 297, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1330, "fields": {"code": 1015, "state_id": 307, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 118/033"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1331, "fields": {"code": 1015, "state_id": 317, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 135/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1332, "fields": {"code": 1015, "state_id": 327, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1333, "fields": {"code": 1015, "state_id": 337, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 147/090"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1334, "fields": {"code": 1015, "state_id": 347, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 135/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1335, "fields": {"code": 1015, "state_id": 357, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 148/087"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1336, "fields": {"code": 1015, "state_id": 757, "transition": 1269, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 129/058"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1337, "fields": {"code": 1015, "state_id": 551, "transition": 1314, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1338, "fields": {"code": 1015, "state_id": 552, "transition": 1313, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1339, "fields": {"code": 1015, "state_id": 553, "transition": 1312, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1340, "fields": {"code": 1015, "state_id": 554, "transition": 1311, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 127/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1341, "fields": {"code": 1015, "state_id": 555, "transition": 1310, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 122/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1342, "fields": {"code": 1015, "state_id": 556, "transition": 1309, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 128/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1343, "fields": {"code": 1015, "state_id": 557, "transition": 1286, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 141/086"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 121, "Rö-Thorax": 341, "Ultraschall": 615, "Rö-Extremitäten": 573}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1344, "fields": {"code": 1016, "state_id": 101, "transition": 1335, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 147/087"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1345, "fields": {"code": 1016, "state_id": 102, "transition": 1334, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 153/091"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1346, "fields": {"code": 1016, "state_id": 103, "transition": 1333, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 148/088"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1347, "fields": {"code": 1016, "state_id": 104, "transition": 1332, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 154/092"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1348, "fields": {"code": 1016, "state_id": 105, "transition": 1331, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 149/089"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1349, "fields": {"code": 1016, "state_id": 106, "transition": 1330, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 155/093"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1350, "fields": {"code": 1016, "state_id": 107, "transition": 1325, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 171/102"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1351, "fields": {"code": 1016, "state_id": 237, "transition": 1320, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 154/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1352, "fields": {"code": 1016, "state_id": 238, "transition": 1315, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 158/089"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1353, "fields": {"code": 1016, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 151/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1354, "fields": {"code": 1016, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 181/111"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1355, "fields": {"code": 1016, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 152/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1356, "fields": {"code": 1016, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 182/116"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1357, "fields": {"code": 1016, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 157/092"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1358, "fields": {"code": 1016, "state_id": 278, "transition": 1315, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 184/111"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1359, "fields": {"code": 1016, "state_id": 318, "transition": 1315, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 159/094"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1360, "fields": {"code": 1016, "state_id": 358, "transition": 1315, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 185/116"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1361, "fields": {"code": 1016, "state_id": 718, "transition": 1315, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 162/095"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1362, "fields": {"code": 1016, "state_id": 277, "transition": 1320, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 176/104"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1363, "fields": {"code": 1016, "state_id": 317, "transition": 1320, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 155/093"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1364, "fields": {"code": 1016, "state_id": 357, "transition": 1320, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 177/109"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1365, "fields": {"code": 1016, "state_id": 717, "transition": 1320, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 156/091"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1366, "fields": {"code": 1016, "state_id": 551, "transition": 1341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 147/087"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1367, "fields": {"code": 1016, "state_id": 552, "transition": 1340, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 153/091"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1368, "fields": {"code": 1016, "state_id": 553, "transition": 1339, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 148/088"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1369, "fields": {"code": 1016, "state_id": 554, "transition": 1338, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 154/092"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1370, "fields": {"code": 1016, "state_id": 555, "transition": 1337, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 149/089"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1371, "fields": {"code": 1016, "state_id": 556, "transition": 1336, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 155/093"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1372, "fields": {"code": 1016, "state_id": 557, "transition": 1325, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 171/102"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1373, "fields": {"code": 1017, "state_id": 101, "transition": 1446, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1374, "fields": {"code": 1017, "state_id": 102, "transition": 1445, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1375, "fields": {"code": 1017, "state_id": 103, "transition": 1444, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1376, "fields": {"code": 1017, "state_id": 104, "transition": 1427, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 100 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 119 /min\nperipher kräftig tastbar\nRR: 150/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1377, "fields": {"code": 1017, "state_id": 204, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 118/030"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1378, "fields": {"code": 1017, "state_id": 205, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 115/030"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1379, "fields": {"code": 1017, "state_id": 206, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher tastbar\nRR: 123/037"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1380, "fields": {"code": 1017, "state_id": 207, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 102 /min\nperipher tastbar\nRR: 120/037"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1381, "fields": {"code": 1017, "state_id": 208, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 109 /min\nperipher tastbar\nRR: 128/044"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1382, "fields": {"code": 1017, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher tastbar\nRR: 125/044"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1383, "fields": {"code": 1017, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 142/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1384, "fields": {"code": 1017, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 109 /min\nperipher tastbar\nRR: 128/044"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1385, "fields": {"code": 1017, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 145/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1386, "fields": {"code": 1017, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 142/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1387, "fields": {"code": 1017, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 147/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1388, "fields": {"code": 1017, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 145/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1389, "fields": {"code": 1017, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 138/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über unerträgliche Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1390, "fields": {"code": 1017, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 126/049"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1391, "fields": {"code": 1017, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 143/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1392, "fields": {"code": 1017, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 129/049"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1393, "fields": {"code": 1017, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 116 /min\nperipher kräftig tastbar\nRR: 146/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1394, "fields": {"code": 1017, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 143/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1395, "fields": {"code": 1017, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 148/091"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1396, "fields": {"code": 1017, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 116 /min\nperipher kräftig tastbar\nRR: 146/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1397, "fields": {"code": 1017, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 93 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 139/073"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1398, "fields": {"code": 1017, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 140/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1399, "fields": {"code": 1017, "state_id": 218, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 145/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1400, "fields": {"code": 1017, "state_id": 228, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 113 /min\nperipher kräftig tastbar\nRR: 131/044"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1401, "fields": {"code": 1017, "state_id": 238, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 118 /min\nperipher kräftig tastbar\nRR: 148/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1402, "fields": {"code": 1017, "state_id": 248, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 145/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1403, "fields": {"code": 1017, "state_id": 258, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 152/089"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1404, "fields": {"code": 1017, "state_id": 268, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 118 /min\nperipher kräftig tastbar\nRR: 148/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1405, "fields": {"code": 1017, "state_id": 278, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 145/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1406, "fields": {"code": 1017, "state_id": 288, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 129/049"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1407, "fields": {"code": 1017, "state_id": 298, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 116 /min\nperipher kräftig tastbar\nRR: 146/079"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1408, "fields": {"code": 1017, "state_id": 308, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 132/049"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1409, "fields": {"code": 1017, "state_id": 318, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 120 /min\nperipher kräftig tastbar\nRR: 149/079"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1410, "fields": {"code": 1017, "state_id": 328, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 146/079"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1411, "fields": {"code": 1017, "state_id": 338, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 153/094"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1412, "fields": {"code": 1017, "state_id": 348, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 120 /min\nperipher kräftig tastbar\nRR: 149/079"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1413, "fields": {"code": 1017, "state_id": 358, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 95 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 146/079"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1414, "fields": {"code": 1017, "state_id": 758, "transition": 1342, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 118 /min\nperipher kräftig tastbar\nRR: 143/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1415, "fields": {"code": 1017, "state_id": 217, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 137/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1416, "fields": {"code": 1017, "state_id": 227, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 123/037"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1417, "fields": {"code": 1017, "state_id": 237, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 140/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1418, "fields": {"code": 1017, "state_id": 247, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 137/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1419, "fields": {"code": 1017, "state_id": 257, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 146/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1420, "fields": {"code": 1017, "state_id": 267, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 140/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1421, "fields": {"code": 1017, "state_id": 277, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 141/073"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1422, "fields": {"code": 1017, "state_id": 287, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 121/042"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1423, "fields": {"code": 1017, "state_id": 297, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 138/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1424, "fields": {"code": 1017, "state_id": 307, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 124/042"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1425, "fields": {"code": 1017, "state_id": 317, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 141/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1426, "fields": {"code": 1017, "state_id": 327, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 138/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1427, "fields": {"code": 1017, "state_id": 337, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 147/090"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1428, "fields": {"code": 1017, "state_id": 347, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 141/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1429, "fields": {"code": 1017, "state_id": 357, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 95 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 142/078"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1430, "fields": {"code": 1017, "state_id": 757, "transition": 1359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 135/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1431, "fields": {"code": 1017, "state_id": 216, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 140/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1432, "fields": {"code": 1017, "state_id": 226, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 126/037"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1433, "fields": {"code": 1017, "state_id": 236, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 143/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1434, "fields": {"code": 1017, "state_id": 246, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 140/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1435, "fields": {"code": 1017, "state_id": 256, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 151/088"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1436, "fields": {"code": 1017, "state_id": 266, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 143/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1437, "fields": {"code": 1017, "state_id": 276, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 148/079"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1438, "fields": {"code": 1017, "state_id": 286, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 124/042"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1439, "fields": {"code": 1017, "state_id": 296, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 141/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1440, "fields": {"code": 1017, "state_id": 306, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 111 /min\nperipher tastbar\nRR: 127/042"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1441, "fields": {"code": 1017, "state_id": 316, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 116 /min\nperipher kräftig tastbar\nRR: 144/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1442, "fields": {"code": 1017, "state_id": 326, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 141/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1443, "fields": {"code": 1017, "state_id": 336, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 152/093"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1444, "fields": {"code": 1017, "state_id": 346, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 116 /min\nperipher kräftig tastbar\nRR: 144/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1445, "fields": {"code": 1017, "state_id": 356, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 149/084"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1446, "fields": {"code": 1017, "state_id": 756, "transition": 1376, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 114 /min\nperipher kräftig tastbar\nRR: 138/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1447, "fields": {"code": 1017, "state_id": 215, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 132/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1448, "fields": {"code": 1017, "state_id": 225, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 118/030"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1449, "fields": {"code": 1017, "state_id": 235, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 135/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1450, "fields": {"code": 1017, "state_id": 245, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 132/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1451, "fields": {"code": 1017, "state_id": 255, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 145/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1452, "fields": {"code": 1017, "state_id": 265, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 135/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1453, "fields": {"code": 1017, "state_id": 275, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 144/078"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1454, "fields": {"code": 1017, "state_id": 285, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 116/035"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1455, "fields": {"code": 1017, "state_id": 295, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 133/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1456, "fields": {"code": 1017, "state_id": 305, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 119/035"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1457, "fields": {"code": 1017, "state_id": 315, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 136/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1458, "fields": {"code": 1017, "state_id": 325, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 133/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1459, "fields": {"code": 1017, "state_id": 335, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 146/089"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1460, "fields": {"code": 1017, "state_id": 345, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 136/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1461, "fields": {"code": 1017, "state_id": 355, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 109 /min\nperipher kräftig tastbar\nRR: 145/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1462, "fields": {"code": 1017, "state_id": 755, "transition": 1393, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 130/060"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1463, "fields": {"code": 1017, "state_id": 214, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 135/060"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1464, "fields": {"code": 1017, "state_id": 224, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 106 /min\nperipher tastbar\nRR: 121/030"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1465, "fields": {"code": 1017, "state_id": 234, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 138/060"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1466, "fields": {"code": 1017, "state_id": 244, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 135/060"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1467, "fields": {"code": 1017, "state_id": 254, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 110 /min\nperipher kräftig tastbar\nRR: 150/087"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1468, "fields": {"code": 1017, "state_id": 264, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 138/060"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1469, "fields": {"code": 1017, "state_id": 274, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 116 /min\nperipher kräftig tastbar\nRR: 151/084"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1470, "fields": {"code": 1017, "state_id": 284, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 102 /min\nperipher tastbar\nRR: 119/035"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1471, "fields": {"code": 1017, "state_id": 294, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 136/065"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1472, "fields": {"code": 1017, "state_id": 304, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 122/035"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1473, "fields": {"code": 1017, "state_id": 314, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 139/065"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1474, "fields": {"code": 1017, "state_id": 324, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 136/065"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1475, "fields": {"code": 1017, "state_id": 334, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 151/092"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1476, "fields": {"code": 1017, "state_id": 344, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 139/065"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1477, "fields": {"code": 1017, "state_id": 354, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 117 /min\nperipher kräftig tastbar\nRR: 152/089"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "Pat. klagt über sehr starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1478, "fields": {"code": 1017, "state_id": 754, "transition": 1410, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 133/060"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1479, "fields": {"code": 1017, "state_id": 551, "transition": 1449, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1480, "fields": {"code": 1017, "state_id": 552, "transition": 1448, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1481, "fields": {"code": 1017, "state_id": 553, "transition": 1447, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1482, "fields": {"code": 1017, "state_id": 554, "transition": 1427, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 119 /min\nperipher kräftig tastbar\nRR: 145/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 205, "Rö-Thorax": 307, "Ultraschall": 615, "Rö-Extremitäten": 512}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1483, "fields": {"code": 1018, "state_id": 101, "transition": 1506, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 155/098"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1484, "fields": {"code": 1018, "state_id": 102, "transition": 1505, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 161/102"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1485, "fields": {"code": 1018, "state_id": 103, "transition": 1504, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 156/099"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1486, "fields": {"code": 1018, "state_id": 104, "transition": 1503, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 162/103"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1487, "fields": {"code": 1018, "state_id": 105, "transition": 1502, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 157/100"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1488, "fields": {"code": 1018, "state_id": 106, "transition": 1501, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 163/104"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1489, "fields": {"code": 1018, "state_id": 107, "transition": 1484, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 176/121"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1490, "fields": {"code": 1018, "state_id": 207, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 144/063"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1491, "fields": {"code": 1018, "state_id": 208, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 152/070"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1492, "fields": {"code": 1018, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 149/070"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1493, "fields": {"code": 1018, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 166/100"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1494, "fields": {"code": 1018, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 152/070"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1495, "fields": {"code": 1018, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 169/100"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1496, "fields": {"code": 1018, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 166/100"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1497, "fields": {"code": 1018, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 177/121"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1498, "fields": {"code": 1018, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 169/100"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1499, "fields": {"code": 1018, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 174/112"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1500, "fields": {"code": 1018, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 150/075"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1501, "fields": {"code": 1018, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 167/105"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1502, "fields": {"code": 1018, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 153/075"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1503, "fields": {"code": 1018, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 170/105"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1504, "fields": {"code": 1018, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 167/105"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1505, "fields": {"code": 1018, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 178/126"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1506, "fields": {"code": 1018, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 170/105"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1507, "fields": {"code": 1018, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 93 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 175/117"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über stärkste Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1508, "fields": {"code": 1018, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 169/100"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1509, "fields": {"code": 1018, "state_id": 218, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 169/100"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1510, "fields": {"code": 1018, "state_id": 228, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 155/070"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1511, "fields": {"code": 1018, "state_id": 238, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 172/100"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1512, "fields": {"code": 1018, "state_id": 248, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 169/100"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1513, "fields": {"code": 1018, "state_id": 258, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 182/124"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1514, "fields": {"code": 1018, "state_id": 268, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 172/100"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1515, "fields": {"code": 1018, "state_id": 278, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 181/118"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über sehr starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1516, "fields": {"code": 1018, "state_id": 288, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 153/075"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1517, "fields": {"code": 1018, "state_id": 298, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 170/105"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1518, "fields": {"code": 1018, "state_id": 308, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 156/075"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1519, "fields": {"code": 1018, "state_id": 318, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 173/105"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1520, "fields": {"code": 1018, "state_id": 328, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 170/105"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1521, "fields": {"code": 1018, "state_id": 338, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 183/129"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1522, "fields": {"code": 1018, "state_id": 348, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 173/105"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1523, "fields": {"code": 1018, "state_id": 358, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 95 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 182/123"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über sehr starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1524, "fields": {"code": 1018, "state_id": 758, "transition": 1450, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 172/100"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 701, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1525, "fields": {"code": 1018, "state_id": 217, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 161/093"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1526, "fields": {"code": 1018, "state_id": 227, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 147/063"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1527, "fields": {"code": 1018, "state_id": 237, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 164/093"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1528, "fields": {"code": 1018, "state_id": 247, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 161/093"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1529, "fields": {"code": 1018, "state_id": 257, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 176/120"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1530, "fields": {"code": 1018, "state_id": 267, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 164/093"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1531, "fields": {"code": 1018, "state_id": 277, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 177/117"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1532, "fields": {"code": 1018, "state_id": 287, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 145/068"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1533, "fields": {"code": 1018, "state_id": 297, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 162/098"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1534, "fields": {"code": 1018, "state_id": 307, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 148/068"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1535, "fields": {"code": 1018, "state_id": 317, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 165/098"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1536, "fields": {"code": 1018, "state_id": 327, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 162/098"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1537, "fields": {"code": 1018, "state_id": 337, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 177/125"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1538, "fields": {"code": 1018, "state_id": 347, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 165/098"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1539, "fields": {"code": 1018, "state_id": 357, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 95 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 178/122"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1540, "fields": {"code": 1018, "state_id": 757, "transition": 1467, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 164/093"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1541, "fields": {"code": 1018, "state_id": 551, "transition": 1512, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 155/098"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 701, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1542, "fields": {"code": 1018, "state_id": 552, "transition": 1511, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 161/102"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1543, "fields": {"code": 1018, "state_id": 553, "transition": 1510, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 156/099"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 701, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1544, "fields": {"code": 1018, "state_id": 554, "transition": 1509, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 162/103"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 701, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1545, "fields": {"code": 1018, "state_id": 555, "transition": 1508, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 157/100"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 701, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1546, "fields": {"code": 1018, "state_id": 556, "transition": 1507, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 163/104"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 701, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1547, "fields": {"code": 1018, "state_id": 557, "transition": 1484, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 176/121"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 701, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 228, "Rö-Thorax": 339, "Ultraschall": 615, "Rö-Extremitäten": 600}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1548, "fields": {"code": 1019, "state_id": 101, "transition": 1633, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1549, "fields": {"code": 1019, "state_id": 102, "transition": 1632, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1550, "fields": {"code": 1019, "state_id": 103, "transition": 1615, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 95 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 144/084"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1551, "fields": {"code": 1019, "state_id": 203, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 112/026"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1552, "fields": {"code": 1019, "state_id": 204, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 120/033"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1553, "fields": {"code": 1019, "state_id": 205, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 117/033"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1554, "fields": {"code": 1019, "state_id": 206, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 125/040"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1555, "fields": {"code": 1019, "state_id": 207, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 93 /min\nperipher tastbar\nRR: 122/040"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1556, "fields": {"code": 1019, "state_id": 208, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 130/047"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1557, "fields": {"code": 1019, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 127/047"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1558, "fields": {"code": 1019, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 144/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1559, "fields": {"code": 1019, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 102 /min\nperipher kräftig tastbar\nRR: 130/047"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1560, "fields": {"code": 1019, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 147/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1561, "fields": {"code": 1019, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 144/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1562, "fields": {"code": 1019, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 147/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1563, "fields": {"code": 1019, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 147/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1564, "fields": {"code": 1019, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 136/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1565, "fields": {"code": 1019, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 128/052"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1566, "fields": {"code": 1019, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 145/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1567, "fields": {"code": 1019, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 131/052"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1568, "fields": {"code": 1019, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 148/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1569, "fields": {"code": 1019, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 145/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1570, "fields": {"code": 1019, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 148/091"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1571, "fields": {"code": 1019, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 148/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1572, "fields": {"code": 1019, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 33 /min\nSpO2: 88 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 137/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1573, "fields": {"code": 1019, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 142/077"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1574, "fields": {"code": 1019, "state_id": 218, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 106 /min\nperipher kräftig tastbar\nRR: 147/077"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1575, "fields": {"code": 1019, "state_id": 228, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 133/047"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1576, "fields": {"code": 1019, "state_id": 238, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 150/077"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1577, "fields": {"code": 1019, "state_id": 248, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 106 /min\nperipher kräftig tastbar\nRR: 147/077"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1578, "fields": {"code": 1019, "state_id": 258, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 152/089"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1579, "fields": {"code": 1019, "state_id": 268, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 150/077"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1580, "fields": {"code": 1019, "state_id": 278, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 33 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 143/071"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1581, "fields": {"code": 1019, "state_id": 288, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 131/052"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1582, "fields": {"code": 1019, "state_id": 298, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 148/082"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1583, "fields": {"code": 1019, "state_id": 308, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 106 /min\nperipher kräftig tastbar\nRR: 134/052"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1584, "fields": {"code": 1019, "state_id": 318, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 151/082"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1585, "fields": {"code": 1019, "state_id": 328, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 148/082"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1586, "fields": {"code": 1019, "state_id": 338, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 153/094"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1587, "fields": {"code": 1019, "state_id": 348, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 112 /min\nperipher kräftig tastbar\nRR: 151/082"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1588, "fields": {"code": 1019, "state_id": 358, "transition": 1513, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 34 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 144/076"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1589, "fields": {"code": 1019, "state_id": 758, "transition": 1513, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 111 /min\nperipher kräftig tastbar\nRR: 145/077"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 748, "ZVD": 832, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1590, "fields": {"code": 1019, "state_id": 217, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 99 /min\nperipher kräftig tastbar\nRR: 139/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1591, "fields": {"code": 1019, "state_id": 227, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 125/040"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1592, "fields": {"code": 1019, "state_id": 237, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 142/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1593, "fields": {"code": 1019, "state_id": 247, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 99 /min\nperipher kräftig tastbar\nRR: 139/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1594, "fields": {"code": 1019, "state_id": 257, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 146/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1595, "fields": {"code": 1019, "state_id": 267, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 142/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1596, "fields": {"code": 1019, "state_id": 277, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 139/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1597, "fields": {"code": 1019, "state_id": 287, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 93 /min\nperipher tastbar\nRR: 123/045"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1598, "fields": {"code": 1019, "state_id": 297, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 140/075"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1599, "fields": {"code": 1019, "state_id": 307, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 126/045"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1600, "fields": {"code": 1019, "state_id": 317, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 143/075"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1601, "fields": {"code": 1019, "state_id": 327, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 140/075"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1602, "fields": {"code": 1019, "state_id": 337, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 147/090"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1603, "fields": {"code": 1019, "state_id": 347, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 105 /min\nperipher kräftig tastbar\nRR: 143/075"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1604, "fields": {"code": 1019, "state_id": 357, "transition": 1530, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 90 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 91 /min\nperipher kräftig tastbar\nRR: 140/075"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über unerträgliche Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1605, "fields": {"code": 1019, "state_id": 757, "transition": 1530, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 137/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1606, "fields": {"code": 1019, "state_id": 216, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 102 /min\nperipher kräftig tastbar\nRR: 142/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1607, "fields": {"code": 1019, "state_id": 226, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 128/040"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1608, "fields": {"code": 1019, "state_id": 236, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 145/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1609, "fields": {"code": 1019, "state_id": 246, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 102 /min\nperipher kräftig tastbar\nRR: 142/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1610, "fields": {"code": 1019, "state_id": 256, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 151/088"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1611, "fields": {"code": 1019, "state_id": 266, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 145/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1612, "fields": {"code": 1019, "state_id": 276, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 33 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 97 /min\nperipher kräftig tastbar\nRR: 146/076"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1613, "fields": {"code": 1019, "state_id": 286, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 126/045"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1614, "fields": {"code": 1019, "state_id": 296, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 143/075"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1615, "fields": {"code": 1019, "state_id": 306, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 102 /min\nperipher tastbar\nRR: 129/045"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1616, "fields": {"code": 1019, "state_id": 316, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 146/075"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1617, "fields": {"code": 1019, "state_id": 326, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 143/075"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1618, "fields": {"code": 1019, "state_id": 336, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 152/093"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1619, "fields": {"code": 1019, "state_id": 346, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 108 /min\nperipher kräftig tastbar\nRR: 146/075"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1620, "fields": {"code": 1019, "state_id": 356, "transition": 1547, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 34 /min\nSpO2: 92 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 147/081"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1621, "fields": {"code": 1019, "state_id": 756, "transition": 1547, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher kräftig tastbar\nRR: 140/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1622, "fields": {"code": 1019, "state_id": 215, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 134/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1623, "fields": {"code": 1019, "state_id": 225, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 120/033"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1624, "fields": {"code": 1019, "state_id": 235, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 137/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1625, "fields": {"code": 1019, "state_id": 245, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 134/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1626, "fields": {"code": 1019, "state_id": 255, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 145/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1627, "fields": {"code": 1019, "state_id": 265, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 137/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1628, "fields": {"code": 1019, "state_id": 275, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 94 /min\nperipher kräftig tastbar\nRR: 142/075"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1629, "fields": {"code": 1019, "state_id": 285, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 118/038"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1630, "fields": {"code": 1019, "state_id": 295, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 135/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1631, "fields": {"code": 1019, "state_id": 305, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 121/038"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1632, "fields": {"code": 1019, "state_id": 315, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 138/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1633, "fields": {"code": 1019, "state_id": 325, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 135/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1634, "fields": {"code": 1019, "state_id": 335, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 146/089"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1635, "fields": {"code": 1019, "state_id": 345, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 138/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1636, "fields": {"code": 1019, "state_id": 355, "transition": 1564, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 92 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 143/080"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über leichte Atemnot\nPat. klagt über stärkste Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1637, "fields": {"code": 1019, "state_id": 755, "transition": 1564, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 132/063"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1638, "fields": {"code": 1019, "state_id": 214, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 137/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1639, "fields": {"code": 1019, "state_id": 224, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 97 /min\nperipher tastbar\nRR: 123/033"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1640, "fields": {"code": 1019, "state_id": 234, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 140/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1641, "fields": {"code": 1019, "state_id": 244, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 137/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1642, "fields": {"code": 1019, "state_id": 254, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 150/087"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1643, "fields": {"code": 1019, "state_id": 264, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 140/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1644, "fields": {"code": 1019, "state_id": 274, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 149/081"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über sehr starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1645, "fields": {"code": 1019, "state_id": 284, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 121/038"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1646, "fields": {"code": 1019, "state_id": 294, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 99 /min\nperipher kräftig tastbar\nRR: 138/068"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1647, "fields": {"code": 1019, "state_id": 304, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 124/038"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1648, "fields": {"code": 1019, "state_id": 314, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 141/068"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1649, "fields": {"code": 1019, "state_id": 324, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 99 /min\nperipher kräftig tastbar\nRR: 138/068"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1650, "fields": {"code": 1019, "state_id": 334, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 151/092"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1651, "fields": {"code": 1019, "state_id": 344, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 104 /min\nperipher kräftig tastbar\nRR: 141/068"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1652, "fields": {"code": 1019, "state_id": 354, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 33 /min\nSpO2: 94 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 102 /min\nperipher kräftig tastbar\nRR: 150/086"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über sehr starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1653, "fields": {"code": 1019, "state_id": 754, "transition": 1581, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 135/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 748, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1654, "fields": {"code": 1019, "state_id": 213, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 129/056"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1655, "fields": {"code": 1019, "state_id": 223, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher tastbar\nRR: 115/026"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1656, "fields": {"code": 1019, "state_id": 233, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 132/056"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1657, "fields": {"code": 1019, "state_id": 243, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 129/056"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1658, "fields": {"code": 1019, "state_id": 253, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 144/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1659, "fields": {"code": 1019, "state_id": 263, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 132/056"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1660, "fields": {"code": 1019, "state_id": 273, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 145/080"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1661, "fields": {"code": 1019, "state_id": 283, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 113/031"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1662, "fields": {"code": 1019, "state_id": 293, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 130/061"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1663, "fields": {"code": 1019, "state_id": 303, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 116/031"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1664, "fields": {"code": 1019, "state_id": 313, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 97 /min\nperipher kräftig tastbar\nRR: 133/061"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1665, "fields": {"code": 1019, "state_id": 323, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 130/061"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1666, "fields": {"code": 1019, "state_id": 333, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 96 /min\nperipher kräftig tastbar\nRR: 145/088"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1667, "fields": {"code": 1019, "state_id": 343, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 97 /min\nperipher kräftig tastbar\nRR: 133/061"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1668, "fields": {"code": 1019, "state_id": 353, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 94 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 99 /min\nperipher kräftig tastbar\nRR: 146/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "Pat. klagt über sehr starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1669, "fields": {"code": 1019, "state_id": 753, "transition": 1598, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 127/056"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1670, "fields": {"code": 1019, "state_id": 551, "transition": 1635, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1671, "fields": {"code": 1019, "state_id": 552, "transition": 1634, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 748, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1672, "fields": {"code": 1019, "state_id": 553, "transition": 1615, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher kräftig tastbar\nRR: 139/084"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 106, "Rö-Thorax": 432, "Ultraschall": 615, "Rö-Extremitäten": 559}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1673, "fields": {"code": 1020, "state_id": 101, "transition": 1679, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 728, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1674, "fields": {"code": 1020, "state_id": 102, "transition": 1678, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1675, "fields": {"code": 1020, "state_id": 103, "transition": 1677, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 728, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1676, "fields": {"code": 1020, "state_id": 104, "transition": 1676, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 132/068"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1677, "fields": {"code": 1020, "state_id": 105, "transition": 1668, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 75 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 147/065"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 728, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1678, "fields": {"code": 1020, "state_id": 255, "transition": 1660, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 133/072"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1679, "fields": {"code": 1020, "state_id": 256, "transition": 1652, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 141/079"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1680, "fields": {"code": 1020, "state_id": 257, "transition": 1644, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 138/079"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1681, "fields": {"code": 1020, "state_id": 258, "transition": 1636, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 146/086"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1682, "fields": {"code": 1020, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 143/086"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 824, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1683, "fields": {"code": 1020, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\nsichtbare ,", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 75 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 138/056"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 836, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1684, "fields": {"code": 1020, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 143/086"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1685, "fields": {"code": 1020, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 82 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 148/071"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1686, "fields": {"code": 1020, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 148/086"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 824, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1687, "fields": {"code": 1020, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nschwere ,", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 34 /min\nSpO2: 70 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 143/056"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 836, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 615, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über schwere Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1688, "fields": {"code": 1020, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 138/086"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 807, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1689, "fields": {"code": 1020, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nsichtbare ,", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 80 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 143/071"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1690, "fields": {"code": 1020, "state_id": 278, "transition": 1636, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 77 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 145/062"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 728, "ZVD": 824, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1691, "fields": {"code": 1020, "state_id": 298, "transition": 1636, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 146/086"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 728, "ZVD": 807, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1692, "fields": {"code": 1020, "state_id": 318, "transition": 1636, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 83 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 153/074"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 728, "ZVD": 807, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1693, "fields": {"code": 1020, "state_id": 338, "transition": 1636, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 91 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 151/086"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1694, "fields": {"code": 1020, "state_id": 358, "transition": 1636, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 35 /min\nSpO2: 72 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 150/062"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 728, "ZVD": 824, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1695, "fields": {"code": 1020, "state_id": 738, "transition": 1636, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 141/086"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 728, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1696, "fields": {"code": 1020, "state_id": 758, "transition": 1636, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 81 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 148/074"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 728, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1697, "fields": {"code": 1020, "state_id": 277, "transition": 1644, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 77 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 141/061"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 833, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1698, "fields": {"code": 1020, "state_id": 297, "transition": 1644, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 138/079"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1699, "fields": {"code": 1020, "state_id": 317, "transition": 1644, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 82 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 147/070"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1700, "fields": {"code": 1020, "state_id": 337, "transition": 1644, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 89 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 143/079"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1701, "fields": {"code": 1020, "state_id": 357, "transition": 1644, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 33 /min\nSpO2: 72 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 146/061"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 833, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1702, "fields": {"code": 1020, "state_id": 737, "transition": 1644, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 133/079"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1703, "fields": {"code": 1020, "state_id": 757, "transition": 1644, "vital_signs": {"Haut": "trocken\nsichtbare Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 80 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 142/070"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1704, "fields": {"code": 1020, "state_id": 276, "transition": 1652, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 79 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 148/067"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 728, "ZVD": 824, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1705, "fields": {"code": 1020, "state_id": 296, "transition": 1652, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 141/079"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 728, "ZVD": 807, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1706, "fields": {"code": 1020, "state_id": 316, "transition": 1652, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 83 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 152/073"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 728, "ZVD": 807, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1707, "fields": {"code": 1020, "state_id": 336, "transition": 1652, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 89 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 146/079"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1708, "fields": {"code": 1020, "state_id": 356, "transition": 1652, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 34 /min\nSpO2: 74 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 153/067"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 728, "ZVD": 824, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1709, "fields": {"code": 1020, "state_id": 736, "transition": 1652, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 136/079"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 728, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1710, "fields": {"code": 1020, "state_id": 756, "transition": 1652, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 81 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 147/073"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 728, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1711, "fields": {"code": 1020, "state_id": 275, "transition": 1660, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 79 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 144/066"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 833, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1712, "fields": {"code": 1020, "state_id": 295, "transition": 1660, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 133/072"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1713, "fields": {"code": 1020, "state_id": 315, "transition": 1660, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 82 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 146/069"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1714, "fields": {"code": 1020, "state_id": 335, "transition": 1660, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 87 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 138/072"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1715, "fields": {"code": 1020, "state_id": 355, "transition": 1660, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 32 /min\nSpO2: 74 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 91 /min\nperipher kräftig tastbar\nRR: 149/066"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 833, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1716, "fields": {"code": 1020, "state_id": 735, "transition": 1660, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 92 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher tastbar\nRR: 128/072"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1717, "fields": {"code": 1020, "state_id": 755, "transition": 1660, "vital_signs": {"Haut": "trocken\nsichtbare Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 80 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1718, "fields": {"code": 1020, "state_id": 551, "transition": 1683, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1719, "fields": {"code": 1020, "state_id": 552, "transition": 1682, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1720, "fields": {"code": 1020, "state_id": 553, "transition": 1681, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 93 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1721, "fields": {"code": 1020, "state_id": 554, "transition": 1680, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 127/068"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 728, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1722, "fields": {"code": 1020, "state_id": 555, "transition": 1668, "vital_signs": {"Haut": "trocken\nsichtbare Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 75 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 93 /min\nperipher kräftig tastbar\nRR: 142/065"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 728, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 159, "Rö-Thorax": 336, "Ultraschall": 615, "Rö-Extremitäten": 566}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1723, "fields": {"code": 1021, "state_id": 101, "transition": 1940, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 143/076"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1724, "fields": {"code": 1021, "state_id": 102, "transition": 1908, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 118 /min\nnur zentral noch tastbar\nRR: 60/029"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1725, "fields": {"code": 1021, "state_id": 352, "transition": 1876, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 119 /min\nnur zentral noch tastbar\nRR: 50/029"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1726, "fields": {"code": 1021, "state_id": 353, "transition": 1844, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 41/023"}, "examination_codes": {"BZ": 954, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1727, "fields": {"code": 1021, "state_id": 354, "transition": 1812, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 127 /min\nzentral nicht tastbar\nRR: 37/022"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1728, "fields": {"code": 1021, "state_id": 355, "transition": 1780, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 127 /min\nzentral nicht tastbar\nRR: 28/016"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1729, "fields": {"code": 1021, "state_id": 356, "transition": 1748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 135 /min\nzentral nicht tastbar\nRR: 24/015"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1730, "fields": {"code": 1021, "state_id": 357, "transition": 1716, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 135 /min\nzentral nicht tastbar\nRR: 15/009"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 714, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1731, "fields": {"code": 1021, "state_id": 358, "transition": 1684, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 143 /min\nzentral nicht tastbar\nRR: 11/008"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 714, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1732, "fields": {"code": 1021, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 143 /min\nzentral nicht tastbar\nRR: 2/002"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 714, "ZVD": 831, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1733, "fields": {"code": 1021, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 135 /min\nzentral nicht tastbar\nRR: 10/003"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 714, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1734, "fields": {"code": 1021, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 127 /min\nzentral nicht tastbar\nRR: 20/003"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1735, "fields": {"code": 1021, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 108/068"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1736, "fields": {"code": 1021, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 20/005"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1737, "fields": {"code": 1021, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 76/038"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1738, "fields": {"code": 1021, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1739, "fields": {"code": 1021, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1740, "fields": {"code": 1021, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1741, "fields": {"code": 1021, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1742, "fields": {"code": 1021, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 136/071"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1743, "fields": {"code": 1021, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 52 /min\nperipher kräftig tastbar\nRR: 144/072"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1744, "fields": {"code": 1021, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 104/041"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1745, "fields": {"code": 1021, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 49 /min\nperipher kräftig tastbar\nRR: 144/074"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1746, "fields": {"code": 1021, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 47 /min\nperipher kräftig tastbar\nRR: 154/074"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1747, "fields": {"code": 1021, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 46 /min\nperipher kräftig tastbar\nRR: 162/075"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1748, "fields": {"code": 1021, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 181 /min\nzentral nicht tastbar\nRR: 2/002"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 714, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1749, "fields": {"code": 1021, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 173 /min\nzentral nicht tastbar\nRR: 10/003"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 714, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1750, "fields": {"code": 1021, "state_id": 749, "transition": 1, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 163 /min\nzentral nicht tastbar\nRR: 20/003"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1751, "fields": {"code": 1021, "state_id": 729, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 108/068"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1752, "fields": {"code": 1021, "state_id": 679, "transition": 1, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 155 /min\nzentral nicht tastbar\nRR: 20/005"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1753, "fields": {"code": 1021, "state_id": 659, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 76/038"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1754, "fields": {"code": 1021, "state_id": 669, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1755, "fields": {"code": 1021, "state_id": 649, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1756, "fields": {"code": 1021, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 86/038"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1757, "fields": {"code": 1021, "state_id": 699, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 94/039"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1758, "fields": {"code": 1021, "state_id": 709, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 136/071"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1759, "fields": {"code": 1021, "state_id": 689, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 144/072"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1760, "fields": {"code": 1021, "state_id": 639, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 104/041"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1761, "fields": {"code": 1021, "state_id": 619, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 65 /min\nperipher kräftig tastbar\nRR: 144/074"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1762, "fields": {"code": 1021, "state_id": 629, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 154/074"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1763, "fields": {"code": 1021, "state_id": 609, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 162/075"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1764, "fields": {"code": 1021, "state_id": 338, "transition": 1684, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 135 /min\nzentral nicht tastbar\nRR: 19/009"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1765, "fields": {"code": 1021, "state_id": 348, "transition": 1684, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 127 /min\nzentral nicht tastbar\nRR: 29/009"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1766, "fields": {"code": 1021, "state_id": 328, "transition": 1684, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher tastbar\nRR: 107/066"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1767, "fields": {"code": 1021, "state_id": 278, "transition": 1684, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 29/011"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1768, "fields": {"code": 1021, "state_id": 258, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 79/040"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1769, "fields": {"code": 1021, "state_id": 268, "transition": 1684, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1770, "fields": {"code": 1021, "state_id": 248, "transition": 1684, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1771, "fields": {"code": 1021, "state_id": 318, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1772, "fields": {"code": 1021, "state_id": 298, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1773, "fields": {"code": 1021, "state_id": 308, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 135/069"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1774, "fields": {"code": 1021, "state_id": 288, "transition": 1684, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 56 /min\nperipher kräftig tastbar\nRR: 143/070"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1775, "fields": {"code": 1021, "state_id": 238, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 107/043"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1776, "fields": {"code": 1021, "state_id": 218, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 143/072"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1777, "fields": {"code": 1021, "state_id": 228, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 49 /min\nperipher kräftig tastbar\nRR: 153/072"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1778, "fields": {"code": 1021, "state_id": 208, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 48 /min\nperipher kräftig tastbar\nRR: 161/073"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1779, "fields": {"code": 1021, "state_id": 758, "transition": 1684, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 182 /min\nzentral nicht tastbar\nRR: 11/008"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 714, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1780, "fields": {"code": 1021, "state_id": 738, "transition": 1684, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 173 /min\nzentral nicht tastbar\nRR: 19/009"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1781, "fields": {"code": 1021, "state_id": 748, "transition": 1684, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 163 /min\nzentral nicht tastbar\nRR: 29/009"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1782, "fields": {"code": 1021, "state_id": 728, "transition": 1684, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 107/066"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1783, "fields": {"code": 1021, "state_id": 678, "transition": 1684, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 155 /min\nzentral nicht tastbar\nRR: 29/011"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1784, "fields": {"code": 1021, "state_id": 658, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 79/040"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1785, "fields": {"code": 1021, "state_id": 668, "transition": 1684, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1786, "fields": {"code": 1021, "state_id": 648, "transition": 1684, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1787, "fields": {"code": 1021, "state_id": 718, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 89/040"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1788, "fields": {"code": 1021, "state_id": 698, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 97/041"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1789, "fields": {"code": 1021, "state_id": 708, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 135/069"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1790, "fields": {"code": 1021, "state_id": 688, "transition": 1684, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 143/070"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1791, "fields": {"code": 1021, "state_id": 638, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 107/043"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1792, "fields": {"code": 1021, "state_id": 618, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 143/072"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1793, "fields": {"code": 1021, "state_id": 628, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 65 /min\nperipher kräftig tastbar\nRR: 153/072"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1794, "fields": {"code": 1021, "state_id": 608, "transition": 1684, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 161/073"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1795, "fields": {"code": 1021, "state_id": 337, "transition": 1716, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 127 /min\nzentral nicht tastbar\nRR: 23/010"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1796, "fields": {"code": 1021, "state_id": 347, "transition": 1716, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 33/010"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1797, "fields": {"code": 1021, "state_id": 327, "transition": 1716, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher tastbar\nRR: 101/059"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1798, "fields": {"code": 1021, "state_id": 277, "transition": 1716, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 113 /min\nzentral nicht tastbar\nRR: 33/012"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1799, "fields": {"code": 1021, "state_id": 257, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 77/037"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1800, "fields": {"code": 1021, "state_id": 267, "transition": 1716, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 87/037"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1801, "fields": {"code": 1021, "state_id": 247, "transition": 1716, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 95/038"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1802, "fields": {"code": 1021, "state_id": 317, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 87/037"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1803, "fields": {"code": 1021, "state_id": 297, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 95/038"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1804, "fields": {"code": 1021, "state_id": 307, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher tastbar\nRR: 129/062"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1805, "fields": {"code": 1021, "state_id": 287, "transition": 1716, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 56 /min\nperipher kräftig tastbar\nRR: 137/063"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1806, "fields": {"code": 1021, "state_id": 237, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 105/040"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1807, "fields": {"code": 1021, "state_id": 217, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 137/065"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1808, "fields": {"code": 1021, "state_id": 227, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 49 /min\nperipher kräftig tastbar\nRR: 147/065"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1809, "fields": {"code": 1021, "state_id": 207, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 48 /min\nperipher kräftig tastbar\nRR: 155/066"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1810, "fields": {"code": 1021, "state_id": 757, "transition": 1716, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 172 /min\nzentral nicht tastbar\nRR: 15/009"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 714, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1811, "fields": {"code": 1021, "state_id": 737, "transition": 1716, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 163 /min\nzentral nicht tastbar\nRR: 23/010"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1812, "fields": {"code": 1021, "state_id": 747, "transition": 1716, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 153 /min\nzentral nicht tastbar\nRR: 33/010"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1813, "fields": {"code": 1021, "state_id": 727, "transition": 1716, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 101/059"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1814, "fields": {"code": 1021, "state_id": 677, "transition": 1716, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 146 /min\nzentral nicht tastbar\nRR: 33/012"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1815, "fields": {"code": 1021, "state_id": 657, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 77/037"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1816, "fields": {"code": 1021, "state_id": 667, "transition": 1716, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 87/037"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1817, "fields": {"code": 1021, "state_id": 647, "transition": 1716, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 95/038"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1818, "fields": {"code": 1021, "state_id": 717, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 87/037"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1819, "fields": {"code": 1021, "state_id": 697, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 95/038"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1820, "fields": {"code": 1021, "state_id": 707, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 129/062"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1821, "fields": {"code": 1021, "state_id": 687, "transition": 1716, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 137/063"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1822, "fields": {"code": 1021, "state_id": 637, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 105/040"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1823, "fields": {"code": 1021, "state_id": 617, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 137/065"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1824, "fields": {"code": 1021, "state_id": 627, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 65 /min\nperipher kräftig tastbar\nRR: 147/065"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1825, "fields": {"code": 1021, "state_id": 607, "transition": 1716, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 155/066"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1826, "fields": {"code": 1021, "state_id": 336, "transition": 1748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 127 /min\nzentral nicht tastbar\nRR: 32/016"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1827, "fields": {"code": 1021, "state_id": 346, "transition": 1748, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 42/016"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1828, "fields": {"code": 1021, "state_id": 326, "transition": 1748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 100/057"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1829, "fields": {"code": 1021, "state_id": 276, "transition": 1748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 114 /min\nzentral nicht tastbar\nRR: 42/018"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1830, "fields": {"code": 1021, "state_id": 256, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 80/039"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1831, "fields": {"code": 1021, "state_id": 266, "transition": 1748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 90/039"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1832, "fields": {"code": 1021, "state_id": 246, "transition": 1748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 98/040"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1833, "fields": {"code": 1021, "state_id": 316, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 90/039"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1834, "fields": {"code": 1021, "state_id": 296, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 98/040"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1835, "fields": {"code": 1021, "state_id": 306, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 63 /min\nperipher tastbar\nRR: 128/060"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1836, "fields": {"code": 1021, "state_id": 286, "transition": 1748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 60 /min\nperipher kräftig tastbar\nRR: 136/061"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1837, "fields": {"code": 1021, "state_id": 236, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 108/042"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1838, "fields": {"code": 1021, "state_id": 216, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 136/063"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1839, "fields": {"code": 1021, "state_id": 226, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 146/063"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1840, "fields": {"code": 1021, "state_id": 206, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 50 /min\nperipher kräftig tastbar\nRR: 154/064"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1841, "fields": {"code": 1021, "state_id": 756, "transition": 1748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 172 /min\nzentral nicht tastbar\nRR: 24/015"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1842, "fields": {"code": 1021, "state_id": 736, "transition": 1748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 163 /min\nzentral nicht tastbar\nRR: 32/016"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1843, "fields": {"code": 1021, "state_id": 746, "transition": 1748, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 153 /min\nzentral nicht tastbar\nRR: 42/016"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1844, "fields": {"code": 1021, "state_id": 726, "transition": 1748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 100/057"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1845, "fields": {"code": 1021, "state_id": 676, "transition": 1748, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 146 /min\nzentral nicht tastbar\nRR: 42/018"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1846, "fields": {"code": 1021, "state_id": 656, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 117 /min\nperipher tastbar\nRR: 80/039"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1847, "fields": {"code": 1021, "state_id": 666, "transition": 1748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 90/039"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1848, "fields": {"code": 1021, "state_id": 646, "transition": 1748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 98/040"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1849, "fields": {"code": 1021, "state_id": 716, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 90/039"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1850, "fields": {"code": 1021, "state_id": 696, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 98/040"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1851, "fields": {"code": 1021, "state_id": 706, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 128/060"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1852, "fields": {"code": 1021, "state_id": 686, "transition": 1748, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 136/061"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1853, "fields": {"code": 1021, "state_id": 636, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 108/042"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1854, "fields": {"code": 1021, "state_id": 616, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 136/063"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1855, "fields": {"code": 1021, "state_id": 626, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 146/063"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1856, "fields": {"code": 1021, "state_id": 606, "transition": 1748, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 65 /min\nperipher kräftig tastbar\nRR: 154/064"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1857, "fields": {"code": 1021, "state_id": 335, "transition": 1780, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 36/017"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1858, "fields": {"code": 1021, "state_id": 345, "transition": 1780, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 113 /min\nzentral nicht tastbar\nRR: 46/017"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1859, "fields": {"code": 1021, "state_id": 325, "transition": 1780, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 94/050"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1860, "fields": {"code": 1021, "state_id": 275, "transition": 1780, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 108 /min\nzentral nicht tastbar\nRR: 46/019"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1861, "fields": {"code": 1021, "state_id": 255, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 78/036"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1862, "fields": {"code": 1021, "state_id": 265, "transition": 1780, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 88/036"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1863, "fields": {"code": 1021, "state_id": 245, "transition": 1780, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 96/037"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1864, "fields": {"code": 1021, "state_id": 315, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 88/036"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1865, "fields": {"code": 1021, "state_id": 295, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 96/037"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1866, "fields": {"code": 1021, "state_id": 305, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 63 /min\nperipher tastbar\nRR: 122/053"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1867, "fields": {"code": 1021, "state_id": 285, "transition": 1780, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 60 /min\nperipher kräftig tastbar\nRR: 130/054"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1868, "fields": {"code": 1021, "state_id": 235, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 106/039"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1869, "fields": {"code": 1021, "state_id": 215, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 130/056"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1870, "fields": {"code": 1021, "state_id": 225, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 53 /min\nperipher kräftig tastbar\nRR: 140/056"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1871, "fields": {"code": 1021, "state_id": 205, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 51 /min\nperipher kräftig tastbar\nRR: 148/057"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1872, "fields": {"code": 1021, "state_id": 755, "transition": 1780, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 162 /min\nzentral nicht tastbar\nRR: 28/016"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1873, "fields": {"code": 1021, "state_id": 735, "transition": 1780, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 153 /min\nzentral nicht tastbar\nRR: 36/017"}, "examination_codes": {"BZ": 920, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1874, "fields": {"code": 1021, "state_id": 745, "transition": 1780, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 145 /min\nzentral nicht tastbar\nRR: 46/017"}, "examination_codes": {"BZ": 920, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1875, "fields": {"code": 1021, "state_id": 725, "transition": 1780, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 94/050"}, "examination_codes": {"BZ": 920, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1876, "fields": {"code": 1021, "state_id": 675, "transition": 1780, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 138 /min\nzentral nicht tastbar\nRR: 46/019"}, "examination_codes": {"BZ": 920, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1877, "fields": {"code": 1021, "state_id": 655, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 114 /min\nperipher tastbar\nRR: 78/036"}, "examination_codes": {"BZ": 920, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1878, "fields": {"code": 1021, "state_id": 665, "transition": 1780, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 88/036"}, "examination_codes": {"BZ": 920, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1879, "fields": {"code": 1021, "state_id": 645, "transition": 1780, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 96/037"}, "examination_codes": {"BZ": 920, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1880, "fields": {"code": 1021, "state_id": 715, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 88/036"}, "examination_codes": {"BZ": 920, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1881, "fields": {"code": 1021, "state_id": 695, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 96/037"}, "examination_codes": {"BZ": 920, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1882, "fields": {"code": 1021, "state_id": 705, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 122/053"}, "examination_codes": {"BZ": 920, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1883, "fields": {"code": 1021, "state_id": 685, "transition": 1780, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 130/054"}, "examination_codes": {"BZ": 920, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1884, "fields": {"code": 1021, "state_id": 635, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 106/039"}, "examination_codes": {"BZ": 920, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1885, "fields": {"code": 1021, "state_id": 615, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 130/056"}, "examination_codes": {"BZ": 920, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1886, "fields": {"code": 1021, "state_id": 625, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 140/056"}, "examination_codes": {"BZ": 920, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1887, "fields": {"code": 1021, "state_id": 605, "transition": 1780, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 65 /min\nperipher kräftig tastbar\nRR: 148/057"}, "examination_codes": {"BZ": 920, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1888, "fields": {"code": 1021, "state_id": 334, "transition": 1812, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 119 /min\nzentral nicht tastbar\nRR: 45/023"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1889, "fields": {"code": 1021, "state_id": 344, "transition": 1812, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 113 /min\nnur zentral noch tastbar\nRR: 55/023"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1890, "fields": {"code": 1021, "state_id": 324, "transition": 1812, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 93/048"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1891, "fields": {"code": 1021, "state_id": 274, "transition": 1812, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 108 /min\nnur zentral noch tastbar\nRR: 55/025"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1892, "fields": {"code": 1021, "state_id": 254, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 81/038"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1893, "fields": {"code": 1021, "state_id": 264, "transition": 1812, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 91/038"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1894, "fields": {"code": 1021, "state_id": 244, "transition": 1812, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 99/039"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1895, "fields": {"code": 1021, "state_id": 314, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 91/038"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1896, "fields": {"code": 1021, "state_id": 294, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 99/039"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1897, "fields": {"code": 1021, "state_id": 304, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 121/051"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1898, "fields": {"code": 1021, "state_id": 284, "transition": 1812, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 129/052"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1899, "fields": {"code": 1021, "state_id": 234, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 109/041"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1900, "fields": {"code": 1021, "state_id": 214, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 129/054"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1901, "fields": {"code": 1021, "state_id": 224, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 139/054"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1902, "fields": {"code": 1021, "state_id": 204, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 147/055"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1903, "fields": {"code": 1021, "state_id": 754, "transition": 1812, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 162 /min\nzentral nicht tastbar\nRR: 37/022"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1904, "fields": {"code": 1021, "state_id": 734, "transition": 1812, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 153 /min\nzentral nicht tastbar\nRR: 45/023"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1905, "fields": {"code": 1021, "state_id": 744, "transition": 1812, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 145 /min\nnur zentral noch tastbar\nRR: 55/023"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1906, "fields": {"code": 1021, "state_id": 724, "transition": 1812, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 93/048"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1907, "fields": {"code": 1021, "state_id": 674, "transition": 1812, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 138 /min\nnur zentral noch tastbar\nRR: 55/025"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1908, "fields": {"code": 1021, "state_id": 654, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 118 /min\nperipher tastbar\nRR: 81/038"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1909, "fields": {"code": 1021, "state_id": 664, "transition": 1812, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 91/038"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1910, "fields": {"code": 1021, "state_id": 644, "transition": 1812, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 99/039"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1911, "fields": {"code": 1021, "state_id": 714, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 91/038"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1912, "fields": {"code": 1021, "state_id": 694, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 99/039"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1913, "fields": {"code": 1021, "state_id": 704, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 121/051"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1914, "fields": {"code": 1021, "state_id": 684, "transition": 1812, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 129/052"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1915, "fields": {"code": 1021, "state_id": 634, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 109/041"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1916, "fields": {"code": 1021, "state_id": 614, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 129/054"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1917, "fields": {"code": 1021, "state_id": 624, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 139/054"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1918, "fields": {"code": 1021, "state_id": 604, "transition": 1812, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 147/055"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1919, "fields": {"code": 1021, "state_id": 333, "transition": 1844, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 113 /min\nzentral nicht tastbar\nRR: 49/024"}, "examination_codes": {"BZ": 954, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1920, "fields": {"code": 1021, "state_id": 343, "transition": 1844, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 107 /min\nnur zentral noch tastbar\nRR: 59/024"}, "examination_codes": {"BZ": 954, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1921, "fields": {"code": 1021, "state_id": 323, "transition": 1844, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 92 /min\nperipher tastbar\nRR: 87/041"}, "examination_codes": {"BZ": 954, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1922, "fields": {"code": 1021, "state_id": 273, "transition": 1844, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 102 /min\nnur zentral noch tastbar\nRR: 59/026"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1923, "fields": {"code": 1021, "state_id": 253, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 79/035"}, "examination_codes": {"BZ": 954, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1924, "fields": {"code": 1021, "state_id": 263, "transition": 1844, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 89/035"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1925, "fields": {"code": 1021, "state_id": 243, "transition": 1844, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 97/036"}, "examination_codes": {"BZ": 954, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1926, "fields": {"code": 1021, "state_id": 313, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 89/035"}, "examination_codes": {"BZ": 954, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1927, "fields": {"code": 1021, "state_id": 293, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 97/036"}, "examination_codes": {"BZ": 954, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1928, "fields": {"code": 1021, "state_id": 303, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 115/044"}, "examination_codes": {"BZ": 954, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1929, "fields": {"code": 1021, "state_id": 283, "transition": 1844, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 64 /min\nperipher tastbar\nRR: 123/045"}, "examination_codes": {"BZ": 954, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1930, "fields": {"code": 1021, "state_id": 233, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 107/038"}, "examination_codes": {"BZ": 954, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1931, "fields": {"code": 1021, "state_id": 213, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 61 /min\nperipher tastbar\nRR: 123/047"}, "examination_codes": {"BZ": 954, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1932, "fields": {"code": 1021, "state_id": 223, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 57 /min\nperipher kräftig tastbar\nRR: 133/047"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1933, "fields": {"code": 1021, "state_id": 203, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 141/048"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1934, "fields": {"code": 1021, "state_id": 753, "transition": 1844, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 152 /min\nzentral nicht tastbar\nRR: 41/023"}, "examination_codes": {"BZ": 954, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1935, "fields": {"code": 1021, "state_id": 733, "transition": 1844, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 145 /min\nzentral nicht tastbar\nRR: 49/024"}, "examination_codes": {"BZ": 954, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1936, "fields": {"code": 1021, "state_id": 743, "transition": 1844, "vital_signs": {"Haut": "feucht\ngrau", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 137 /min\nnur zentral noch tastbar\nRR: 59/024"}, "examination_codes": {"BZ": 954, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1937, "fields": {"code": 1021, "state_id": 723, "transition": 1844, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 116 /min\nperipher tastbar\nRR: 87/041"}, "examination_codes": {"BZ": 954, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1938, "fields": {"code": 1021, "state_id": 673, "transition": 1844, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 130 /min\nnur zentral noch tastbar\nRR: 59/026"}, "examination_codes": {"BZ": 954, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1939, "fields": {"code": 1021, "state_id": 653, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 115 /min\nperipher tastbar\nRR: 79/035"}, "examination_codes": {"BZ": 954, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1940, "fields": {"code": 1021, "state_id": 663, "transition": 1844, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 110 /min\nperipher tastbar\nRR: 89/035"}, "examination_codes": {"BZ": 954, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1941, "fields": {"code": 1021, "state_id": 643, "transition": 1844, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 97/036"}, "examination_codes": {"BZ": 954, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1942, "fields": {"code": 1021, "state_id": 713, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 101 /min\nperipher tastbar\nRR: 89/035"}, "examination_codes": {"BZ": 954, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1943, "fields": {"code": 1021, "state_id": 693, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 96 /min\nperipher tastbar\nRR: 97/036"}, "examination_codes": {"BZ": 954, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1944, "fields": {"code": 1021, "state_id": 703, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 115/044"}, "examination_codes": {"BZ": 954, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1945, "fields": {"code": 1021, "state_id": 683, "transition": 1844, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 123/045"}, "examination_codes": {"BZ": 954, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1946, "fields": {"code": 1021, "state_id": 633, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 107/038"}, "examination_codes": {"BZ": 954, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1947, "fields": {"code": 1021, "state_id": 613, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 123/047"}, "examination_codes": {"BZ": 954, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1948, "fields": {"code": 1021, "state_id": 623, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 133/047"}, "examination_codes": {"BZ": 954, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1949, "fields": {"code": 1021, "state_id": 603, "transition": 1844, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher kräftig tastbar\nRR: 141/048"}, "examination_codes": {"BZ": 954, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1950, "fields": {"code": 1021, "state_id": 332, "transition": 1876, "vital_signs": {"Haut": "feucht\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 113 /min\nnur zentral noch tastbar\nRR: 58/030"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 814, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1951, "fields": {"code": 1021, "state_id": 342, "transition": 1876, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 107 /min\nnur zentral noch tastbar\nRR: 68/030"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 823, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1952, "fields": {"code": 1021, "state_id": 322, "transition": 1876, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 98 /min\nperipher tastbar\nRR: 86/039"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1953, "fields": {"code": 1021, "state_id": 272, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: n.m. %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 102 /min\nnur zentral noch tastbar\nRR: 68/032"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1954, "fields": {"code": 1021, "state_id": 252, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 94 /min\nperipher tastbar\nRR: 82/037"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1955, "fields": {"code": 1021, "state_id": 262, "transition": 1876, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 89 /min\nperipher tastbar\nRR: 92/037"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1956, "fields": {"code": 1021, "state_id": 242, "transition": 1876, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 100/038"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1957, "fields": {"code": 1021, "state_id": 312, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 92/037"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1958, "fields": {"code": 1021, "state_id": 292, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 77 /min\nperipher tastbar\nRR: 100/038"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1959, "fields": {"code": 1021, "state_id": 302, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 114/042"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1960, "fields": {"code": 1021, "state_id": 282, "transition": 1876, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 122/043"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1961, "fields": {"code": 1021, "state_id": 232, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 110/040"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1962, "fields": {"code": 1021, "state_id": 212, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 65 /min\nperipher tastbar\nRR: 122/045"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1963, "fields": {"code": 1021, "state_id": 222, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 61 /min\nperipher kräftig tastbar\nRR: 132/045"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1964, "fields": {"code": 1021, "state_id": 202, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 140/046"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1965, "fields": {"code": 1021, "state_id": 752, "transition": 1876, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 152 /min\nnur zentral noch tastbar\nRR: 50/029"}, "examination_codes": {"BZ": 906, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1966, "fields": {"code": 1021, "state_id": 732, "transition": 1876, "vital_signs": {"Haut": "feucht\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 145 /min\nnur zentral noch tastbar\nRR: 58/030"}, "examination_codes": {"BZ": 906, "Hb": 401, "EKG": 722, "ZVD": 822, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1967, "fields": {"code": 1021, "state_id": 742, "transition": 1876, "vital_signs": {"Haut": "trocken\nmarmoriert", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 137 /min\nnur zentral noch tastbar\nRR: 68/030"}, "examination_codes": {"BZ": 906, "Hb": 421, "EKG": 722, "ZVD": 805, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1968, "fields": {"code": 1021, "state_id": 722, "transition": 1876, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 124 /min\nperipher tastbar\nRR: 86/039"}, "examination_codes": {"BZ": 906, "Hb": 402, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1969, "fields": {"code": 1021, "state_id": 672, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 130 /min\nnur zentral noch tastbar\nRR: 68/032"}, "examination_codes": {"BZ": 906, "Hb": 413, "EKG": 722, "ZVD": 837, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1970, "fields": {"code": 1021, "state_id": 652, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 119 /min\nperipher tastbar\nRR: 82/037"}, "examination_codes": {"BZ": 906, "Hb": 422, "EKG": 722, "ZVD": 810, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1971, "fields": {"code": 1021, "state_id": 662, "transition": 1876, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 113 /min\nperipher tastbar\nRR: 92/037"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 821, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1972, "fields": {"code": 1021, "state_id": 642, "transition": 1876, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 107 /min\nperipher tastbar\nRR: 100/038"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1973, "fields": {"code": 1021, "state_id": 712, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 104 /min\nperipher tastbar\nRR: 92/037"}, "examination_codes": {"BZ": 906, "Hb": 417, "EKG": 722, "ZVD": 813, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1974, "fields": {"code": 1021, "state_id": 692, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 99 /min\nperipher tastbar\nRR: 100/038"}, "examination_codes": {"BZ": 906, "Hb": 415, "EKG": 722, "ZVD": 804, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1975, "fields": {"code": 1021, "state_id": 702, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 91 /min\nperipher tastbar\nRR: 114/042"}, "examination_codes": {"BZ": 906, "Hb": 403, "EKG": 722, "ZVD": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1976, "fields": {"code": 1021, "state_id": 682, "transition": 1876, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 87 /min\nperipher tastbar\nRR: 122/043"}, "examination_codes": {"BZ": 906, "Hb": 405, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1977, "fields": {"code": 1021, "state_id": 632, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 110/040"}, "examination_codes": {"BZ": 906, "Hb": 428, "EKG": 722, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1978, "fields": {"code": 1021, "state_id": 612, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher tastbar\nRR: 122/045"}, "examination_codes": {"BZ": 906, "Hb": 419, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1979, "fields": {"code": 1021, "state_id": 622, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 132/045"}, "examination_codes": {"BZ": 906, "Hb": 408, "EKG": 722, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1980, "fields": {"code": 1021, "state_id": 602, "transition": 1876, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 140/046"}, "examination_codes": {"BZ": 906, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1981, "fields": {"code": 1021, "state_id": 551, "transition": 1941, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 143/076"}, "examination_codes": {"BZ": 928, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 1982, "fields": {"code": 1021, "state_id": 552, "transition": 1908, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: n.m. %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 148 /min\nnur zentral noch tastbar\nRR: 60/029"}, "examination_codes": {"BZ": 920, "Hb": 400, "EKG": 722, "ZVD": 838, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 658, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 1983, "fields": {"code": 1022, "state_id": 101, "transition": 1982, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1984, "fields": {"code": 1022, "state_id": 102, "transition": 1981, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1985, "fields": {"code": 1022, "state_id": 103, "transition": 1980, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1986, "fields": {"code": 1022, "state_id": 104, "transition": 1979, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 132/068"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1987, "fields": {"code": 1022, "state_id": 105, "transition": 1978, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 127/065"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1988, "fields": {"code": 1022, "state_id": 106, "transition": 1977, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 133/069"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1989, "fields": {"code": 1022, "state_id": 107, "transition": 1976, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 128/066"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1990, "fields": {"code": 1022, "state_id": 108, "transition": 1959, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 97 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 152/090"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1991, "fields": {"code": 1022, "state_id": 208, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 120/032"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1992, "fields": {"code": 1022, "state_id": 209, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 66 /min\nperipher tastbar\nRR: 117/032"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1993, "fields": {"code": 1022, "state_id": 219, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 134/062"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1994, "fields": {"code": 1022, "state_id": 229, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 120/032"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1995, "fields": {"code": 1022, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 137/062"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1996, "fields": {"code": 1022, "state_id": 249, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 134/062"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1997, "fields": {"code": 1022, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 147/086"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1998, "fields": {"code": 1022, "state_id": 269, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 137/062"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 1999, "fields": {"code": 1022, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 146/080"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2000, "fields": {"code": 1022, "state_id": 289, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 118/037"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2001, "fields": {"code": 1022, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 135/067"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2002, "fields": {"code": 1022, "state_id": 309, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 121/037"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2003, "fields": {"code": 1022, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/067"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2004, "fields": {"code": 1022, "state_id": 329, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 135/067"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2005, "fields": {"code": 1022, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 148/091"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2006, "fields": {"code": 1022, "state_id": 349, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 20 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/067"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2007, "fields": {"code": 1022, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 94 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 147/085"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2008, "fields": {"code": 1022, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 132/062"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2009, "fields": {"code": 1022, "state_id": 218, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 137/062"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2010, "fields": {"code": 1022, "state_id": 228, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 70 /min\nperipher tastbar\nRR: 123/032"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2011, "fields": {"code": 1022, "state_id": 238, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 140/062"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2012, "fields": {"code": 1022, "state_id": 248, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 21 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 137/062"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2013, "fields": {"code": 1022, "state_id": 258, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 152/089"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2014, "fields": {"code": 1022, "state_id": 268, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 140/062"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2015, "fields": {"code": 1022, "state_id": 278, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 153/086"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2016, "fields": {"code": 1022, "state_id": 288, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 121/037"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2017, "fields": {"code": 1022, "state_id": 298, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 138/067"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2018, "fields": {"code": 1022, "state_id": 308, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 74 /min\nperipher tastbar\nRR: 124/037"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2019, "fields": {"code": 1022, "state_id": 318, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 141/067"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2020, "fields": {"code": 1022, "state_id": 328, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 22 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 138/067"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2021, "fields": {"code": 1022, "state_id": 338, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 153/094"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2022, "fields": {"code": 1022, "state_id": 348, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 141/067"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2023, "fields": {"code": 1022, "state_id": 358, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 96 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 154/091"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. klagt über sehr starke Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2024, "fields": {"code": 1022, "state_id": 758, "transition": 1942, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 135/062"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2025, "fields": {"code": 1022, "state_id": 551, "transition": 1989, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 69 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2026, "fields": {"code": 1022, "state_id": 552, "transition": 1988, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2027, "fields": {"code": 1022, "state_id": 553, "transition": 1987, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 68 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2028, "fields": {"code": 1022, "state_id": 554, "transition": 1986, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 127/068"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2029, "fields": {"code": 1022, "state_id": 555, "transition": 1985, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 122/065"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2030, "fields": {"code": 1022, "state_id": 556, "transition": 1984, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher tastbar\nRR: 128/069"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2031, "fields": {"code": 1022, "state_id": 557, "transition": 1983, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher tastbar\nRR: 123/066"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2032, "fields": {"code": 1022, "state_id": 558, "transition": 1959, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 147/090"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2033, "fields": {"code": 1023, "state_id": 101, "transition": 2006, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 937, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2034, "fields": {"code": 1023, "state_id": 351, "transition": 2004, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 910, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2035, "fields": {"code": 1023, "state_id": 352, "transition": 2002, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2036, "fields": {"code": 1023, "state_id": 353, "transition": 2000, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 910, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2037, "fields": {"code": 1023, "state_id": 354, "transition": 1998, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2038, "fields": {"code": 1023, "state_id": 355, "transition": 1996, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2039, "fields": {"code": 1023, "state_id": 356, "transition": 1994, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2040, "fields": {"code": 1023, "state_id": 357, "transition": 1992, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2041, "fields": {"code": 1023, "state_id": 358, "transition": 1990, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2042, "fields": {"code": 1023, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2043, "fields": {"code": 1023, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2044, "fields": {"code": 1023, "state_id": 758, "transition": 1990, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2045, "fields": {"code": 1023, "state_id": 757, "transition": 1992, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2046, "fields": {"code": 1023, "state_id": 756, "transition": 1994, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2047, "fields": {"code": 1023, "state_id": 755, "transition": 1996, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2048, "fields": {"code": 1023, "state_id": 754, "transition": 1998, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2049, "fields": {"code": 1023, "state_id": 753, "transition": 2000, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 910, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2050, "fields": {"code": 1023, "state_id": 752, "transition": 2002, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 939, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2051, "fields": {"code": 1023, "state_id": 751, "transition": 2004, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 910, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2052, "fields": {"code": 1023, "state_id": 551, "transition": 2006, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 937, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2053, "fields": {"code": 1024, "state_id": 101, "transition": 2024, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 176/089"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 746, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2054, "fields": {"code": 1024, "state_id": 351, "transition": 2022, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 180/093"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2055, "fields": {"code": 1024, "state_id": 352, "transition": 2020, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 186/097"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 746, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2056, "fields": {"code": 1024, "state_id": 353, "transition": 2018, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 181/094"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2057, "fields": {"code": 1024, "state_id": 354, "transition": 2016, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 187/098"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 746, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2058, "fields": {"code": 1024, "state_id": 355, "transition": 2014, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 182/095"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2059, "fields": {"code": 1024, "state_id": 356, "transition": 2012, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 188/099"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 746, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2060, "fields": {"code": 1024, "state_id": 357, "transition": 2010, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 183/096"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2061, "fields": {"code": 1024, "state_id": 358, "transition": 2008, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 189/100"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 746, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2062, "fields": {"code": 1024, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 184/097"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2063, "fields": {"code": 1024, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 184/097"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2064, "fields": {"code": 1024, "state_id": 758, "transition": 2008, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 189/100"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 746, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2065, "fields": {"code": 1024, "state_id": 757, "transition": 2010, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 183/096"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2066, "fields": {"code": 1024, "state_id": 756, "transition": 2012, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 188/099"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 746, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2067, "fields": {"code": 1024, "state_id": 755, "transition": 2014, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 182/095"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2068, "fields": {"code": 1024, "state_id": 754, "transition": 2016, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 187/098"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 746, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2069, "fields": {"code": 1024, "state_id": 753, "transition": 2018, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 181/094"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2070, "fields": {"code": 1024, "state_id": 752, "transition": 2020, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 58 /min\nperipher kräftig tastbar\nRR: 186/097"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 746, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2071, "fields": {"code": 1024, "state_id": 751, "transition": 2022, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 180/093"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2072, "fields": {"code": 1024, "state_id": 551, "transition": 2024, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 55 /min\nperipher kräftig tastbar\nRR: 176/089"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 746, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 100, "Rö-Thorax": 334, "Ultraschall": 615, "Rö-Extremitäten": 571}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2073, "fields": {"code": 1025, "state_id": 101, "transition": 2042, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 115/066"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2074, "fields": {"code": 1025, "state_id": 351, "transition": 2040, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 119/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2075, "fields": {"code": 1025, "state_id": 352, "transition": 2038, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 125/074"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 747, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2076, "fields": {"code": 1025, "state_id": 353, "transition": 2036, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2077, "fields": {"code": 1025, "state_id": 354, "transition": 2034, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/075"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 747, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2078, "fields": {"code": 1025, "state_id": 355, "transition": 2032, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 121/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2079, "fields": {"code": 1025, "state_id": 356, "transition": 2030, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 127/076"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 747, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2080, "fields": {"code": 1025, "state_id": 357, "transition": 2028, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 122/073"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2081, "fields": {"code": 1025, "state_id": 358, "transition": 2026, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 747, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2082, "fields": {"code": 1025, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 123/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2083, "fields": {"code": 1025, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 123/074"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2084, "fields": {"code": 1025, "state_id": 758, "transition": 2026, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 128/077"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 747, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2085, "fields": {"code": 1025, "state_id": 757, "transition": 2028, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 122/073"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2086, "fields": {"code": 1025, "state_id": 756, "transition": 2030, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 127/076"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 747, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2087, "fields": {"code": 1025, "state_id": 755, "transition": 2032, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 121/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2088, "fields": {"code": 1025, "state_id": 754, "transition": 2034, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/075"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 747, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2089, "fields": {"code": 1025, "state_id": 753, "transition": 2036, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2090, "fields": {"code": 1025, "state_id": 752, "transition": 2038, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 125/074"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 747, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2091, "fields": {"code": 1025, "state_id": 751, "transition": 2040, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 119/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2092, "fields": {"code": 1025, "state_id": 551, "transition": 2042, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 115/066"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2093, "fields": {"code": 1026, "state_id": 101, "transition": 2060, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 904, "Hb": 420, "EKG": 722, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2094, "fields": {"code": 1026, "state_id": 351, "transition": 2058, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2095, "fields": {"code": 1026, "state_id": 352, "transition": 2056, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 902, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2096, "fields": {"code": 1026, "state_id": 353, "transition": 2054, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2097, "fields": {"code": 1026, "state_id": 354, "transition": 2052, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 902, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2098, "fields": {"code": 1026, "state_id": 355, "transition": 2050, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2099, "fields": {"code": 1026, "state_id": 356, "transition": 2048, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 902, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2100, "fields": {"code": 1026, "state_id": 357, "transition": 2046, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2101, "fields": {"code": 1026, "state_id": 358, "transition": 2044, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 923, "Hb": 420, "EKG": 722, "ZVD": 820, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2102, "fields": {"code": 1026, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "somnolent", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 812, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2103, "fields": {"code": 1026, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2104, "fields": {"code": 1026, "state_id": 758, "transition": 2044, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 923, "Hb": 420, "EKG": 722, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2105, "fields": {"code": 1026, "state_id": 757, "transition": 2046, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2106, "fields": {"code": 1026, "state_id": 756, "transition": 2048, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 902, "Hb": 420, "EKG": 722, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2107, "fields": {"code": 1026, "state_id": 755, "transition": 2050, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2108, "fields": {"code": 1026, "state_id": 754, "transition": 2052, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 902, "Hb": 420, "EKG": 722, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2109, "fields": {"code": 1026, "state_id": 753, "transition": 2054, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2110, "fields": {"code": 1026, "state_id": 752, "transition": 2056, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 902, "Hb": 420, "EKG": 722, "ZVD": 803, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2111, "fields": {"code": 1026, "state_id": 751, "transition": 2058, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 909, "Hb": 420, "EKG": 722, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2112, "fields": {"code": 1026, "state_id": 551, "transition": 2060, "vital_signs": {"Haut": "trocken\nblass", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 904, "Hb": 420, "EKG": 722, "ZVD": 801, "Leber": 111, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2113, "fields": {"code": 1027, "state_id": 101, "transition": 2078, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 156/094"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2114, "fields": {"code": 1027, "state_id": 351, "transition": 2076, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 160/098"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2115, "fields": {"code": 1027, "state_id": 352, "transition": 2074, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 166/102"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2116, "fields": {"code": 1027, "state_id": 353, "transition": 2072, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 161/099"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2117, "fields": {"code": 1027, "state_id": 354, "transition": 2070, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 167/103"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2118, "fields": {"code": 1027, "state_id": 355, "transition": 2068, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 162/100"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2119, "fields": {"code": 1027, "state_id": 356, "transition": 2066, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 168/104"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2120, "fields": {"code": 1027, "state_id": 357, "transition": 2064, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 163/101"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2121, "fields": {"code": 1027, "state_id": 358, "transition": 2062, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 169/105"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 748, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2122, "fields": {"code": 1027, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 164/102"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2123, "fields": {"code": 1027, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 164/102"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2124, "fields": {"code": 1027, "state_id": 758, "transition": 2062, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 169/105"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 748, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2125, "fields": {"code": 1027, "state_id": 757, "transition": 2064, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 163/101"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2126, "fields": {"code": 1027, "state_id": 756, "transition": 2066, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 168/104"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 748, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2127, "fields": {"code": 1027, "state_id": 755, "transition": 2068, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 162/100"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2128, "fields": {"code": 1027, "state_id": 754, "transition": 2070, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 167/103"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 748, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2129, "fields": {"code": 1027, "state_id": 753, "transition": 2072, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 161/099"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2130, "fields": {"code": 1027, "state_id": 752, "transition": 2074, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 166/102"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 748, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2131, "fields": {"code": 1027, "state_id": 751, "transition": 2076, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 160/098"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2132, "fields": {"code": 1027, "state_id": 551, "transition": 2078, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 89 /min\nperipher kräftig tastbar\nRR: 156/094"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 748, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2133, "fields": {"code": 1028, "state_id": 101, "transition": 2096, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2134, "fields": {"code": 1028, "state_id": 351, "transition": 2094, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2135, "fields": {"code": 1028, "state_id": 352, "transition": 2092, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 926, "Hb": 418, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2136, "fields": {"code": 1028, "state_id": 353, "transition": 2090, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2137, "fields": {"code": 1028, "state_id": 354, "transition": 2088, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 418, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2138, "fields": {"code": 1028, "state_id": 355, "transition": 2086, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2139, "fields": {"code": 1028, "state_id": 356, "transition": 2084, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 418, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2140, "fields": {"code": 1028, "state_id": 357, "transition": 2082, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2141, "fields": {"code": 1028, "state_id": 358, "transition": 2080, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 19 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 418, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2142, "fields": {"code": 1028, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 95 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2143, "fields": {"code": 1028, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2144, "fields": {"code": 1028, "state_id": 758, "transition": 2080, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 418, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2145, "fields": {"code": 1028, "state_id": 757, "transition": 2082, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2146, "fields": {"code": 1028, "state_id": 756, "transition": 2084, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 418, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2147, "fields": {"code": 1028, "state_id": 755, "transition": 2086, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2148, "fields": {"code": 1028, "state_id": 754, "transition": 2088, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 418, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2149, "fields": {"code": 1028, "state_id": 753, "transition": 2090, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2150, "fields": {"code": 1028, "state_id": 752, "transition": 2092, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 100 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 926, "Hb": 418, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2151, "fields": {"code": 1028, "state_id": 751, "transition": 2094, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 912, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2152, "fields": {"code": 1028, "state_id": 551, "transition": 2096, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 95 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 418, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 196, "Rö-Thorax": 306, "Ultraschall": 541, "Rö-Extremitäten": 584}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2153, "fields": {"code": 1029, "state_id": 101, "transition": 2114, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2154, "fields": {"code": 1029, "state_id": 351, "transition": 2112, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2155, "fields": {"code": 1029, "state_id": 352, "transition": 2110, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2156, "fields": {"code": 1029, "state_id": 353, "transition": 2108, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2157, "fields": {"code": 1029, "state_id": 354, "transition": 2106, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2158, "fields": {"code": 1029, "state_id": 355, "transition": 2104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2159, "fields": {"code": 1029, "state_id": 356, "transition": 2102, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2160, "fields": {"code": 1029, "state_id": 357, "transition": 2100, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2161, "fields": {"code": 1029, "state_id": 358, "transition": 2098, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2162, "fields": {"code": 1029, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2163, "fields": {"code": 1029, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2164, "fields": {"code": 1029, "state_id": 758, "transition": 2098, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 424, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2165, "fields": {"code": 1029, "state_id": 757, "transition": 2100, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2166, "fields": {"code": 1029, "state_id": 756, "transition": 2102, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2167, "fields": {"code": 1029, "state_id": 755, "transition": 2104, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2168, "fields": {"code": 1029, "state_id": 754, "transition": 2106, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2169, "fields": {"code": 1029, "state_id": 753, "transition": 2108, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2170, "fields": {"code": 1029, "state_id": 752, "transition": 2110, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 926, "Hb": 424, "EKG": 737, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2171, "fields": {"code": 1029, "state_id": 751, "transition": 2112, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 912, "Hb": 424, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2172, "fields": {"code": 1029, "state_id": 551, "transition": 2114, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 424, "EKG": 737, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 273, "Rö-Thorax": 382, "Ultraschall": 615, "Rö-Extremitäten": 586}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2173, "fields": {"code": 1030, "state_id": 101, "transition": 2132, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 134/078"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2174, "fields": {"code": 1030, "state_id": 351, "transition": 2130, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 138/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2175, "fields": {"code": 1030, "state_id": 352, "transition": 2128, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 144/086"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2176, "fields": {"code": 1030, "state_id": 353, "transition": 2126, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 139/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2177, "fields": {"code": 1030, "state_id": 354, "transition": 2124, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 145/087"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2178, "fields": {"code": 1030, "state_id": 355, "transition": 2122, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 140/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2179, "fields": {"code": 1030, "state_id": 356, "transition": 2120, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 146/088"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2180, "fields": {"code": 1030, "state_id": 357, "transition": 2118, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 141/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2181, "fields": {"code": 1030, "state_id": 358, "transition": 2116, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 147/089"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2182, "fields": {"code": 1030, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 142/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2183, "fields": {"code": 1030, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 142/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2184, "fields": {"code": 1030, "state_id": 758, "transition": 2116, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 147/089"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2185, "fields": {"code": 1030, "state_id": 757, "transition": 2118, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 141/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2186, "fields": {"code": 1030, "state_id": 756, "transition": 2120, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 146/088"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2187, "fields": {"code": 1030, "state_id": 755, "transition": 2122, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 140/084"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2188, "fields": {"code": 1030, "state_id": 754, "transition": 2124, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 145/087"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2189, "fields": {"code": 1030, "state_id": 753, "transition": 2126, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 139/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2190, "fields": {"code": 1030, "state_id": 752, "transition": 2128, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 62 /min\nperipher kräftig tastbar\nRR: 144/086"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2191, "fields": {"code": 1030, "state_id": 751, "transition": 2130, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 138/082"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2192, "fields": {"code": 1030, "state_id": 551, "transition": 2132, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 59 /min\nperipher kräftig tastbar\nRR: 134/078"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2193, "fields": {"code": 1031, "state_id": 101, "transition": 2146, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 157/083"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2194, "fields": {"code": 1031, "state_id": 102, "transition": 2145, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 163/087"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2195, "fields": {"code": 1031, "state_id": 103, "transition": 2144, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 158/084"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2196, "fields": {"code": 1031, "state_id": 104, "transition": 2143, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 164/088"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2197, "fields": {"code": 1031, "state_id": 105, "transition": 2142, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 159/085"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2198, "fields": {"code": 1031, "state_id": 106, "transition": 2140, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 165/089"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2199, "fields": {"code": 1031, "state_id": 356, "transition": 2138, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 169/093"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2200, "fields": {"code": 1031, "state_id": 357, "transition": 2136, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 164/090"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2201, "fields": {"code": 1031, "state_id": 358, "transition": 2134, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 170/094"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2202, "fields": {"code": 1031, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 165/091"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2203, "fields": {"code": 1031, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 165/091"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2204, "fields": {"code": 1031, "state_id": 758, "transition": 2134, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 170/094"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2205, "fields": {"code": 1031, "state_id": 757, "transition": 2136, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 164/090"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2206, "fields": {"code": 1031, "state_id": 756, "transition": 2138, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 169/093"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2207, "fields": {"code": 1031, "state_id": 551, "transition": 2151, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 157/083"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2208, "fields": {"code": 1031, "state_id": 552, "transition": 2150, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 163/087"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2209, "fields": {"code": 1031, "state_id": 553, "transition": 2149, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 158/084"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2210, "fields": {"code": 1031, "state_id": 554, "transition": 2148, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 164/088"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2211, "fields": {"code": 1031, "state_id": 555, "transition": 2147, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 67 /min\nperipher kräftig tastbar\nRR: 159/085"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2212, "fields": {"code": 1031, "state_id": 556, "transition": 2140, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 165/089"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2213, "fields": {"code": 1032, "state_id": 101, "transition": 2162, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 162/099"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 703, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2214, "fields": {"code": 1032, "state_id": 102, "transition": 2161, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 168/103"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 703, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2215, "fields": {"code": 1032, "state_id": 103, "transition": 2160, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 163/100"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 703, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2216, "fields": {"code": 1032, "state_id": 104, "transition": 2159, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 91 /min\nperipher kräftig tastbar\nRR: 169/104"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 703, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2217, "fields": {"code": 1032, "state_id": 105, "transition": 2158, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 164/101"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 703, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2218, "fields": {"code": 1032, "state_id": 106, "transition": 2157, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 170/105"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 703, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2219, "fields": {"code": 1032, "state_id": 107, "transition": 2156, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 165/102"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 703, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2220, "fields": {"code": 1032, "state_id": 108, "transition": 2154, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 171/106"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 703, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2221, "fields": {"code": 1032, "state_id": 358, "transition": 2152, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 175/110"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 703, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2222, "fields": {"code": 1032, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 170/107"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 703, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2223, "fields": {"code": 1032, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 170/107"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 703, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2224, "fields": {"code": 1032, "state_id": 758, "transition": 2152, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 175/110"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 703, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2225, "fields": {"code": 1032, "state_id": 551, "transition": 2169, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 88 /min\nperipher kräftig tastbar\nRR: 162/099"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 703, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2226, "fields": {"code": 1032, "state_id": 552, "transition": 2168, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 168/103"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 703, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2227, "fields": {"code": 1032, "state_id": 553, "transition": 2167, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 163/100"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 703, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2228, "fields": {"code": 1032, "state_id": 554, "transition": 2166, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 91 /min\nperipher kräftig tastbar\nRR: 169/104"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 703, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2229, "fields": {"code": 1032, "state_id": 555, "transition": 2165, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 164/101"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 703, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2230, "fields": {"code": 1032, "state_id": 556, "transition": 2164, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 170/105"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 703, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2231, "fields": {"code": 1032, "state_id": 557, "transition": 2163, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 165/102"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 703, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2232, "fields": {"code": 1032, "state_id": 558, "transition": 2154, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 90 /min\nperipher kräftig tastbar\nRR: 171/106"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 703, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 243, "Rö-Thorax": 479, "Ultraschall": 615, "Rö-Extremitäten": 564}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2233, "fields": {"code": 1033, "state_id": 101, "transition": 2186, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 145/093"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2234, "fields": {"code": 1033, "state_id": 351, "transition": 2184, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 149/097"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2235, "fields": {"code": 1033, "state_id": 352, "transition": 2182, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 155/101"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 747, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2236, "fields": {"code": 1033, "state_id": 353, "transition": 2180, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 150/098"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2237, "fields": {"code": 1033, "state_id": 354, "transition": 2178, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 156/102"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 747, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2238, "fields": {"code": 1033, "state_id": 355, "transition": 2176, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 151/099"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2239, "fields": {"code": 1033, "state_id": 356, "transition": 2174, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 157/103"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 747, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2240, "fields": {"code": 1033, "state_id": 357, "transition": 2172, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 152/100"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2241, "fields": {"code": 1033, "state_id": 358, "transition": 2170, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 158/104"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 747, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2242, "fields": {"code": 1033, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 153/101"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2243, "fields": {"code": 1033, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 153/101"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2244, "fields": {"code": 1033, "state_id": 758, "transition": 2170, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 158/104"}, "examination_codes": {"BZ": 919, "Hb": 430, "EKG": 747, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2245, "fields": {"code": 1033, "state_id": 757, "transition": 2172, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 152/100"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2246, "fields": {"code": 1033, "state_id": 756, "transition": 2174, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 157/103"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 747, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2247, "fields": {"code": 1033, "state_id": 755, "transition": 2176, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 151/099"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2248, "fields": {"code": 1033, "state_id": 754, "transition": 2178, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 156/102"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 747, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2249, "fields": {"code": 1033, "state_id": 753, "transition": 2180, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 150/098"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2250, "fields": {"code": 1033, "state_id": 752, "transition": 2182, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 97 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 103 /min\nperipher kräftig tastbar\nRR: 155/101"}, "examination_codes": {"BZ": 926, "Hb": 430, "EKG": 747, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2251, "fields": {"code": 1033, "state_id": 751, "transition": 2184, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 149/097"}, "examination_codes": {"BZ": 912, "Hb": 430, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2252, "fields": {"code": 1033, "state_id": 551, "transition": 2186, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 96 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 98 /min\nperipher kräftig tastbar\nRR: 145/093"}, "examination_codes": {"BZ": 906, "Hb": 430, "EKG": 747, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 664, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 236, "Rö-Thorax": 457, "Ultraschall": 615, "Rö-Extremitäten": 520}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2253, "fields": {"code": 1034, "state_id": 101, "transition": 2204, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2254, "fields": {"code": 1034, "state_id": 351, "transition": 2202, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2255, "fields": {"code": 1034, "state_id": 352, "transition": 2200, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2256, "fields": {"code": 1034, "state_id": 353, "transition": 2198, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2257, "fields": {"code": 1034, "state_id": 354, "transition": 2196, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2258, "fields": {"code": 1034, "state_id": 355, "transition": 2194, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2259, "fields": {"code": 1034, "state_id": 356, "transition": 2192, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2260, "fields": {"code": 1034, "state_id": 357, "transition": 2190, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2261, "fields": {"code": 1034, "state_id": 358, "transition": 2188, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2262, "fields": {"code": 1034, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2263, "fields": {"code": 1034, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2264, "fields": {"code": 1034, "state_id": 758, "transition": 2188, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2265, "fields": {"code": 1034, "state_id": 757, "transition": 2190, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2266, "fields": {"code": 1034, "state_id": 756, "transition": 2192, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2267, "fields": {"code": 1034, "state_id": 755, "transition": 2194, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2268, "fields": {"code": 1034, "state_id": 754, "transition": 2196, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2269, "fields": {"code": 1034, "state_id": 753, "transition": 2198, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2270, "fields": {"code": 1034, "state_id": 752, "transition": 2200, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2271, "fields": {"code": 1034, "state_id": 751, "transition": 2202, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2272, "fields": {"code": 1034, "state_id": 551, "transition": 2204, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2273, "fields": {"code": 1035, "state_id": 101, "transition": 2242, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2274, "fields": {"code": 1035, "state_id": 102, "transition": 2241, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2275, "fields": {"code": 1035, "state_id": 103, "transition": 2236, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 147/076"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2276, "fields": {"code": 1035, "state_id": 233, "transition": 2231, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2277, "fields": {"code": 1035, "state_id": 234, "transition": 2226, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 134/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2278, "fields": {"code": 1035, "state_id": 235, "transition": 2221, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 75 /min\nperipher tastbar\nRR: 127/057"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2279, "fields": {"code": 1035, "state_id": 236, "transition": 2216, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 131/058"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2280, "fields": {"code": 1035, "state_id": 237, "transition": 2211, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher tastbar\nRR: 124/052"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2281, "fields": {"code": 1035, "state_id": 238, "transition": 2206, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 85 /min\nperipher tastbar\nRR: 128/053"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2282, "fields": {"code": 1035, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nflache Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher tastbar\nRR: 121/047"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2283, "fields": {"code": 1035, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 93 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 70 /min\nperipher kräftig tastbar\nRR: 167/099"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2284, "fields": {"code": 1035, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher tastbar\nRR: 122/052"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2285, "fields": {"code": 1035, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 88 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 168/104"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2286, "fields": {"code": 1035, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2287, "fields": {"code": 1035, "state_id": 278, "transition": 2206, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 170/099"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2288, "fields": {"code": 1035, "state_id": 318, "transition": 2206, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 86 /min\nperipher tastbar\nRR: 129/058"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2289, "fields": {"code": 1035, "state_id": 358, "transition": 2206, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 90 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 171/104"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2290, "fields": {"code": 1035, "state_id": 718, "transition": 2206, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2291, "fields": {"code": 1035, "state_id": 277, "transition": 2211, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 162/092"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2292, "fields": {"code": 1035, "state_id": 317, "transition": 2211, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "teilnahmslos", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher tastbar\nRR: 125/057"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2293, "fields": {"code": 1035, "state_id": 357, "transition": 2211, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 90 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 74 /min\nperipher kräftig tastbar\nRR: 163/097"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 836, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2294, "fields": {"code": 1035, "state_id": 717, "transition": 2211, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2295, "fields": {"code": 1035, "state_id": 276, "transition": 2216, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 165/092"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2296, "fields": {"code": 1035, "state_id": 316, "transition": 2216, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 132/063"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2297, "fields": {"code": 1035, "state_id": 356, "transition": 2216, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 166/097"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2298, "fields": {"code": 1035, "state_id": 716, "transition": 2216, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 134/070"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2299, "fields": {"code": 1035, "state_id": 275, "transition": 2221, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 157/085"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2300, "fields": {"code": 1035, "state_id": 315, "transition": 2221, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 128/062"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2301, "fields": {"code": 1035, "state_id": 355, "transition": 2221, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "hysterisch", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 158/090"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2302, "fields": {"code": 1035, "state_id": 715, "transition": 2221, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 128/066"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2303, "fields": {"code": 1035, "state_id": 274, "transition": 2226, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 160/085"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2304, "fields": {"code": 1035, "state_id": 314, "transition": 2226, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 135/068"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2305, "fields": {"code": 1035, "state_id": 354, "transition": 2226, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 161/090"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 824, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2306, "fields": {"code": 1035, "state_id": 714, "transition": 2226, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 133/069"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2307, "fields": {"code": 1035, "state_id": 273, "transition": 2231, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 152/078"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2308, "fields": {"code": 1035, "state_id": 313, "transition": 2231, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2309, "fields": {"code": 1035, "state_id": 353, "transition": 2231, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 153/083"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 833, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2310, "fields": {"code": 1035, "state_id": 713, "transition": 2231, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 71 /min\nperipher tastbar\nRR: 127/065"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2311, "fields": {"code": 1035, "state_id": 551, "transition": 2244, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 94 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2312, "fields": {"code": 1035, "state_id": 552, "transition": 2243, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2313, "fields": {"code": 1035, "state_id": 553, "transition": 2236, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 95 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 142/076"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 238, "Rö-Thorax": 446, "Ultraschall": 615, "Rö-Extremitäten": 602}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2314, "fields": {"code": 1036, "state_id": 101, "transition": 2261, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2315, "fields": {"code": 1036, "state_id": 351, "transition": 2259, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2316, "fields": {"code": 1036, "state_id": 352, "transition": 2257, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2317, "fields": {"code": 1036, "state_id": 353, "transition": 2255, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2318, "fields": {"code": 1036, "state_id": 354, "transition": 2253, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2319, "fields": {"code": 1036, "state_id": 355, "transition": 2251, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2320, "fields": {"code": 1036, "state_id": 356, "transition": 2249, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2321, "fields": {"code": 1036, "state_id": 357, "transition": 2247, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2322, "fields": {"code": 1036, "state_id": 358, "transition": 2245, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 820, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2323, "fields": {"code": 1036, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2324, "fields": {"code": 1036, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2325, "fields": {"code": 1036, "state_id": 758, "transition": 2245, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 803, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2326, "fields": {"code": 1036, "state_id": 757, "transition": 2247, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2327, "fields": {"code": 1036, "state_id": 756, "transition": 2249, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 803, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2328, "fields": {"code": 1036, "state_id": 755, "transition": 2251, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2329, "fields": {"code": 1036, "state_id": 754, "transition": 2253, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 803, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2330, "fields": {"code": 1036, "state_id": 753, "transition": 2255, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2331, "fields": {"code": 1036, "state_id": 752, "transition": 2257, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 803, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2332, "fields": {"code": 1036, "state_id": 751, "transition": 2259, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2333, "fields": {"code": 1036, "state_id": 551, "transition": 2261, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 801, "Leber": 113, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 148, "Rö-Thorax": 305, "Ultraschall": 586, "Rö-Extremitäten": 567}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2334, "fields": {"code": 1037, "state_id": 101, "transition": 2306, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2335, "fields": {"code": 1037, "state_id": 102, "transition": 2305, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2336, "fields": {"code": 1037, "state_id": 103, "transition": 2304, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2337, "fields": {"code": 1037, "state_id": 104, "transition": 2303, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2338, "fields": {"code": 1037, "state_id": 105, "transition": 2295, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 80 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 147/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2339, "fields": {"code": 1037, "state_id": 255, "transition": 2287, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 97 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 133/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2340, "fields": {"code": 1037, "state_id": 256, "transition": 2279, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 14 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 141/079"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2341, "fields": {"code": 1037, "state_id": 257, "transition": 2271, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2342, "fields": {"code": 1037, "state_id": 258, "transition": 2263, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 146/086"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2343, "fields": {"code": 1037, "state_id": 259, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 143/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2344, "fields": {"code": 1037, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\nsichtbare ,", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 80 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 138/056"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2345, "fields": {"code": 1037, "state_id": 299, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 11 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 143/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2346, "fields": {"code": 1037, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 87 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 148/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2347, "fields": {"code": 1037, "state_id": 339, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 16 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 148/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2348, "fields": {"code": 1037, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nsichtbare ,", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 75 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 143/056"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 836, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2349, "fields": {"code": 1037, "state_id": 739, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 138/086"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2350, "fields": {"code": 1037, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nleichte ,", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 86 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 143/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2351, "fields": {"code": 1037, "state_id": 278, "transition": 2263, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 27 /min\nSpO2: 82 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 145/062"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2352, "fields": {"code": 1037, "state_id": 298, "transition": 2263, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 146/086"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2353, "fields": {"code": 1037, "state_id": 318, "transition": 2263, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 88 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 153/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2354, "fields": {"code": 1037, "state_id": 338, "transition": 2263, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 96 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 87 /min\nperipher kräftig tastbar\nRR: 151/086"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2355, "fields": {"code": 1037, "state_id": 358, "transition": 2263, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 31 /min\nSpO2: 77 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 150/062"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2356, "fields": {"code": 1037, "state_id": 738, "transition": 2263, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 82 /min\nperipher kräftig tastbar\nRR: 141/086"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2357, "fields": {"code": 1037, "state_id": 758, "transition": 2263, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 87 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 148/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2358, "fields": {"code": 1037, "state_id": 277, "transition": 2271, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 25 /min\nSpO2: 82 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 75 /min\nperipher kräftig tastbar\nRR: 141/061"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2359, "fields": {"code": 1037, "state_id": 297, "transition": 2271, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 12 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2360, "fields": {"code": 1037, "state_id": 317, "transition": 2271, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 87 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 147/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2361, "fields": {"code": 1037, "state_id": 337, "transition": 2271, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 17 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 143/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2362, "fields": {"code": 1037, "state_id": 357, "transition": 2271, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 29 /min\nSpO2: 77 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 80 /min\nperipher kräftig tastbar\nRR: 146/061"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2363, "fields": {"code": 1037, "state_id": 737, "transition": 2271, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/079"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2364, "fields": {"code": 1037, "state_id": 757, "transition": 2271, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 86 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 142/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2365, "fields": {"code": 1037, "state_id": 276, "transition": 2279, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 26 /min\nSpO2: 84 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 148/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2366, "fields": {"code": 1037, "state_id": 296, "transition": 2279, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 141/079"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2367, "fields": {"code": 1037, "state_id": 316, "transition": 2279, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 88 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 152/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 807, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2368, "fields": {"code": 1037, "state_id": 336, "transition": 2279, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 94 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 146/079"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2369, "fields": {"code": 1037, "state_id": 356, "transition": 2279, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 30 /min\nSpO2: 79 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 153/067"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 824, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2370, "fields": {"code": 1037, "state_id": 736, "transition": 2279, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 78 /min\nperipher kräftig tastbar\nRR: 136/079"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2371, "fields": {"code": 1037, "state_id": 756, "transition": 2279, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 87 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 85 /min\nperipher kräftig tastbar\nRR: 147/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2372, "fields": {"code": 1037, "state_id": 275, "transition": 2287, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 24 /min\nSpO2: 84 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 79 /min\nperipher kräftig tastbar\nRR: 144/066"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2373, "fields": {"code": 1037, "state_id": 295, "transition": 2287, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 73 /min\nperipher kräftig tastbar\nRR: 133/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2374, "fields": {"code": 1037, "state_id": 315, "transition": 2287, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 23 /min\nSpO2: 87 %\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 146/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2375, "fields": {"code": 1037, "state_id": 335, "transition": 2287, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "freie Atemwege", "Psyche": "aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 92 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 77 /min\nperipher kräftig tastbar\nRR: 138/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über leichte Atemnot\nPat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2376, "fields": {"code": 1037, "state_id": 355, "transition": 2287, "vital_signs": {"Haut": "feucht\nsichtbare Zyanose", "Airway": "freie Atemwege", "Psyche": "sehr aufgeregt", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 28 /min\nSpO2: 79 %\nvertiefte Atmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 84 /min\nperipher kräftig tastbar\nRR: 149/066"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 833, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 606, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Pat. klagt über Atemnot\nPat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2377, "fields": {"code": 1037, "state_id": 735, "transition": 2287, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 73 /min\nperipher tastbar\nRR: 128/072"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2378, "fields": {"code": 1037, "state_id": 755, "transition": 2287, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 86 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 81 /min\nperipher kräftig tastbar\nRR: 141/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2379, "fields": {"code": 1037, "state_id": 551, "transition": 2310, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2380, "fields": {"code": 1037, "state_id": 552, "transition": 2309, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 126/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2381, "fields": {"code": 1037, "state_id": 553, "transition": 2308, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 121/064"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2382, "fields": {"code": 1037, "state_id": 554, "transition": 2307, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher tastbar\nRR: 127/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2383, "fields": {"code": 1037, "state_id": 555, "transition": 2295, "vital_signs": {"Haut": "trocken\nleichte Zyanose", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 81 %\nBeatmung\nGiemen und Brummen\nsehr leises AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 86 /min\nperipher kräftig tastbar\nRR: 142/065"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 608, "BGA-SBH": 663, "Infarkt": 135, "Gerinnung": 103, "Trauma-CT": 152, "Rö-Thorax": 375, "Ultraschall": 571, "Rö-Extremitäten": 525}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2384, "fields": {"code": 1038, "state_id": 101, "transition": 2327, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2385, "fields": {"code": 1038, "state_id": 351, "transition": 2325, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2386, "fields": {"code": 1038, "state_id": 352, "transition": 2323, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2387, "fields": {"code": 1038, "state_id": 353, "transition": 2321, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2388, "fields": {"code": 1038, "state_id": 354, "transition": 2319, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2389, "fields": {"code": 1038, "state_id": 355, "transition": 2317, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2390, "fields": {"code": 1038, "state_id": 356, "transition": 2315, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2391, "fields": {"code": 1038, "state_id": 357, "transition": 2313, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2392, "fields": {"code": 1038, "state_id": 358, "transition": 2311, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2393, "fields": {"code": 1038, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2394, "fields": {"code": 1038, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2395, "fields": {"code": 1038, "state_id": 758, "transition": 2311, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2396, "fields": {"code": 1038, "state_id": 757, "transition": 2313, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2397, "fields": {"code": 1038, "state_id": 756, "transition": 2315, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2398, "fields": {"code": 1038, "state_id": 755, "transition": 2317, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2399, "fields": {"code": 1038, "state_id": 754, "transition": 2319, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2400, "fields": {"code": 1038, "state_id": 753, "transition": 2321, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2401, "fields": {"code": 1038, "state_id": 752, "transition": 2323, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2402, "fields": {"code": 1038, "state_id": 751, "transition": 2325, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2403, "fields": {"code": 1038, "state_id": 551, "transition": 2327, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2404, "fields": {"code": 1039, "state_id": 101, "transition": 2345, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2405, "fields": {"code": 1039, "state_id": 351, "transition": 2343, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2406, "fields": {"code": 1039, "state_id": 352, "transition": 2341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2407, "fields": {"code": 1039, "state_id": 353, "transition": 2339, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2408, "fields": {"code": 1039, "state_id": 354, "transition": 2337, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2409, "fields": {"code": 1039, "state_id": 355, "transition": 2335, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2410, "fields": {"code": 1039, "state_id": 356, "transition": 2333, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2411, "fields": {"code": 1039, "state_id": 357, "transition": 2331, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2412, "fields": {"code": 1039, "state_id": 358, "transition": 2329, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2413, "fields": {"code": 1039, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2414, "fields": {"code": 1039, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2415, "fields": {"code": 1039, "state_id": 758, "transition": 2329, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2416, "fields": {"code": 1039, "state_id": 757, "transition": 2331, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2417, "fields": {"code": 1039, "state_id": 756, "transition": 2333, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2418, "fields": {"code": 1039, "state_id": 755, "transition": 2335, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2419, "fields": {"code": 1039, "state_id": 754, "transition": 2337, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2420, "fields": {"code": 1039, "state_id": 753, "transition": 2339, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2421, "fields": {"code": 1039, "state_id": 752, "transition": 2341, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2422, "fields": {"code": 1039, "state_id": 751, "transition": 2343, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2423, "fields": {"code": 1039, "state_id": 551, "transition": 2345, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 174, "Rö-Thorax": 361, "Ultraschall": 615, "Rö-Extremitäten": 523}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2424, "fields": {"code": 1040, "state_id": 101, "transition": 2363, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2425, "fields": {"code": 1040, "state_id": 351, "transition": 2361, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 129/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2426, "fields": {"code": 1040, "state_id": 352, "transition": 2359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 135/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2427, "fields": {"code": 1040, "state_id": 353, "transition": 2357, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 130/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2428, "fields": {"code": 1040, "state_id": 354, "transition": 2355, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 136/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2429, "fields": {"code": 1040, "state_id": 355, "transition": 2353, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 131/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2430, "fields": {"code": 1040, "state_id": 356, "transition": 2351, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 137/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2431, "fields": {"code": 1040, "state_id": 357, "transition": 2349, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 132/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2432, "fields": {"code": 1040, "state_id": 358, "transition": 2347, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 138/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 820, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2433, "fields": {"code": 1040, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 13 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 72 /min\nperipher kräftig tastbar\nRR: 133/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2434, "fields": {"code": 1040, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 128/071"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2435, "fields": {"code": 1040, "state_id": 758, "transition": 2347, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 133/074"}, "examination_codes": {"BZ": 919, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2436, "fields": {"code": 1040, "state_id": 757, "transition": 2349, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 127/070"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2437, "fields": {"code": 1040, "state_id": 756, "transition": 2351, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 132/073"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2438, "fields": {"code": 1040, "state_id": 755, "transition": 2353, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 126/069"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2439, "fields": {"code": 1040, "state_id": 754, "transition": 2355, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 131/072"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2440, "fields": {"code": 1040, "state_id": 753, "transition": 2357, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 125/068"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2441, "fields": {"code": 1040, "state_id": 752, "transition": 2359, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 76 /min\nperipher kräftig tastbar\nRR: 130/071"}, "examination_codes": {"BZ": 926, "Hb": 423, "EKG": 722, "ZVD": 803, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2442, "fields": {"code": 1040, "state_id": 751, "transition": 2361, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 124/067"}, "examination_codes": {"BZ": 912, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2443, "fields": {"code": 1040, "state_id": 551, "transition": 2363, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 72 /min\nperipher tastbar\nRR: 120/063"}, "examination_codes": {"BZ": 906, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2444, "fields": {"code": 1041, "state_id": 101, "transition": 2393, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 161/091"}, "examination_codes": {"BZ": 907, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2445, "fields": {"code": 1041, "state_id": 102, "transition": 2392, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 167/095"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2446, "fields": {"code": 1041, "state_id": 103, "transition": 2391, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 162/092"}, "examination_codes": {"BZ": 907, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2447, "fields": {"code": 1041, "state_id": 104, "transition": 2390, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 168/096"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2448, "fields": {"code": 1041, "state_id": 105, "transition": 2389, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "unauffällig", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 18 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "wach, orientiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 163/093"}, "examination_codes": {"BZ": 907, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen\nMonitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2449, "fields": {"code": 1041, "state_id": 106, "transition": 2383, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, gezielte Abwehr", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 169/097"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2450, "fields": {"code": 1041, "state_id": 236, "transition": 2377, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 173/101"}, "examination_codes": {"BZ": 904, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2451, "fields": {"code": 1041, "state_id": 237, "transition": 2371, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 168/098"}, "examination_codes": {"BZ": 908, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2452, "fields": {"code": 1041, "state_id": 238, "transition": 2365, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 174/102"}, "examination_codes": {"BZ": 909, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2453, "fields": {"code": 1041, "state_id": 239, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 169/099"}, "examination_codes": {"BZ": 908, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2454, "fields": {"code": 1041, "state_id": 279, "transition": 1, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 181/103"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2455, "fields": {"code": 1041, "state_id": 319, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 169/099"}, "examination_codes": {"BZ": 908, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2456, "fields": {"code": 1041, "state_id": 359, "transition": 1, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "keine Reaktion", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 181/103"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2457, "fields": {"code": 1041, "state_id": 719, "transition": 1, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 169/099"}, "examination_codes": {"BZ": 908, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2458, "fields": {"code": 1041, "state_id": 759, "transition": 1, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 181/103"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2459, "fields": {"code": 1041, "state_id": 278, "transition": 2365, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "bewusstlos, Streckkrämpfe auf Schmerzreiz", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 183/105"}, "examination_codes": {"BZ": 945, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2460, "fields": {"code": 1041, "state_id": 318, "transition": 2365, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 174/102"}, "examination_codes": {"BZ": 909, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2461, "fields": {"code": 1041, "state_id": 358, "transition": 2365, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, Streckkrämpfe auf Schmerzreiz", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 183/105"}, "examination_codes": {"BZ": 945, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2462, "fields": {"code": 1041, "state_id": 718, "transition": 2365, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 174/102"}, "examination_codes": {"BZ": 909, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2463, "fields": {"code": 1041, "state_id": 758, "transition": 2365, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 183/105"}, "examination_codes": {"BZ": 945, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2464, "fields": {"code": 1041, "state_id": 277, "transition": 2371, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "bewusstlos, Beugekrämpfe auf Schmerzreiz", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 174/100"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2465, "fields": {"code": 1041, "state_id": 317, "transition": 2371, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 168/098"}, "examination_codes": {"BZ": 908, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2466, "fields": {"code": 1041, "state_id": 357, "transition": 2371, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 17 /min\nSpO2: 98 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, Beugekrämpfe auf Schmerzreiz", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 174/100"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2467, "fields": {"code": 1041, "state_id": 717, "transition": 2371, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 168/098"}, "examination_codes": {"BZ": 908, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2468, "fields": {"code": 1041, "state_id": 757, "transition": 2371, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 174/100"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2469, "fields": {"code": 1041, "state_id": 276, "transition": 2377, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 13 /min\nSpO2: 100 %\nnormales AG hörbar", "Bewusstsein": "bewusstlos, Beugeabwehr", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 176/102"}, "examination_codes": {"BZ": 945, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2470, "fields": {"code": 1041, "state_id": 316, "transition": 2377, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "freie Atemwege", "Psyche": "verlangsamt", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nnormales AG hörbar", "Bewusstsein": "wach, nicht orientiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 173/101"}, "examination_codes": {"BZ": 904, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Pat. hat keine Schmerzen", "is_dead": false}}, {"model": "template.patientstate", "pk": 2471, "fields": {"code": 1041, "state_id": 356, "transition": 2377, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "freie Atemwege", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 17 /min\nSpO2: 99 %\nvertiefte Atmung\nnormales AG hörbar", "Bewusstsein": "bewusstlos, Beugeabwehr", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 176/102"}, "examination_codes": {"BZ": 945, "Hb": 423, "EKG": 722, "ZVD": 812, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2472, "fields": {"code": 1041, "state_id": 716, "transition": 2377, "vital_signs": {"Haut": "trocken\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 83 /min\nperipher kräftig tastbar\nRR: 173/101"}, "examination_codes": {"BZ": 904, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2473, "fields": {"code": 1041, "state_id": 756, "transition": 2377, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 100 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 176/102"}, "examination_codes": {"BZ": 945, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.patientstate", "pk": 2474, "fields": {"code": 1041, "state_id": 551, "transition": 2398, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 161/091"}, "examination_codes": {"BZ": 907, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2475, "fields": {"code": 1041, "state_id": 552, "transition": 2397, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 167/095"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2476, "fields": {"code": 1041, "state_id": 553, "transition": 2396, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 162/092"}, "examination_codes": {"BZ": 907, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2477, "fields": {"code": 1041, "state_id": 554, "transition": 2395, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 168/096"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2478, "fields": {"code": 1041, "state_id": 555, "transition": 2394, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "mittelweit", "Breathing": "Atemfreq: 15 /min\nSpO2: 98 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 54 /min\nperipher kräftig tastbar\nRR: 163/093"}, "examination_codes": {"BZ": 907, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "Monitoralarm / Pat. verschlechtert sich klinisch", "is_dead": false}}, {"model": "template.patientstate", "pk": 2479, "fields": {"code": 1041, "state_id": 556, "transition": 2383, "vital_signs": {"Haut": "feucht\nrosig", "Airway": "künstlicher Atemweg", "Psyche": "", "Pupillen": "weit", "Breathing": "Atemfreq: 15 /min\nSpO2: 99 %\nBeatmung\nnormales AG hörbar", "Bewusstsein": "narkotisiert", "Circulation": "Herzfreq: 92 /min\nperipher kräftig tastbar\nRR: 169/097"}, "examination_codes": {"BZ": 947, "Hb": 423, "EKG": 722, "ZVD": 801, "Leber": 117, "Niere": 126, "Lactat": 345, "BGA-Oxy": 612, "BGA-SBH": 656, "Infarkt": 135, "Gerinnung": 104, "Trauma-CT": 242, "Rö-Thorax": 418, "Ultraschall": 615, "Rö-Extremitäten": 617}, "special_events": "", "is_dead": false}}, {"model": "template.statetransition", "pk": 1, "fields": {"resulting_state": null, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2, "fields": {"resulting_state": 10, "next_state_transition": 3}}, {"model": "template.statetransition", "pk": 3, "fields": {"resulting_state": 11, "next_state_transition": 4}}, {"model": "template.statetransition", "pk": 4, "fields": {"resulting_state": 12, "next_state_transition": 5}}, {"model": "template.statetransition", "pk": 5, "fields": {"resulting_state": 13, "next_state_transition": 6}}, {"model": "template.statetransition", "pk": 6, "fields": {"resulting_state": 14, "next_state_transition": 7}}, {"model": "template.statetransition", "pk": 7, "fields": {"resulting_state": 15, "next_state_transition": 8}}, {"model": "template.statetransition", "pk": 8, "fields": {"resulting_state": 16, "next_state_transition": 9}}, {"model": "template.statetransition", "pk": 9, "fields": {"resulting_state": 17, "next_state_transition": 10}}, {"model": "template.statetransition", "pk": 10, "fields": {"resulting_state": 18, "next_state_transition": 11}}, {"model": "template.statetransition", "pk": 11, "fields": {"resulting_state": 19, "next_state_transition": 12}}, {"model": "template.statetransition", "pk": 12, "fields": {"resulting_state": 20, "next_state_transition": 13}}, {"model": "template.statetransition", "pk": 13, "fields": {"resulting_state": 21, "next_state_transition": 14}}, {"model": "template.statetransition", "pk": 14, "fields": {"resulting_state": 22, "next_state_transition": 15}}, {"model": "template.statetransition", "pk": 15, "fields": {"resulting_state": 23, "next_state_transition": 16}}, {"model": "template.statetransition", "pk": 16, "fields": {"resulting_state": 24, "next_state_transition": 17}}, {"model": "template.statetransition", "pk": 17, "fields": {"resulting_state": 25, "next_state_transition": 18}}, {"model": "template.statetransition", "pk": 18, "fields": {"resulting_state": 26, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 19, "fields": {"resulting_state": 9, "next_state_transition": 20}}, {"model": "template.statetransition", "pk": 20, "fields": {"resulting_state": 27, "next_state_transition": 21}}, {"model": "template.statetransition", "pk": 21, "fields": {"resulting_state": 28, "next_state_transition": 22}}, {"model": "template.statetransition", "pk": 22, "fields": {"resulting_state": 29, "next_state_transition": 23}}, {"model": "template.statetransition", "pk": 23, "fields": {"resulting_state": 30, "next_state_transition": 24}}, {"model": "template.statetransition", "pk": 24, "fields": {"resulting_state": 31, "next_state_transition": 25}}, {"model": "template.statetransition", "pk": 25, "fields": {"resulting_state": 32, "next_state_transition": 26}}, {"model": "template.statetransition", "pk": 26, "fields": {"resulting_state": 33, "next_state_transition": 27}}, {"model": "template.statetransition", "pk": 27, "fields": {"resulting_state": 34, "next_state_transition": 28}}, {"model": "template.statetransition", "pk": 28, "fields": {"resulting_state": 35, "next_state_transition": 29}}, {"model": "template.statetransition", "pk": 29, "fields": {"resulting_state": 36, "next_state_transition": 30}}, {"model": "template.statetransition", "pk": 30, "fields": {"resulting_state": 37, "next_state_transition": 31}}, {"model": "template.statetransition", "pk": 31, "fields": {"resulting_state": 38, "next_state_transition": 32}}, {"model": "template.statetransition", "pk": 32, "fields": {"resulting_state": 39, "next_state_transition": 33}}, {"model": "template.statetransition", "pk": 33, "fields": {"resulting_state": 40, "next_state_transition": 34}}, {"model": "template.statetransition", "pk": 34, "fields": {"resulting_state": 41, "next_state_transition": 35}}, {"model": "template.statetransition", "pk": 35, "fields": {"resulting_state": 42, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 36, "fields": {"resulting_state": 8, "next_state_transition": 37}}, {"model": "template.statetransition", "pk": 37, "fields": {"resulting_state": 43, "next_state_transition": 38}}, {"model": "template.statetransition", "pk": 38, "fields": {"resulting_state": 44, "next_state_transition": 39}}, {"model": "template.statetransition", "pk": 39, "fields": {"resulting_state": 45, "next_state_transition": 40}}, {"model": "template.statetransition", "pk": 40, "fields": {"resulting_state": 46, "next_state_transition": 41}}, {"model": "template.statetransition", "pk": 41, "fields": {"resulting_state": 47, "next_state_transition": 42}}, {"model": "template.statetransition", "pk": 42, "fields": {"resulting_state": 48, "next_state_transition": 43}}, {"model": "template.statetransition", "pk": 43, "fields": {"resulting_state": 49, "next_state_transition": 44}}, {"model": "template.statetransition", "pk": 44, "fields": {"resulting_state": 50, "next_state_transition": 45}}, {"model": "template.statetransition", "pk": 45, "fields": {"resulting_state": 51, "next_state_transition": 46}}, {"model": "template.statetransition", "pk": 46, "fields": {"resulting_state": 52, "next_state_transition": 47}}, {"model": "template.statetransition", "pk": 47, "fields": {"resulting_state": 53, "next_state_transition": 48}}, {"model": "template.statetransition", "pk": 48, "fields": {"resulting_state": 54, "next_state_transition": 49}}, {"model": "template.statetransition", "pk": 49, "fields": {"resulting_state": 55, "next_state_transition": 50}}, {"model": "template.statetransition", "pk": 50, "fields": {"resulting_state": 56, "next_state_transition": 51}}, {"model": "template.statetransition", "pk": 51, "fields": {"resulting_state": 57, "next_state_transition": 52}}, {"model": "template.statetransition", "pk": 52, "fields": {"resulting_state": 58, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 53, "fields": {"resulting_state": 7, "next_state_transition": 54}}, {"model": "template.statetransition", "pk": 54, "fields": {"resulting_state": 59, "next_state_transition": 55}}, {"model": "template.statetransition", "pk": 55, "fields": {"resulting_state": 60, "next_state_transition": 56}}, {"model": "template.statetransition", "pk": 56, "fields": {"resulting_state": 61, "next_state_transition": 57}}, {"model": "template.statetransition", "pk": 57, "fields": {"resulting_state": 62, "next_state_transition": 58}}, {"model": "template.statetransition", "pk": 58, "fields": {"resulting_state": 63, "next_state_transition": 59}}, {"model": "template.statetransition", "pk": 59, "fields": {"resulting_state": 64, "next_state_transition": 60}}, {"model": "template.statetransition", "pk": 60, "fields": {"resulting_state": 65, "next_state_transition": 61}}, {"model": "template.statetransition", "pk": 61, "fields": {"resulting_state": 66, "next_state_transition": 62}}, {"model": "template.statetransition", "pk": 62, "fields": {"resulting_state": 67, "next_state_transition": 63}}, {"model": "template.statetransition", "pk": 63, "fields": {"resulting_state": 68, "next_state_transition": 64}}, {"model": "template.statetransition", "pk": 64, "fields": {"resulting_state": 69, "next_state_transition": 65}}, {"model": "template.statetransition", "pk": 65, "fields": {"resulting_state": 70, "next_state_transition": 66}}, {"model": "template.statetransition", "pk": 66, "fields": {"resulting_state": 71, "next_state_transition": 67}}, {"model": "template.statetransition", "pk": 67, "fields": {"resulting_state": 72, "next_state_transition": 68}}, {"model": "template.statetransition", "pk": 68, "fields": {"resulting_state": 73, "next_state_transition": 69}}, {"model": "template.statetransition", "pk": 69, "fields": {"resulting_state": 74, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 70, "fields": {"resulting_state": 6, "next_state_transition": 71}}, {"model": "template.statetransition", "pk": 71, "fields": {"resulting_state": 75, "next_state_transition": 72}}, {"model": "template.statetransition", "pk": 72, "fields": {"resulting_state": 76, "next_state_transition": 73}}, {"model": "template.statetransition", "pk": 73, "fields": {"resulting_state": 77, "next_state_transition": 74}}, {"model": "template.statetransition", "pk": 74, "fields": {"resulting_state": 78, "next_state_transition": 75}}, {"model": "template.statetransition", "pk": 75, "fields": {"resulting_state": 79, "next_state_transition": 76}}, {"model": "template.statetransition", "pk": 76, "fields": {"resulting_state": 80, "next_state_transition": 77}}, {"model": "template.statetransition", "pk": 77, "fields": {"resulting_state": 81, "next_state_transition": 78}}, {"model": "template.statetransition", "pk": 78, "fields": {"resulting_state": 82, "next_state_transition": 79}}, {"model": "template.statetransition", "pk": 79, "fields": {"resulting_state": 83, "next_state_transition": 80}}, {"model": "template.statetransition", "pk": 80, "fields": {"resulting_state": 84, "next_state_transition": 81}}, {"model": "template.statetransition", "pk": 81, "fields": {"resulting_state": 85, "next_state_transition": 82}}, {"model": "template.statetransition", "pk": 82, "fields": {"resulting_state": 86, "next_state_transition": 83}}, {"model": "template.statetransition", "pk": 83, "fields": {"resulting_state": 87, "next_state_transition": 84}}, {"model": "template.statetransition", "pk": 84, "fields": {"resulting_state": 88, "next_state_transition": 85}}, {"model": "template.statetransition", "pk": 85, "fields": {"resulting_state": 89, "next_state_transition": 86}}, {"model": "template.statetransition", "pk": 86, "fields": {"resulting_state": 90, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 87, "fields": {"resulting_state": 5, "next_state_transition": 88}}, {"model": "template.statetransition", "pk": 88, "fields": {"resulting_state": 91, "next_state_transition": 89}}, {"model": "template.statetransition", "pk": 89, "fields": {"resulting_state": 92, "next_state_transition": 90}}, {"model": "template.statetransition", "pk": 90, "fields": {"resulting_state": 93, "next_state_transition": 91}}, {"model": "template.statetransition", "pk": 91, "fields": {"resulting_state": 94, "next_state_transition": 92}}, {"model": "template.statetransition", "pk": 92, "fields": {"resulting_state": 95, "next_state_transition": 93}}, {"model": "template.statetransition", "pk": 93, "fields": {"resulting_state": 96, "next_state_transition": 94}}, {"model": "template.statetransition", "pk": 94, "fields": {"resulting_state": 97, "next_state_transition": 95}}, {"model": "template.statetransition", "pk": 95, "fields": {"resulting_state": 98, "next_state_transition": 96}}, {"model": "template.statetransition", "pk": 96, "fields": {"resulting_state": 99, "next_state_transition": 97}}, {"model": "template.statetransition", "pk": 97, "fields": {"resulting_state": 100, "next_state_transition": 98}}, {"model": "template.statetransition", "pk": 98, "fields": {"resulting_state": 101, "next_state_transition": 99}}, {"model": "template.statetransition", "pk": 99, "fields": {"resulting_state": 102, "next_state_transition": 100}}, {"model": "template.statetransition", "pk": 100, "fields": {"resulting_state": 103, "next_state_transition": 101}}, {"model": "template.statetransition", "pk": 101, "fields": {"resulting_state": 104, "next_state_transition": 102}}, {"model": "template.statetransition", "pk": 102, "fields": {"resulting_state": 105, "next_state_transition": 103}}, {"model": "template.statetransition", "pk": 103, "fields": {"resulting_state": 106, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 104, "fields": {"resulting_state": 4, "next_state_transition": 105}}, {"model": "template.statetransition", "pk": 105, "fields": {"resulting_state": 107, "next_state_transition": 106}}, {"model": "template.statetransition", "pk": 106, "fields": {"resulting_state": 108, "next_state_transition": 107}}, {"model": "template.statetransition", "pk": 107, "fields": {"resulting_state": 109, "next_state_transition": 108}}, {"model": "template.statetransition", "pk": 108, "fields": {"resulting_state": 110, "next_state_transition": 109}}, {"model": "template.statetransition", "pk": 109, "fields": {"resulting_state": 111, "next_state_transition": 110}}, {"model": "template.statetransition", "pk": 110, "fields": {"resulting_state": 112, "next_state_transition": 111}}, {"model": "template.statetransition", "pk": 111, "fields": {"resulting_state": 113, "next_state_transition": 112}}, {"model": "template.statetransition", "pk": 112, "fields": {"resulting_state": 114, "next_state_transition": 113}}, {"model": "template.statetransition", "pk": 113, "fields": {"resulting_state": 115, "next_state_transition": 114}}, {"model": "template.statetransition", "pk": 114, "fields": {"resulting_state": 116, "next_state_transition": 115}}, {"model": "template.statetransition", "pk": 115, "fields": {"resulting_state": 117, "next_state_transition": 116}}, {"model": "template.statetransition", "pk": 116, "fields": {"resulting_state": 118, "next_state_transition": 117}}, {"model": "template.statetransition", "pk": 117, "fields": {"resulting_state": 119, "next_state_transition": 118}}, {"model": "template.statetransition", "pk": 118, "fields": {"resulting_state": 120, "next_state_transition": 119}}, {"model": "template.statetransition", "pk": 119, "fields": {"resulting_state": 121, "next_state_transition": 120}}, {"model": "template.statetransition", "pk": 120, "fields": {"resulting_state": 122, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 121, "fields": {"resulting_state": 3, "next_state_transition": 122}}, {"model": "template.statetransition", "pk": 122, "fields": {"resulting_state": 123, "next_state_transition": 123}}, {"model": "template.statetransition", "pk": 123, "fields": {"resulting_state": 124, "next_state_transition": 124}}, {"model": "template.statetransition", "pk": 124, "fields": {"resulting_state": 125, "next_state_transition": 125}}, {"model": "template.statetransition", "pk": 125, "fields": {"resulting_state": 126, "next_state_transition": 126}}, {"model": "template.statetransition", "pk": 126, "fields": {"resulting_state": 127, "next_state_transition": 127}}, {"model": "template.statetransition", "pk": 127, "fields": {"resulting_state": 128, "next_state_transition": 128}}, {"model": "template.statetransition", "pk": 128, "fields": {"resulting_state": 129, "next_state_transition": 129}}, {"model": "template.statetransition", "pk": 129, "fields": {"resulting_state": 130, "next_state_transition": 130}}, {"model": "template.statetransition", "pk": 130, "fields": {"resulting_state": 131, "next_state_transition": 131}}, {"model": "template.statetransition", "pk": 131, "fields": {"resulting_state": 132, "next_state_transition": 132}}, {"model": "template.statetransition", "pk": 132, "fields": {"resulting_state": 133, "next_state_transition": 133}}, {"model": "template.statetransition", "pk": 133, "fields": {"resulting_state": 134, "next_state_transition": 134}}, {"model": "template.statetransition", "pk": 134, "fields": {"resulting_state": 135, "next_state_transition": 135}}, {"model": "template.statetransition", "pk": 135, "fields": {"resulting_state": 136, "next_state_transition": 136}}, {"model": "template.statetransition", "pk": 136, "fields": {"resulting_state": 137, "next_state_transition": 137}}, {"model": "template.statetransition", "pk": 137, "fields": {"resulting_state": 138, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 138, "fields": {"resulting_state": 2, "next_state_transition": 139}}, {"model": "template.statetransition", "pk": 139, "fields": {"resulting_state": 139, "next_state_transition": 140}}, {"model": "template.statetransition", "pk": 140, "fields": {"resulting_state": 140, "next_state_transition": 141}}, {"model": "template.statetransition", "pk": 141, "fields": {"resulting_state": 141, "next_state_transition": 142}}, {"model": "template.statetransition", "pk": 142, "fields": {"resulting_state": 142, "next_state_transition": 143}}, {"model": "template.statetransition", "pk": 143, "fields": {"resulting_state": 143, "next_state_transition": 144}}, {"model": "template.statetransition", "pk": 144, "fields": {"resulting_state": 144, "next_state_transition": 145}}, {"model": "template.statetransition", "pk": 145, "fields": {"resulting_state": 145, "next_state_transition": 146}}, {"model": "template.statetransition", "pk": 146, "fields": {"resulting_state": 146, "next_state_transition": 147}}, {"model": "template.statetransition", "pk": 147, "fields": {"resulting_state": 147, "next_state_transition": 148}}, {"model": "template.statetransition", "pk": 148, "fields": {"resulting_state": 148, "next_state_transition": 149}}, {"model": "template.statetransition", "pk": 149, "fields": {"resulting_state": 149, "next_state_transition": 150}}, {"model": "template.statetransition", "pk": 150, "fields": {"resulting_state": 150, "next_state_transition": 151}}, {"model": "template.statetransition", "pk": 151, "fields": {"resulting_state": 151, "next_state_transition": 152}}, {"model": "template.statetransition", "pk": 152, "fields": {"resulting_state": 152, "next_state_transition": 153}}, {"model": "template.statetransition", "pk": 153, "fields": {"resulting_state": 153, "next_state_transition": 154}}, {"model": "template.statetransition", "pk": 154, "fields": {"resulting_state": 154, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 155, "fields": {"resulting_state": 165, "next_state_transition": 158}}, {"model": "template.statetransition", "pk": 156, "fields": {"resulting_state": 168, "next_state_transition": 155}}, {"model": "template.statetransition", "pk": 157, "fields": {"resulting_state": 167, "next_state_transition": 155}}, {"model": "template.statetransition", "pk": 158, "fields": {"resulting_state": 166, "next_state_transition": 159}}, {"model": "template.statetransition", "pk": 159, "fields": {"resulting_state": 169, "next_state_transition": 160}}, {"model": "template.statetransition", "pk": 160, "fields": {"resulting_state": 170, "next_state_transition": 161}}, {"model": "template.statetransition", "pk": 161, "fields": {"resulting_state": 171, "next_state_transition": 162}}, {"model": "template.statetransition", "pk": 162, "fields": {"resulting_state": 172, "next_state_transition": 163}}, {"model": "template.statetransition", "pk": 163, "fields": {"resulting_state": 173, "next_state_transition": 164}}, {"model": "template.statetransition", "pk": 164, "fields": {"resulting_state": 174, "next_state_transition": 165}}, {"model": "template.statetransition", "pk": 165, "fields": {"resulting_state": 175, "next_state_transition": 166}}, {"model": "template.statetransition", "pk": 166, "fields": {"resulting_state": 176, "next_state_transition": 167}}, {"model": "template.statetransition", "pk": 167, "fields": {"resulting_state": 177, "next_state_transition": 168}}, {"model": "template.statetransition", "pk": 168, "fields": {"resulting_state": 178, "next_state_transition": 169}}, {"model": "template.statetransition", "pk": 169, "fields": {"resulting_state": 179, "next_state_transition": 170}}, {"model": "template.statetransition", "pk": 170, "fields": {"resulting_state": 180, "next_state_transition": 171}}, {"model": "template.statetransition", "pk": 171, "fields": {"resulting_state": 181, "next_state_transition": 172}}, {"model": "template.statetransition", "pk": 172, "fields": {"resulting_state": 182, "next_state_transition": 173}}, {"model": "template.statetransition", "pk": 173, "fields": {"resulting_state": 183, "next_state_transition": 174}}, {"model": "template.statetransition", "pk": 174, "fields": {"resulting_state": 184, "next_state_transition": 175}}, {"model": "template.statetransition", "pk": 175, "fields": {"resulting_state": 185, "next_state_transition": 176}}, {"model": "template.statetransition", "pk": 176, "fields": {"resulting_state": 186, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 177, "fields": {"resulting_state": 164, "next_state_transition": 178}}, {"model": "template.statetransition", "pk": 178, "fields": {"resulting_state": 187, "next_state_transition": 179}}, {"model": "template.statetransition", "pk": 179, "fields": {"resulting_state": 188, "next_state_transition": 180}}, {"model": "template.statetransition", "pk": 180, "fields": {"resulting_state": 189, "next_state_transition": 181}}, {"model": "template.statetransition", "pk": 181, "fields": {"resulting_state": 190, "next_state_transition": 182}}, {"model": "template.statetransition", "pk": 182, "fields": {"resulting_state": 191, "next_state_transition": 183}}, {"model": "template.statetransition", "pk": 183, "fields": {"resulting_state": 192, "next_state_transition": 184}}, {"model": "template.statetransition", "pk": 184, "fields": {"resulting_state": 193, "next_state_transition": 185}}, {"model": "template.statetransition", "pk": 185, "fields": {"resulting_state": 194, "next_state_transition": 186}}, {"model": "template.statetransition", "pk": 186, "fields": {"resulting_state": 195, "next_state_transition": 187}}, {"model": "template.statetransition", "pk": 187, "fields": {"resulting_state": 196, "next_state_transition": 188}}, {"model": "template.statetransition", "pk": 188, "fields": {"resulting_state": 197, "next_state_transition": 189}}, {"model": "template.statetransition", "pk": 189, "fields": {"resulting_state": 198, "next_state_transition": 190}}, {"model": "template.statetransition", "pk": 190, "fields": {"resulting_state": 199, "next_state_transition": 191}}, {"model": "template.statetransition", "pk": 191, "fields": {"resulting_state": 200, "next_state_transition": 192}}, {"model": "template.statetransition", "pk": 192, "fields": {"resulting_state": 201, "next_state_transition": 193}}, {"model": "template.statetransition", "pk": 193, "fields": {"resulting_state": 202, "next_state_transition": 194}}, {"model": "template.statetransition", "pk": 194, "fields": {"resulting_state": 203, "next_state_transition": 195}}, {"model": "template.statetransition", "pk": 195, "fields": {"resulting_state": 204, "next_state_transition": 196}}, {"model": "template.statetransition", "pk": 196, "fields": {"resulting_state": 205, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 197, "fields": {"resulting_state": 163, "next_state_transition": 198}}, {"model": "template.statetransition", "pk": 198, "fields": {"resulting_state": 206, "next_state_transition": 199}}, {"model": "template.statetransition", "pk": 199, "fields": {"resulting_state": 207, "next_state_transition": 200}}, {"model": "template.statetransition", "pk": 200, "fields": {"resulting_state": 208, "next_state_transition": 201}}, {"model": "template.statetransition", "pk": 201, "fields": {"resulting_state": 209, "next_state_transition": 202}}, {"model": "template.statetransition", "pk": 202, "fields": {"resulting_state": 210, "next_state_transition": 203}}, {"model": "template.statetransition", "pk": 203, "fields": {"resulting_state": 211, "next_state_transition": 204}}, {"model": "template.statetransition", "pk": 204, "fields": {"resulting_state": 212, "next_state_transition": 205}}, {"model": "template.statetransition", "pk": 205, "fields": {"resulting_state": 213, "next_state_transition": 206}}, {"model": "template.statetransition", "pk": 206, "fields": {"resulting_state": 214, "next_state_transition": 207}}, {"model": "template.statetransition", "pk": 207, "fields": {"resulting_state": 215, "next_state_transition": 208}}, {"model": "template.statetransition", "pk": 208, "fields": {"resulting_state": 216, "next_state_transition": 209}}, {"model": "template.statetransition", "pk": 209, "fields": {"resulting_state": 217, "next_state_transition": 210}}, {"model": "template.statetransition", "pk": 210, "fields": {"resulting_state": 218, "next_state_transition": 211}}, {"model": "template.statetransition", "pk": 211, "fields": {"resulting_state": 219, "next_state_transition": 212}}, {"model": "template.statetransition", "pk": 212, "fields": {"resulting_state": 220, "next_state_transition": 213}}, {"model": "template.statetransition", "pk": 213, "fields": {"resulting_state": 221, "next_state_transition": 214}}, {"model": "template.statetransition", "pk": 214, "fields": {"resulting_state": 222, "next_state_transition": 215}}, {"model": "template.statetransition", "pk": 215, "fields": {"resulting_state": 223, "next_state_transition": 216}}, {"model": "template.statetransition", "pk": 216, "fields": {"resulting_state": 224, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 217, "fields": {"resulting_state": 162, "next_state_transition": 218}}, {"model": "template.statetransition", "pk": 218, "fields": {"resulting_state": 225, "next_state_transition": 219}}, {"model": "template.statetransition", "pk": 219, "fields": {"resulting_state": 226, "next_state_transition": 220}}, {"model": "template.statetransition", "pk": 220, "fields": {"resulting_state": 227, "next_state_transition": 221}}, {"model": "template.statetransition", "pk": 221, "fields": {"resulting_state": 228, "next_state_transition": 222}}, {"model": "template.statetransition", "pk": 222, "fields": {"resulting_state": 229, "next_state_transition": 223}}, {"model": "template.statetransition", "pk": 223, "fields": {"resulting_state": 230, "next_state_transition": 224}}, {"model": "template.statetransition", "pk": 224, "fields": {"resulting_state": 231, "next_state_transition": 225}}, {"model": "template.statetransition", "pk": 225, "fields": {"resulting_state": 232, "next_state_transition": 226}}, {"model": "template.statetransition", "pk": 226, "fields": {"resulting_state": 233, "next_state_transition": 227}}, {"model": "template.statetransition", "pk": 227, "fields": {"resulting_state": 234, "next_state_transition": 228}}, {"model": "template.statetransition", "pk": 228, "fields": {"resulting_state": 235, "next_state_transition": 229}}, {"model": "template.statetransition", "pk": 229, "fields": {"resulting_state": 236, "next_state_transition": 230}}, {"model": "template.statetransition", "pk": 230, "fields": {"resulting_state": 237, "next_state_transition": 231}}, {"model": "template.statetransition", "pk": 231, "fields": {"resulting_state": 238, "next_state_transition": 232}}, {"model": "template.statetransition", "pk": 232, "fields": {"resulting_state": 239, "next_state_transition": 233}}, {"model": "template.statetransition", "pk": 233, "fields": {"resulting_state": 240, "next_state_transition": 234}}, {"model": "template.statetransition", "pk": 234, "fields": {"resulting_state": 241, "next_state_transition": 235}}, {"model": "template.statetransition", "pk": 235, "fields": {"resulting_state": 242, "next_state_transition": 236}}, {"model": "template.statetransition", "pk": 236, "fields": {"resulting_state": 243, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 237, "fields": {"resulting_state": 161, "next_state_transition": 238}}, {"model": "template.statetransition", "pk": 238, "fields": {"resulting_state": 244, "next_state_transition": 239}}, {"model": "template.statetransition", "pk": 239, "fields": {"resulting_state": 245, "next_state_transition": 240}}, {"model": "template.statetransition", "pk": 240, "fields": {"resulting_state": 246, "next_state_transition": 241}}, {"model": "template.statetransition", "pk": 241, "fields": {"resulting_state": 247, "next_state_transition": 242}}, {"model": "template.statetransition", "pk": 242, "fields": {"resulting_state": 248, "next_state_transition": 243}}, {"model": "template.statetransition", "pk": 243, "fields": {"resulting_state": 249, "next_state_transition": 244}}, {"model": "template.statetransition", "pk": 244, "fields": {"resulting_state": 250, "next_state_transition": 245}}, {"model": "template.statetransition", "pk": 245, "fields": {"resulting_state": 251, "next_state_transition": 246}}, {"model": "template.statetransition", "pk": 246, "fields": {"resulting_state": 252, "next_state_transition": 247}}, {"model": "template.statetransition", "pk": 247, "fields": {"resulting_state": 253, "next_state_transition": 248}}, {"model": "template.statetransition", "pk": 248, "fields": {"resulting_state": 254, "next_state_transition": 249}}, {"model": "template.statetransition", "pk": 249, "fields": {"resulting_state": 255, "next_state_transition": 250}}, {"model": "template.statetransition", "pk": 250, "fields": {"resulting_state": 256, "next_state_transition": 251}}, {"model": "template.statetransition", "pk": 251, "fields": {"resulting_state": 257, "next_state_transition": 252}}, {"model": "template.statetransition", "pk": 252, "fields": {"resulting_state": 258, "next_state_transition": 253}}, {"model": "template.statetransition", "pk": 253, "fields": {"resulting_state": 259, "next_state_transition": 254}}, {"model": "template.statetransition", "pk": 254, "fields": {"resulting_state": 260, "next_state_transition": 255}}, {"model": "template.statetransition", "pk": 255, "fields": {"resulting_state": 261, "next_state_transition": 256}}, {"model": "template.statetransition", "pk": 256, "fields": {"resulting_state": 262, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 257, "fields": {"resulting_state": 160, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 258, "fields": {"resulting_state": 159, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 259, "fields": {"resulting_state": 158, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 260, "fields": {"resulting_state": 157, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 261, "fields": {"resulting_state": 267, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 262, "fields": {"resulting_state": 266, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 263, "fields": {"resulting_state": 265, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 264, "fields": {"resulting_state": 264, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 265, "fields": {"resulting_state": 277, "next_state_transition": 266}}, {"model": "template.statetransition", "pk": 266, "fields": {"resulting_state": 278, "next_state_transition": 267}}, {"model": "template.statetransition", "pk": 267, "fields": {"resulting_state": 279, "next_state_transition": 268}}, {"model": "template.statetransition", "pk": 268, "fields": {"resulting_state": 280, "next_state_transition": 269}}, {"model": "template.statetransition", "pk": 269, "fields": {"resulting_state": 281, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 270, "fields": {"resulting_state": 276, "next_state_transition": 271}}, {"model": "template.statetransition", "pk": 271, "fields": {"resulting_state": 282, "next_state_transition": 272}}, {"model": "template.statetransition", "pk": 272, "fields": {"resulting_state": 283, "next_state_transition": 273}}, {"model": "template.statetransition", "pk": 273, "fields": {"resulting_state": 284, "next_state_transition": 274}}, {"model": "template.statetransition", "pk": 274, "fields": {"resulting_state": 285, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 275, "fields": {"resulting_state": 275, "next_state_transition": 276}}, {"model": "template.statetransition", "pk": 276, "fields": {"resulting_state": 286, "next_state_transition": 277}}, {"model": "template.statetransition", "pk": 277, "fields": {"resulting_state": 287, "next_state_transition": 278}}, {"model": "template.statetransition", "pk": 278, "fields": {"resulting_state": 288, "next_state_transition": 279}}, {"model": "template.statetransition", "pk": 279, "fields": {"resulting_state": 289, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 280, "fields": {"resulting_state": 274, "next_state_transition": 281}}, {"model": "template.statetransition", "pk": 281, "fields": {"resulting_state": 290, "next_state_transition": 282}}, {"model": "template.statetransition", "pk": 282, "fields": {"resulting_state": 291, "next_state_transition": 283}}, {"model": "template.statetransition", "pk": 283, "fields": {"resulting_state": 292, "next_state_transition": 284}}, {"model": "template.statetransition", "pk": 284, "fields": {"resulting_state": 293, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 285, "fields": {"resulting_state": 273, "next_state_transition": 286}}, {"model": "template.statetransition", "pk": 286, "fields": {"resulting_state": 294, "next_state_transition": 287}}, {"model": "template.statetransition", "pk": 287, "fields": {"resulting_state": 295, "next_state_transition": 288}}, {"model": "template.statetransition", "pk": 288, "fields": {"resulting_state": 296, "next_state_transition": 289}}, {"model": "template.statetransition", "pk": 289, "fields": {"resulting_state": 297, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 290, "fields": {"resulting_state": 272, "next_state_transition": 291}}, {"model": "template.statetransition", "pk": 291, "fields": {"resulting_state": 298, "next_state_transition": 292}}, {"model": "template.statetransition", "pk": 292, "fields": {"resulting_state": 299, "next_state_transition": 293}}, {"model": "template.statetransition", "pk": 293, "fields": {"resulting_state": 300, "next_state_transition": 294}}, {"model": "template.statetransition", "pk": 294, "fields": {"resulting_state": 301, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 295, "fields": {"resulting_state": 271, "next_state_transition": 296}}, {"model": "template.statetransition", "pk": 296, "fields": {"resulting_state": 302, "next_state_transition": 297}}, {"model": "template.statetransition", "pk": 297, "fields": {"resulting_state": 303, "next_state_transition": 298}}, {"model": "template.statetransition", "pk": 298, "fields": {"resulting_state": 304, "next_state_transition": 299}}, {"model": "template.statetransition", "pk": 299, "fields": {"resulting_state": 305, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 300, "fields": {"resulting_state": 270, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 301, "fields": {"resulting_state": 269, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 302, "fields": {"resulting_state": 308, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 303, "fields": {"resulting_state": 307, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 304, "fields": {"resulting_state": 318, "next_state_transition": 305}}, {"model": "template.statetransition", "pk": 305, "fields": {"resulting_state": 319, "next_state_transition": 306}}, {"model": "template.statetransition", "pk": 306, "fields": {"resulting_state": 320, "next_state_transition": 307}}, {"model": "template.statetransition", "pk": 307, "fields": {"resulting_state": 321, "next_state_transition": 308}}, {"model": "template.statetransition", "pk": 308, "fields": {"resulting_state": 322, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 309, "fields": {"resulting_state": 317, "next_state_transition": 310}}, {"model": "template.statetransition", "pk": 310, "fields": {"resulting_state": 323, "next_state_transition": 311}}, {"model": "template.statetransition", "pk": 311, "fields": {"resulting_state": 324, "next_state_transition": 312}}, {"model": "template.statetransition", "pk": 312, "fields": {"resulting_state": 325, "next_state_transition": 313}}, {"model": "template.statetransition", "pk": 313, "fields": {"resulting_state": 326, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 314, "fields": {"resulting_state": 316, "next_state_transition": 315}}, {"model": "template.statetransition", "pk": 315, "fields": {"resulting_state": 327, "next_state_transition": 316}}, {"model": "template.statetransition", "pk": 316, "fields": {"resulting_state": 328, "next_state_transition": 317}}, {"model": "template.statetransition", "pk": 317, "fields": {"resulting_state": 329, "next_state_transition": 318}}, {"model": "template.statetransition", "pk": 318, "fields": {"resulting_state": 330, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 319, "fields": {"resulting_state": 315, "next_state_transition": 320}}, {"model": "template.statetransition", "pk": 320, "fields": {"resulting_state": 331, "next_state_transition": 321}}, {"model": "template.statetransition", "pk": 321, "fields": {"resulting_state": 332, "next_state_transition": 322}}, {"model": "template.statetransition", "pk": 322, "fields": {"resulting_state": 333, "next_state_transition": 323}}, {"model": "template.statetransition", "pk": 323, "fields": {"resulting_state": 334, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 324, "fields": {"resulting_state": 314, "next_state_transition": 325}}, {"model": "template.statetransition", "pk": 325, "fields": {"resulting_state": 335, "next_state_transition": 326}}, {"model": "template.statetransition", "pk": 326, "fields": {"resulting_state": 336, "next_state_transition": 327}}, {"model": "template.statetransition", "pk": 327, "fields": {"resulting_state": 337, "next_state_transition": 328}}, {"model": "template.statetransition", "pk": 328, "fields": {"resulting_state": 338, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 329, "fields": {"resulting_state": 313, "next_state_transition": 330}}, {"model": "template.statetransition", "pk": 330, "fields": {"resulting_state": 339, "next_state_transition": 331}}, {"model": "template.statetransition", "pk": 331, "fields": {"resulting_state": 340, "next_state_transition": 332}}, {"model": "template.statetransition", "pk": 332, "fields": {"resulting_state": 341, "next_state_transition": 333}}, {"model": "template.statetransition", "pk": 333, "fields": {"resulting_state": 342, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 334, "fields": {"resulting_state": 312, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 335, "fields": {"resulting_state": 311, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 336, "fields": {"resulting_state": 310, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 337, "fields": {"resulting_state": 346, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 338, "fields": {"resulting_state": 345, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 339, "fields": {"resulting_state": 344, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 340, "fields": {"resulting_state": 349, "next_state_transition": 597}}, {"model": "template.statetransition", "pk": 341, "fields": {"resulting_state": 358, "next_state_transition": 342}}, {"model": "template.statetransition", "pk": 342, "fields": {"resulting_state": 359, "next_state_transition": 343}}, {"model": "template.statetransition", "pk": 343, "fields": {"resulting_state": 360, "next_state_transition": 344}}, {"model": "template.statetransition", "pk": 344, "fields": {"resulting_state": 361, "next_state_transition": 345}}, {"model": "template.statetransition", "pk": 345, "fields": {"resulting_state": 362, "next_state_transition": 346}}, {"model": "template.statetransition", "pk": 346, "fields": {"resulting_state": 363, "next_state_transition": 347}}, {"model": "template.statetransition", "pk": 347, "fields": {"resulting_state": 364, "next_state_transition": 348}}, {"model": "template.statetransition", "pk": 348, "fields": {"resulting_state": 365, "next_state_transition": 349}}, {"model": "template.statetransition", "pk": 349, "fields": {"resulting_state": 366, "next_state_transition": 350}}, {"model": "template.statetransition", "pk": 350, "fields": {"resulting_state": 367, "next_state_transition": 351}}, {"model": "template.statetransition", "pk": 351, "fields": {"resulting_state": 368, "next_state_transition": 352}}, {"model": "template.statetransition", "pk": 352, "fields": {"resulting_state": 369, "next_state_transition": 353}}, {"model": "template.statetransition", "pk": 353, "fields": {"resulting_state": 370, "next_state_transition": 354}}, {"model": "template.statetransition", "pk": 354, "fields": {"resulting_state": 371, "next_state_transition": 355}}, {"model": "template.statetransition", "pk": 355, "fields": {"resulting_state": 372, "next_state_transition": 356}}, {"model": "template.statetransition", "pk": 356, "fields": {"resulting_state": 373, "next_state_transition": 357}}, {"model": "template.statetransition", "pk": 357, "fields": {"resulting_state": 374, "next_state_transition": 358}}, {"model": "template.statetransition", "pk": 358, "fields": {"resulting_state": 375, "next_state_transition": 359}}, {"model": "template.statetransition", "pk": 359, "fields": {"resulting_state": 376, "next_state_transition": 360}}, {"model": "template.statetransition", "pk": 360, "fields": {"resulting_state": 377, "next_state_transition": 361}}, {"model": "template.statetransition", "pk": 361, "fields": {"resulting_state": 378, "next_state_transition": 362}}, {"model": "template.statetransition", "pk": 362, "fields": {"resulting_state": 379, "next_state_transition": 363}}, {"model": "template.statetransition", "pk": 363, "fields": {"resulting_state": 380, "next_state_transition": 364}}, {"model": "template.statetransition", "pk": 364, "fields": {"resulting_state": 381, "next_state_transition": 365}}, {"model": "template.statetransition", "pk": 365, "fields": {"resulting_state": 382, "next_state_transition": 366}}, {"model": "template.statetransition", "pk": 366, "fields": {"resulting_state": 383, "next_state_transition": 367}}, {"model": "template.statetransition", "pk": 367, "fields": {"resulting_state": 384, "next_state_transition": 368}}, {"model": "template.statetransition", "pk": 368, "fields": {"resulting_state": 385, "next_state_transition": 369}}, {"model": "template.statetransition", "pk": 369, "fields": {"resulting_state": 386, "next_state_transition": 370}}, {"model": "template.statetransition", "pk": 370, "fields": {"resulting_state": 387, "next_state_transition": 371}}, {"model": "template.statetransition", "pk": 371, "fields": {"resulting_state": 388, "next_state_transition": 372}}, {"model": "template.statetransition", "pk": 372, "fields": {"resulting_state": 389, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 373, "fields": {"resulting_state": 357, "next_state_transition": 374}}, {"model": "template.statetransition", "pk": 374, "fields": {"resulting_state": 390, "next_state_transition": 375}}, {"model": "template.statetransition", "pk": 375, "fields": {"resulting_state": 391, "next_state_transition": 376}}, {"model": "template.statetransition", "pk": 376, "fields": {"resulting_state": 392, "next_state_transition": 377}}, {"model": "template.statetransition", "pk": 377, "fields": {"resulting_state": 393, "next_state_transition": 378}}, {"model": "template.statetransition", "pk": 378, "fields": {"resulting_state": 394, "next_state_transition": 379}}, {"model": "template.statetransition", "pk": 379, "fields": {"resulting_state": 395, "next_state_transition": 380}}, {"model": "template.statetransition", "pk": 380, "fields": {"resulting_state": 396, "next_state_transition": 381}}, {"model": "template.statetransition", "pk": 381, "fields": {"resulting_state": 397, "next_state_transition": 382}}, {"model": "template.statetransition", "pk": 382, "fields": {"resulting_state": 398, "next_state_transition": 383}}, {"model": "template.statetransition", "pk": 383, "fields": {"resulting_state": 399, "next_state_transition": 384}}, {"model": "template.statetransition", "pk": 384, "fields": {"resulting_state": 400, "next_state_transition": 385}}, {"model": "template.statetransition", "pk": 385, "fields": {"resulting_state": 401, "next_state_transition": 386}}, {"model": "template.statetransition", "pk": 386, "fields": {"resulting_state": 402, "next_state_transition": 387}}, {"model": "template.statetransition", "pk": 387, "fields": {"resulting_state": 403, "next_state_transition": 388}}, {"model": "template.statetransition", "pk": 388, "fields": {"resulting_state": 404, "next_state_transition": 389}}, {"model": "template.statetransition", "pk": 389, "fields": {"resulting_state": 405, "next_state_transition": 390}}, {"model": "template.statetransition", "pk": 390, "fields": {"resulting_state": 406, "next_state_transition": 391}}, {"model": "template.statetransition", "pk": 391, "fields": {"resulting_state": 407, "next_state_transition": 392}}, {"model": "template.statetransition", "pk": 392, "fields": {"resulting_state": 408, "next_state_transition": 393}}, {"model": "template.statetransition", "pk": 393, "fields": {"resulting_state": 409, "next_state_transition": 394}}, {"model": "template.statetransition", "pk": 394, "fields": {"resulting_state": 410, "next_state_transition": 395}}, {"model": "template.statetransition", "pk": 395, "fields": {"resulting_state": 411, "next_state_transition": 396}}, {"model": "template.statetransition", "pk": 396, "fields": {"resulting_state": 412, "next_state_transition": 397}}, {"model": "template.statetransition", "pk": 397, "fields": {"resulting_state": 413, "next_state_transition": 398}}, {"model": "template.statetransition", "pk": 398, "fields": {"resulting_state": 414, "next_state_transition": 399}}, {"model": "template.statetransition", "pk": 399, "fields": {"resulting_state": 415, "next_state_transition": 400}}, {"model": "template.statetransition", "pk": 400, "fields": {"resulting_state": 416, "next_state_transition": 401}}, {"model": "template.statetransition", "pk": 401, "fields": {"resulting_state": 417, "next_state_transition": 402}}, {"model": "template.statetransition", "pk": 402, "fields": {"resulting_state": 418, "next_state_transition": 403}}, {"model": "template.statetransition", "pk": 403, "fields": {"resulting_state": 419, "next_state_transition": 404}}, {"model": "template.statetransition", "pk": 404, "fields": {"resulting_state": 420, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 405, "fields": {"resulting_state": 356, "next_state_transition": 406}}, {"model": "template.statetransition", "pk": 406, "fields": {"resulting_state": 421, "next_state_transition": 407}}, {"model": "template.statetransition", "pk": 407, "fields": {"resulting_state": 422, "next_state_transition": 408}}, {"model": "template.statetransition", "pk": 408, "fields": {"resulting_state": 423, "next_state_transition": 409}}, {"model": "template.statetransition", "pk": 409, "fields": {"resulting_state": 424, "next_state_transition": 410}}, {"model": "template.statetransition", "pk": 410, "fields": {"resulting_state": 425, "next_state_transition": 411}}, {"model": "template.statetransition", "pk": 411, "fields": {"resulting_state": 426, "next_state_transition": 412}}, {"model": "template.statetransition", "pk": 412, "fields": {"resulting_state": 427, "next_state_transition": 413}}, {"model": "template.statetransition", "pk": 413, "fields": {"resulting_state": 428, "next_state_transition": 414}}, {"model": "template.statetransition", "pk": 414, "fields": {"resulting_state": 429, "next_state_transition": 415}}, {"model": "template.statetransition", "pk": 415, "fields": {"resulting_state": 430, "next_state_transition": 416}}, {"model": "template.statetransition", "pk": 416, "fields": {"resulting_state": 431, "next_state_transition": 417}}, {"model": "template.statetransition", "pk": 417, "fields": {"resulting_state": 432, "next_state_transition": 418}}, {"model": "template.statetransition", "pk": 418, "fields": {"resulting_state": 433, "next_state_transition": 419}}, {"model": "template.statetransition", "pk": 419, "fields": {"resulting_state": 434, "next_state_transition": 420}}, {"model": "template.statetransition", "pk": 420, "fields": {"resulting_state": 435, "next_state_transition": 421}}, {"model": "template.statetransition", "pk": 421, "fields": {"resulting_state": 436, "next_state_transition": 422}}, {"model": "template.statetransition", "pk": 422, "fields": {"resulting_state": 437, "next_state_transition": 423}}, {"model": "template.statetransition", "pk": 423, "fields": {"resulting_state": 438, "next_state_transition": 424}}, {"model": "template.statetransition", "pk": 424, "fields": {"resulting_state": 439, "next_state_transition": 425}}, {"model": "template.statetransition", "pk": 425, "fields": {"resulting_state": 440, "next_state_transition": 426}}, {"model": "template.statetransition", "pk": 426, "fields": {"resulting_state": 441, "next_state_transition": 427}}, {"model": "template.statetransition", "pk": 427, "fields": {"resulting_state": 442, "next_state_transition": 428}}, {"model": "template.statetransition", "pk": 428, "fields": {"resulting_state": 443, "next_state_transition": 429}}, {"model": "template.statetransition", "pk": 429, "fields": {"resulting_state": 444, "next_state_transition": 430}}, {"model": "template.statetransition", "pk": 430, "fields": {"resulting_state": 445, "next_state_transition": 431}}, {"model": "template.statetransition", "pk": 431, "fields": {"resulting_state": 446, "next_state_transition": 432}}, {"model": "template.statetransition", "pk": 432, "fields": {"resulting_state": 447, "next_state_transition": 433}}, {"model": "template.statetransition", "pk": 433, "fields": {"resulting_state": 448, "next_state_transition": 434}}, {"model": "template.statetransition", "pk": 434, "fields": {"resulting_state": 449, "next_state_transition": 435}}, {"model": "template.statetransition", "pk": 435, "fields": {"resulting_state": 450, "next_state_transition": 436}}, {"model": "template.statetransition", "pk": 436, "fields": {"resulting_state": 451, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 437, "fields": {"resulting_state": 355, "next_state_transition": 438}}, {"model": "template.statetransition", "pk": 438, "fields": {"resulting_state": 452, "next_state_transition": 439}}, {"model": "template.statetransition", "pk": 439, "fields": {"resulting_state": 453, "next_state_transition": 440}}, {"model": "template.statetransition", "pk": 440, "fields": {"resulting_state": 454, "next_state_transition": 441}}, {"model": "template.statetransition", "pk": 441, "fields": {"resulting_state": 455, "next_state_transition": 442}}, {"model": "template.statetransition", "pk": 442, "fields": {"resulting_state": 456, "next_state_transition": 443}}, {"model": "template.statetransition", "pk": 443, "fields": {"resulting_state": 457, "next_state_transition": 444}}, {"model": "template.statetransition", "pk": 444, "fields": {"resulting_state": 458, "next_state_transition": 445}}, {"model": "template.statetransition", "pk": 445, "fields": {"resulting_state": 459, "next_state_transition": 446}}, {"model": "template.statetransition", "pk": 446, "fields": {"resulting_state": 460, "next_state_transition": 447}}, {"model": "template.statetransition", "pk": 447, "fields": {"resulting_state": 461, "next_state_transition": 448}}, {"model": "template.statetransition", "pk": 448, "fields": {"resulting_state": 462, "next_state_transition": 449}}, {"model": "template.statetransition", "pk": 449, "fields": {"resulting_state": 463, "next_state_transition": 450}}, {"model": "template.statetransition", "pk": 450, "fields": {"resulting_state": 464, "next_state_transition": 451}}, {"model": "template.statetransition", "pk": 451, "fields": {"resulting_state": 465, "next_state_transition": 452}}, {"model": "template.statetransition", "pk": 452, "fields": {"resulting_state": 466, "next_state_transition": 453}}, {"model": "template.statetransition", "pk": 453, "fields": {"resulting_state": 467, "next_state_transition": 454}}, {"model": "template.statetransition", "pk": 454, "fields": {"resulting_state": 468, "next_state_transition": 455}}, {"model": "template.statetransition", "pk": 455, "fields": {"resulting_state": 469, "next_state_transition": 456}}, {"model": "template.statetransition", "pk": 456, "fields": {"resulting_state": 470, "next_state_transition": 457}}, {"model": "template.statetransition", "pk": 457, "fields": {"resulting_state": 471, "next_state_transition": 458}}, {"model": "template.statetransition", "pk": 458, "fields": {"resulting_state": 472, "next_state_transition": 459}}, {"model": "template.statetransition", "pk": 459, "fields": {"resulting_state": 473, "next_state_transition": 460}}, {"model": "template.statetransition", "pk": 460, "fields": {"resulting_state": 474, "next_state_transition": 461}}, {"model": "template.statetransition", "pk": 461, "fields": {"resulting_state": 475, "next_state_transition": 462}}, {"model": "template.statetransition", "pk": 462, "fields": {"resulting_state": 476, "next_state_transition": 463}}, {"model": "template.statetransition", "pk": 463, "fields": {"resulting_state": 477, "next_state_transition": 464}}, {"model": "template.statetransition", "pk": 464, "fields": {"resulting_state": 478, "next_state_transition": 465}}, {"model": "template.statetransition", "pk": 465, "fields": {"resulting_state": 479, "next_state_transition": 466}}, {"model": "template.statetransition", "pk": 466, "fields": {"resulting_state": 480, "next_state_transition": 467}}, {"model": "template.statetransition", "pk": 467, "fields": {"resulting_state": 481, "next_state_transition": 468}}, {"model": "template.statetransition", "pk": 468, "fields": {"resulting_state": 482, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 469, "fields": {"resulting_state": 354, "next_state_transition": 470}}, {"model": "template.statetransition", "pk": 470, "fields": {"resulting_state": 483, "next_state_transition": 471}}, {"model": "template.statetransition", "pk": 471, "fields": {"resulting_state": 484, "next_state_transition": 472}}, {"model": "template.statetransition", "pk": 472, "fields": {"resulting_state": 485, "next_state_transition": 473}}, {"model": "template.statetransition", "pk": 473, "fields": {"resulting_state": 486, "next_state_transition": 474}}, {"model": "template.statetransition", "pk": 474, "fields": {"resulting_state": 487, "next_state_transition": 475}}, {"model": "template.statetransition", "pk": 475, "fields": {"resulting_state": 488, "next_state_transition": 476}}, {"model": "template.statetransition", "pk": 476, "fields": {"resulting_state": 489, "next_state_transition": 477}}, {"model": "template.statetransition", "pk": 477, "fields": {"resulting_state": 490, "next_state_transition": 478}}, {"model": "template.statetransition", "pk": 478, "fields": {"resulting_state": 491, "next_state_transition": 479}}, {"model": "template.statetransition", "pk": 479, "fields": {"resulting_state": 492, "next_state_transition": 480}}, {"model": "template.statetransition", "pk": 480, "fields": {"resulting_state": 493, "next_state_transition": 481}}, {"model": "template.statetransition", "pk": 481, "fields": {"resulting_state": 494, "next_state_transition": 482}}, {"model": "template.statetransition", "pk": 482, "fields": {"resulting_state": 495, "next_state_transition": 483}}, {"model": "template.statetransition", "pk": 483, "fields": {"resulting_state": 496, "next_state_transition": 484}}, {"model": "template.statetransition", "pk": 484, "fields": {"resulting_state": 497, "next_state_transition": 485}}, {"model": "template.statetransition", "pk": 485, "fields": {"resulting_state": 498, "next_state_transition": 486}}, {"model": "template.statetransition", "pk": 486, "fields": {"resulting_state": 499, "next_state_transition": 487}}, {"model": "template.statetransition", "pk": 487, "fields": {"resulting_state": 500, "next_state_transition": 488}}, {"model": "template.statetransition", "pk": 488, "fields": {"resulting_state": 501, "next_state_transition": 489}}, {"model": "template.statetransition", "pk": 489, "fields": {"resulting_state": 502, "next_state_transition": 490}}, {"model": "template.statetransition", "pk": 490, "fields": {"resulting_state": 503, "next_state_transition": 491}}, {"model": "template.statetransition", "pk": 491, "fields": {"resulting_state": 504, "next_state_transition": 492}}, {"model": "template.statetransition", "pk": 492, "fields": {"resulting_state": 505, "next_state_transition": 493}}, {"model": "template.statetransition", "pk": 493, "fields": {"resulting_state": 506, "next_state_transition": 494}}, {"model": "template.statetransition", "pk": 494, "fields": {"resulting_state": 507, "next_state_transition": 495}}, {"model": "template.statetransition", "pk": 495, "fields": {"resulting_state": 508, "next_state_transition": 496}}, {"model": "template.statetransition", "pk": 496, "fields": {"resulting_state": 509, "next_state_transition": 497}}, {"model": "template.statetransition", "pk": 497, "fields": {"resulting_state": 510, "next_state_transition": 498}}, {"model": "template.statetransition", "pk": 498, "fields": {"resulting_state": 511, "next_state_transition": 499}}, {"model": "template.statetransition", "pk": 499, "fields": {"resulting_state": 512, "next_state_transition": 500}}, {"model": "template.statetransition", "pk": 500, "fields": {"resulting_state": 513, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 501, "fields": {"resulting_state": 353, "next_state_transition": 502}}, {"model": "template.statetransition", "pk": 502, "fields": {"resulting_state": 514, "next_state_transition": 503}}, {"model": "template.statetransition", "pk": 503, "fields": {"resulting_state": 515, "next_state_transition": 504}}, {"model": "template.statetransition", "pk": 504, "fields": {"resulting_state": 516, "next_state_transition": 505}}, {"model": "template.statetransition", "pk": 505, "fields": {"resulting_state": 517, "next_state_transition": 506}}, {"model": "template.statetransition", "pk": 506, "fields": {"resulting_state": 518, "next_state_transition": 507}}, {"model": "template.statetransition", "pk": 507, "fields": {"resulting_state": 519, "next_state_transition": 508}}, {"model": "template.statetransition", "pk": 508, "fields": {"resulting_state": 520, "next_state_transition": 509}}, {"model": "template.statetransition", "pk": 509, "fields": {"resulting_state": 521, "next_state_transition": 510}}, {"model": "template.statetransition", "pk": 510, "fields": {"resulting_state": 522, "next_state_transition": 511}}, {"model": "template.statetransition", "pk": 511, "fields": {"resulting_state": 523, "next_state_transition": 512}}, {"model": "template.statetransition", "pk": 512, "fields": {"resulting_state": 524, "next_state_transition": 513}}, {"model": "template.statetransition", "pk": 513, "fields": {"resulting_state": 525, "next_state_transition": 514}}, {"model": "template.statetransition", "pk": 514, "fields": {"resulting_state": 526, "next_state_transition": 515}}, {"model": "template.statetransition", "pk": 515, "fields": {"resulting_state": 527, "next_state_transition": 516}}, {"model": "template.statetransition", "pk": 516, "fields": {"resulting_state": 528, "next_state_transition": 517}}, {"model": "template.statetransition", "pk": 517, "fields": {"resulting_state": 529, "next_state_transition": 518}}, {"model": "template.statetransition", "pk": 518, "fields": {"resulting_state": 530, "next_state_transition": 519}}, {"model": "template.statetransition", "pk": 519, "fields": {"resulting_state": 531, "next_state_transition": 520}}, {"model": "template.statetransition", "pk": 520, "fields": {"resulting_state": 532, "next_state_transition": 521}}, {"model": "template.statetransition", "pk": 521, "fields": {"resulting_state": 533, "next_state_transition": 522}}, {"model": "template.statetransition", "pk": 522, "fields": {"resulting_state": 534, "next_state_transition": 523}}, {"model": "template.statetransition", "pk": 523, "fields": {"resulting_state": 535, "next_state_transition": 524}}, {"model": "template.statetransition", "pk": 524, "fields": {"resulting_state": 536, "next_state_transition": 525}}, {"model": "template.statetransition", "pk": 525, "fields": {"resulting_state": 537, "next_state_transition": 526}}, {"model": "template.statetransition", "pk": 526, "fields": {"resulting_state": 538, "next_state_transition": 527}}, {"model": "template.statetransition", "pk": 527, "fields": {"resulting_state": 539, "next_state_transition": 528}}, {"model": "template.statetransition", "pk": 528, "fields": {"resulting_state": 540, "next_state_transition": 529}}, {"model": "template.statetransition", "pk": 529, "fields": {"resulting_state": 541, "next_state_transition": 530}}, {"model": "template.statetransition", "pk": 530, "fields": {"resulting_state": 542, "next_state_transition": 531}}, {"model": "template.statetransition", "pk": 531, "fields": {"resulting_state": 543, "next_state_transition": 532}}, {"model": "template.statetransition", "pk": 532, "fields": {"resulting_state": 544, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 533, "fields": {"resulting_state": 352, "next_state_transition": 534}}, {"model": "template.statetransition", "pk": 534, "fields": {"resulting_state": 545, "next_state_transition": 535}}, {"model": "template.statetransition", "pk": 535, "fields": {"resulting_state": 546, "next_state_transition": 536}}, {"model": "template.statetransition", "pk": 536, "fields": {"resulting_state": 547, "next_state_transition": 537}}, {"model": "template.statetransition", "pk": 537, "fields": {"resulting_state": 548, "next_state_transition": 538}}, {"model": "template.statetransition", "pk": 538, "fields": {"resulting_state": 549, "next_state_transition": 539}}, {"model": "template.statetransition", "pk": 539, "fields": {"resulting_state": 550, "next_state_transition": 540}}, {"model": "template.statetransition", "pk": 540, "fields": {"resulting_state": 551, "next_state_transition": 541}}, {"model": "template.statetransition", "pk": 541, "fields": {"resulting_state": 552, "next_state_transition": 542}}, {"model": "template.statetransition", "pk": 542, "fields": {"resulting_state": 553, "next_state_transition": 543}}, {"model": "template.statetransition", "pk": 543, "fields": {"resulting_state": 554, "next_state_transition": 544}}, {"model": "template.statetransition", "pk": 544, "fields": {"resulting_state": 555, "next_state_transition": 545}}, {"model": "template.statetransition", "pk": 545, "fields": {"resulting_state": 556, "next_state_transition": 546}}, {"model": "template.statetransition", "pk": 546, "fields": {"resulting_state": 557, "next_state_transition": 547}}, {"model": "template.statetransition", "pk": 547, "fields": {"resulting_state": 558, "next_state_transition": 548}}, {"model": "template.statetransition", "pk": 548, "fields": {"resulting_state": 559, "next_state_transition": 549}}, {"model": "template.statetransition", "pk": 549, "fields": {"resulting_state": 560, "next_state_transition": 550}}, {"model": "template.statetransition", "pk": 550, "fields": {"resulting_state": 561, "next_state_transition": 551}}, {"model": "template.statetransition", "pk": 551, "fields": {"resulting_state": 562, "next_state_transition": 552}}, {"model": "template.statetransition", "pk": 552, "fields": {"resulting_state": 563, "next_state_transition": 553}}, {"model": "template.statetransition", "pk": 553, "fields": {"resulting_state": 564, "next_state_transition": 554}}, {"model": "template.statetransition", "pk": 554, "fields": {"resulting_state": 565, "next_state_transition": 555}}, {"model": "template.statetransition", "pk": 555, "fields": {"resulting_state": 566, "next_state_transition": 556}}, {"model": "template.statetransition", "pk": 556, "fields": {"resulting_state": 567, "next_state_transition": 557}}, {"model": "template.statetransition", "pk": 557, "fields": {"resulting_state": 568, "next_state_transition": 558}}, {"model": "template.statetransition", "pk": 558, "fields": {"resulting_state": 569, "next_state_transition": 559}}, {"model": "template.statetransition", "pk": 559, "fields": {"resulting_state": 570, "next_state_transition": 560}}, {"model": "template.statetransition", "pk": 560, "fields": {"resulting_state": 571, "next_state_transition": 561}}, {"model": "template.statetransition", "pk": 561, "fields": {"resulting_state": 572, "next_state_transition": 562}}, {"model": "template.statetransition", "pk": 562, "fields": {"resulting_state": 573, "next_state_transition": 563}}, {"model": "template.statetransition", "pk": 563, "fields": {"resulting_state": 574, "next_state_transition": 564}}, {"model": "template.statetransition", "pk": 564, "fields": {"resulting_state": 575, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 565, "fields": {"resulting_state": 351, "next_state_transition": 566}}, {"model": "template.statetransition", "pk": 566, "fields": {"resulting_state": 576, "next_state_transition": 567}}, {"model": "template.statetransition", "pk": 567, "fields": {"resulting_state": 577, "next_state_transition": 568}}, {"model": "template.statetransition", "pk": 568, "fields": {"resulting_state": 578, "next_state_transition": 569}}, {"model": "template.statetransition", "pk": 569, "fields": {"resulting_state": 579, "next_state_transition": 570}}, {"model": "template.statetransition", "pk": 570, "fields": {"resulting_state": 580, "next_state_transition": 571}}, {"model": "template.statetransition", "pk": 571, "fields": {"resulting_state": 581, "next_state_transition": 572}}, {"model": "template.statetransition", "pk": 572, "fields": {"resulting_state": 582, "next_state_transition": 573}}, {"model": "template.statetransition", "pk": 573, "fields": {"resulting_state": 583, "next_state_transition": 574}}, {"model": "template.statetransition", "pk": 574, "fields": {"resulting_state": 584, "next_state_transition": 575}}, {"model": "template.statetransition", "pk": 575, "fields": {"resulting_state": 585, "next_state_transition": 576}}, {"model": "template.statetransition", "pk": 576, "fields": {"resulting_state": 586, "next_state_transition": 577}}, {"model": "template.statetransition", "pk": 577, "fields": {"resulting_state": 587, "next_state_transition": 578}}, {"model": "template.statetransition", "pk": 578, "fields": {"resulting_state": 588, "next_state_transition": 579}}, {"model": "template.statetransition", "pk": 579, "fields": {"resulting_state": 589, "next_state_transition": 580}}, {"model": "template.statetransition", "pk": 580, "fields": {"resulting_state": 590, "next_state_transition": 581}}, {"model": "template.statetransition", "pk": 581, "fields": {"resulting_state": 591, "next_state_transition": 582}}, {"model": "template.statetransition", "pk": 582, "fields": {"resulting_state": 592, "next_state_transition": 583}}, {"model": "template.statetransition", "pk": 583, "fields": {"resulting_state": 593, "next_state_transition": 584}}, {"model": "template.statetransition", "pk": 584, "fields": {"resulting_state": 594, "next_state_transition": 585}}, {"model": "template.statetransition", "pk": 585, "fields": {"resulting_state": 595, "next_state_transition": 586}}, {"model": "template.statetransition", "pk": 586, "fields": {"resulting_state": 596, "next_state_transition": 587}}, {"model": "template.statetransition", "pk": 587, "fields": {"resulting_state": 597, "next_state_transition": 588}}, {"model": "template.statetransition", "pk": 588, "fields": {"resulting_state": 598, "next_state_transition": 589}}, {"model": "template.statetransition", "pk": 589, "fields": {"resulting_state": 599, "next_state_transition": 590}}, {"model": "template.statetransition", "pk": 590, "fields": {"resulting_state": 600, "next_state_transition": 591}}, {"model": "template.statetransition", "pk": 591, "fields": {"resulting_state": 601, "next_state_transition": 592}}, {"model": "template.statetransition", "pk": 592, "fields": {"resulting_state": 602, "next_state_transition": 593}}, {"model": "template.statetransition", "pk": 593, "fields": {"resulting_state": 603, "next_state_transition": 594}}, {"model": "template.statetransition", "pk": 594, "fields": {"resulting_state": 604, "next_state_transition": 595}}, {"model": "template.statetransition", "pk": 595, "fields": {"resulting_state": 605, "next_state_transition": 596}}, {"model": "template.statetransition", "pk": 596, "fields": {"resulting_state": 606, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 597, "fields": {"resulting_state": 350, "next_state_transition": 598}}, {"model": "template.statetransition", "pk": 598, "fields": {"resulting_state": 607, "next_state_transition": 599}}, {"model": "template.statetransition", "pk": 599, "fields": {"resulting_state": 608, "next_state_transition": 600}}, {"model": "template.statetransition", "pk": 600, "fields": {"resulting_state": 609, "next_state_transition": 601}}, {"model": "template.statetransition", "pk": 601, "fields": {"resulting_state": 610, "next_state_transition": 602}}, {"model": "template.statetransition", "pk": 602, "fields": {"resulting_state": 611, "next_state_transition": 603}}, {"model": "template.statetransition", "pk": 603, "fields": {"resulting_state": 612, "next_state_transition": 604}}, {"model": "template.statetransition", "pk": 604, "fields": {"resulting_state": 613, "next_state_transition": 605}}, {"model": "template.statetransition", "pk": 605, "fields": {"resulting_state": 614, "next_state_transition": 606}}, {"model": "template.statetransition", "pk": 606, "fields": {"resulting_state": 615, "next_state_transition": 607}}, {"model": "template.statetransition", "pk": 607, "fields": {"resulting_state": 616, "next_state_transition": 608}}, {"model": "template.statetransition", "pk": 608, "fields": {"resulting_state": 617, "next_state_transition": 609}}, {"model": "template.statetransition", "pk": 609, "fields": {"resulting_state": 618, "next_state_transition": 610}}, {"model": "template.statetransition", "pk": 610, "fields": {"resulting_state": 619, "next_state_transition": 611}}, {"model": "template.statetransition", "pk": 611, "fields": {"resulting_state": 620, "next_state_transition": 612}}, {"model": "template.statetransition", "pk": 612, "fields": {"resulting_state": 621, "next_state_transition": 613}}, {"model": "template.statetransition", "pk": 613, "fields": {"resulting_state": 622, "next_state_transition": 614}}, {"model": "template.statetransition", "pk": 614, "fields": {"resulting_state": 623, "next_state_transition": 615}}, {"model": "template.statetransition", "pk": 615, "fields": {"resulting_state": 624, "next_state_transition": 616}}, {"model": "template.statetransition", "pk": 616, "fields": {"resulting_state": 625, "next_state_transition": 617}}, {"model": "template.statetransition", "pk": 617, "fields": {"resulting_state": 626, "next_state_transition": 618}}, {"model": "template.statetransition", "pk": 618, "fields": {"resulting_state": 627, "next_state_transition": 619}}, {"model": "template.statetransition", "pk": 619, "fields": {"resulting_state": 628, "next_state_transition": 620}}, {"model": "template.statetransition", "pk": 620, "fields": {"resulting_state": 629, "next_state_transition": 621}}, {"model": "template.statetransition", "pk": 621, "fields": {"resulting_state": 630, "next_state_transition": 622}}, {"model": "template.statetransition", "pk": 622, "fields": {"resulting_state": 631, "next_state_transition": 623}}, {"model": "template.statetransition", "pk": 623, "fields": {"resulting_state": 632, "next_state_transition": 624}}, {"model": "template.statetransition", "pk": 624, "fields": {"resulting_state": 633, "next_state_transition": 625}}, {"model": "template.statetransition", "pk": 625, "fields": {"resulting_state": 634, "next_state_transition": 626}}, {"model": "template.statetransition", "pk": 626, "fields": {"resulting_state": 635, "next_state_transition": 627}}, {"model": "template.statetransition", "pk": 627, "fields": {"resulting_state": 636, "next_state_transition": 628}}, {"model": "template.statetransition", "pk": 628, "fields": {"resulting_state": 637, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 629, "fields": {"resulting_state": 348, "next_state_transition": 597}}, {"model": "template.statetransition", "pk": 630, "fields": {"resulting_state": 648, "next_state_transition": 632}}, {"model": "template.statetransition", "pk": 631, "fields": {"resulting_state": 650, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 632, "fields": {"resulting_state": 649, "next_state_transition": 633}}, {"model": "template.statetransition", "pk": 633, "fields": {"resulting_state": 651, "next_state_transition": 634}}, {"model": "template.statetransition", "pk": 634, "fields": {"resulting_state": 652, "next_state_transition": 635}}, {"model": "template.statetransition", "pk": 635, "fields": {"resulting_state": 653, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 636, "fields": {"resulting_state": 647, "next_state_transition": 637}}, {"model": "template.statetransition", "pk": 637, "fields": {"resulting_state": 654, "next_state_transition": 638}}, {"model": "template.statetransition", "pk": 638, "fields": {"resulting_state": 655, "next_state_transition": 639}}, {"model": "template.statetransition", "pk": 639, "fields": {"resulting_state": 656, "next_state_transition": 640}}, {"model": "template.statetransition", "pk": 640, "fields": {"resulting_state": 657, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 641, "fields": {"resulting_state": 646, "next_state_transition": 642}}, {"model": "template.statetransition", "pk": 642, "fields": {"resulting_state": 658, "next_state_transition": 643}}, {"model": "template.statetransition", "pk": 643, "fields": {"resulting_state": 659, "next_state_transition": 644}}, {"model": "template.statetransition", "pk": 644, "fields": {"resulting_state": 660, "next_state_transition": 645}}, {"model": "template.statetransition", "pk": 645, "fields": {"resulting_state": 661, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 646, "fields": {"resulting_state": 645, "next_state_transition": 647}}, {"model": "template.statetransition", "pk": 647, "fields": {"resulting_state": 662, "next_state_transition": 648}}, {"model": "template.statetransition", "pk": 648, "fields": {"resulting_state": 663, "next_state_transition": 649}}, {"model": "template.statetransition", "pk": 649, "fields": {"resulting_state": 664, "next_state_transition": 650}}, {"model": "template.statetransition", "pk": 650, "fields": {"resulting_state": 665, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 651, "fields": {"resulting_state": 644, "next_state_transition": 652}}, {"model": "template.statetransition", "pk": 652, "fields": {"resulting_state": 666, "next_state_transition": 653}}, {"model": "template.statetransition", "pk": 653, "fields": {"resulting_state": 667, "next_state_transition": 654}}, {"model": "template.statetransition", "pk": 654, "fields": {"resulting_state": 668, "next_state_transition": 655}}, {"model": "template.statetransition", "pk": 655, "fields": {"resulting_state": 669, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 656, "fields": {"resulting_state": 643, "next_state_transition": 657}}, {"model": "template.statetransition", "pk": 657, "fields": {"resulting_state": 670, "next_state_transition": 658}}, {"model": "template.statetransition", "pk": 658, "fields": {"resulting_state": 671, "next_state_transition": 659}}, {"model": "template.statetransition", "pk": 659, "fields": {"resulting_state": 672, "next_state_transition": 660}}, {"model": "template.statetransition", "pk": 660, "fields": {"resulting_state": 673, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 661, "fields": {"resulting_state": 642, "next_state_transition": 662}}, {"model": "template.statetransition", "pk": 662, "fields": {"resulting_state": 674, "next_state_transition": 663}}, {"model": "template.statetransition", "pk": 663, "fields": {"resulting_state": 675, "next_state_transition": 664}}, {"model": "template.statetransition", "pk": 664, "fields": {"resulting_state": 676, "next_state_transition": 665}}, {"model": "template.statetransition", "pk": 665, "fields": {"resulting_state": 677, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 666, "fields": {"resulting_state": 641, "next_state_transition": 667}}, {"model": "template.statetransition", "pk": 667, "fields": {"resulting_state": 678, "next_state_transition": 668}}, {"model": "template.statetransition", "pk": 668, "fields": {"resulting_state": 679, "next_state_transition": 669}}, {"model": "template.statetransition", "pk": 669, "fields": {"resulting_state": 680, "next_state_transition": 670}}, {"model": "template.statetransition", "pk": 670, "fields": {"resulting_state": 681, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 671, "fields": {"resulting_state": 640, "next_state_transition": 672}}, {"model": "template.statetransition", "pk": 672, "fields": {"resulting_state": 682, "next_state_transition": 673}}, {"model": "template.statetransition", "pk": 673, "fields": {"resulting_state": 683, "next_state_transition": 674}}, {"model": "template.statetransition", "pk": 674, "fields": {"resulting_state": 684, "next_state_transition": 675}}, {"model": "template.statetransition", "pk": 675, "fields": {"resulting_state": 685, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 676, "fields": {"resulting_state": 696, "next_state_transition": 677}}, {"model": "template.statetransition", "pk": 677, "fields": {"resulting_state": 697, "next_state_transition": 678}}, {"model": "template.statetransition", "pk": 678, "fields": {"resulting_state": 698, "next_state_transition": 679}}, {"model": "template.statetransition", "pk": 679, "fields": {"resulting_state": 699, "next_state_transition": 680}}, {"model": "template.statetransition", "pk": 680, "fields": {"resulting_state": 700, "next_state_transition": 681}}, {"model": "template.statetransition", "pk": 681, "fields": {"resulting_state": 701, "next_state_transition": 682}}, {"model": "template.statetransition", "pk": 682, "fields": {"resulting_state": 702, "next_state_transition": 683}}, {"model": "template.statetransition", "pk": 683, "fields": {"resulting_state": 703, "next_state_transition": 684}}, {"model": "template.statetransition", "pk": 684, "fields": {"resulting_state": 704, "next_state_transition": 685}}, {"model": "template.statetransition", "pk": 685, "fields": {"resulting_state": 705, "next_state_transition": 686}}, {"model": "template.statetransition", "pk": 686, "fields": {"resulting_state": 706, "next_state_transition": 687}}, {"model": "template.statetransition", "pk": 687, "fields": {"resulting_state": 707, "next_state_transition": 688}}, {"model": "template.statetransition", "pk": 688, "fields": {"resulting_state": 708, "next_state_transition": 689}}, {"model": "template.statetransition", "pk": 689, "fields": {"resulting_state": 709, "next_state_transition": 690}}, {"model": "template.statetransition", "pk": 690, "fields": {"resulting_state": 710, "next_state_transition": 691}}, {"model": "template.statetransition", "pk": 691, "fields": {"resulting_state": 711, "next_state_transition": 692}}, {"model": "template.statetransition", "pk": 692, "fields": {"resulting_state": 712, "next_state_transition": 693}}, {"model": "template.statetransition", "pk": 693, "fields": {"resulting_state": 713, "next_state_transition": 694}}, {"model": "template.statetransition", "pk": 694, "fields": {"resulting_state": 714, "next_state_transition": 695}}, {"model": "template.statetransition", "pk": 695, "fields": {"resulting_state": 715, "next_state_transition": 696}}, {"model": "template.statetransition", "pk": 696, "fields": {"resulting_state": 716, "next_state_transition": 697}}, {"model": "template.statetransition", "pk": 697, "fields": {"resulting_state": 717, "next_state_transition": 698}}, {"model": "template.statetransition", "pk": 698, "fields": {"resulting_state": 718, "next_state_transition": 699}}, {"model": "template.statetransition", "pk": 699, "fields": {"resulting_state": 719, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 700, "fields": {"resulting_state": 695, "next_state_transition": 701}}, {"model": "template.statetransition", "pk": 701, "fields": {"resulting_state": 720, "next_state_transition": 702}}, {"model": "template.statetransition", "pk": 702, "fields": {"resulting_state": 721, "next_state_transition": 703}}, {"model": "template.statetransition", "pk": 703, "fields": {"resulting_state": 722, "next_state_transition": 704}}, {"model": "template.statetransition", "pk": 704, "fields": {"resulting_state": 723, "next_state_transition": 705}}, {"model": "template.statetransition", "pk": 705, "fields": {"resulting_state": 724, "next_state_transition": 706}}, {"model": "template.statetransition", "pk": 706, "fields": {"resulting_state": 725, "next_state_transition": 707}}, {"model": "template.statetransition", "pk": 707, "fields": {"resulting_state": 726, "next_state_transition": 708}}, {"model": "template.statetransition", "pk": 708, "fields": {"resulting_state": 727, "next_state_transition": 709}}, {"model": "template.statetransition", "pk": 709, "fields": {"resulting_state": 728, "next_state_transition": 710}}, {"model": "template.statetransition", "pk": 710, "fields": {"resulting_state": 729, "next_state_transition": 711}}, {"model": "template.statetransition", "pk": 711, "fields": {"resulting_state": 730, "next_state_transition": 712}}, {"model": "template.statetransition", "pk": 712, "fields": {"resulting_state": 731, "next_state_transition": 713}}, {"model": "template.statetransition", "pk": 713, "fields": {"resulting_state": 732, "next_state_transition": 714}}, {"model": "template.statetransition", "pk": 714, "fields": {"resulting_state": 733, "next_state_transition": 715}}, {"model": "template.statetransition", "pk": 715, "fields": {"resulting_state": 734, "next_state_transition": 716}}, {"model": "template.statetransition", "pk": 716, "fields": {"resulting_state": 735, "next_state_transition": 717}}, {"model": "template.statetransition", "pk": 717, "fields": {"resulting_state": 736, "next_state_transition": 718}}, {"model": "template.statetransition", "pk": 718, "fields": {"resulting_state": 737, "next_state_transition": 719}}, {"model": "template.statetransition", "pk": 719, "fields": {"resulting_state": 738, "next_state_transition": 720}}, {"model": "template.statetransition", "pk": 720, "fields": {"resulting_state": 739, "next_state_transition": 721}}, {"model": "template.statetransition", "pk": 721, "fields": {"resulting_state": 740, "next_state_transition": 722}}, {"model": "template.statetransition", "pk": 722, "fields": {"resulting_state": 741, "next_state_transition": 723}}, {"model": "template.statetransition", "pk": 723, "fields": {"resulting_state": 742, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 724, "fields": {"resulting_state": 694, "next_state_transition": 725}}, {"model": "template.statetransition", "pk": 725, "fields": {"resulting_state": 743, "next_state_transition": 726}}, {"model": "template.statetransition", "pk": 726, "fields": {"resulting_state": 744, "next_state_transition": 727}}, {"model": "template.statetransition", "pk": 727, "fields": {"resulting_state": 745, "next_state_transition": 728}}, {"model": "template.statetransition", "pk": 728, "fields": {"resulting_state": 746, "next_state_transition": 729}}, {"model": "template.statetransition", "pk": 729, "fields": {"resulting_state": 747, "next_state_transition": 730}}, {"model": "template.statetransition", "pk": 730, "fields": {"resulting_state": 748, "next_state_transition": 731}}, {"model": "template.statetransition", "pk": 731, "fields": {"resulting_state": 749, "next_state_transition": 732}}, {"model": "template.statetransition", "pk": 732, "fields": {"resulting_state": 750, "next_state_transition": 733}}, {"model": "template.statetransition", "pk": 733, "fields": {"resulting_state": 751, "next_state_transition": 734}}, {"model": "template.statetransition", "pk": 734, "fields": {"resulting_state": 752, "next_state_transition": 735}}, {"model": "template.statetransition", "pk": 735, "fields": {"resulting_state": 753, "next_state_transition": 736}}, {"model": "template.statetransition", "pk": 736, "fields": {"resulting_state": 754, "next_state_transition": 737}}, {"model": "template.statetransition", "pk": 737, "fields": {"resulting_state": 755, "next_state_transition": 738}}, {"model": "template.statetransition", "pk": 738, "fields": {"resulting_state": 756, "next_state_transition": 739}}, {"model": "template.statetransition", "pk": 739, "fields": {"resulting_state": 757, "next_state_transition": 740}}, {"model": "template.statetransition", "pk": 740, "fields": {"resulting_state": 758, "next_state_transition": 741}}, {"model": "template.statetransition", "pk": 741, "fields": {"resulting_state": 759, "next_state_transition": 742}}, {"model": "template.statetransition", "pk": 742, "fields": {"resulting_state": 760, "next_state_transition": 743}}, {"model": "template.statetransition", "pk": 743, "fields": {"resulting_state": 761, "next_state_transition": 744}}, {"model": "template.statetransition", "pk": 744, "fields": {"resulting_state": 762, "next_state_transition": 745}}, {"model": "template.statetransition", "pk": 745, "fields": {"resulting_state": 763, "next_state_transition": 746}}, {"model": "template.statetransition", "pk": 746, "fields": {"resulting_state": 764, "next_state_transition": 747}}, {"model": "template.statetransition", "pk": 747, "fields": {"resulting_state": 765, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 748, "fields": {"resulting_state": 693, "next_state_transition": 749}}, {"model": "template.statetransition", "pk": 749, "fields": {"resulting_state": 766, "next_state_transition": 750}}, {"model": "template.statetransition", "pk": 750, "fields": {"resulting_state": 767, "next_state_transition": 751}}, {"model": "template.statetransition", "pk": 751, "fields": {"resulting_state": 768, "next_state_transition": 752}}, {"model": "template.statetransition", "pk": 752, "fields": {"resulting_state": 769, "next_state_transition": 753}}, {"model": "template.statetransition", "pk": 753, "fields": {"resulting_state": 770, "next_state_transition": 754}}, {"model": "template.statetransition", "pk": 754, "fields": {"resulting_state": 771, "next_state_transition": 755}}, {"model": "template.statetransition", "pk": 755, "fields": {"resulting_state": 772, "next_state_transition": 756}}, {"model": "template.statetransition", "pk": 756, "fields": {"resulting_state": 773, "next_state_transition": 757}}, {"model": "template.statetransition", "pk": 757, "fields": {"resulting_state": 774, "next_state_transition": 758}}, {"model": "template.statetransition", "pk": 758, "fields": {"resulting_state": 775, "next_state_transition": 759}}, {"model": "template.statetransition", "pk": 759, "fields": {"resulting_state": 776, "next_state_transition": 760}}, {"model": "template.statetransition", "pk": 760, "fields": {"resulting_state": 777, "next_state_transition": 761}}, {"model": "template.statetransition", "pk": 761, "fields": {"resulting_state": 778, "next_state_transition": 762}}, {"model": "template.statetransition", "pk": 762, "fields": {"resulting_state": 779, "next_state_transition": 763}}, {"model": "template.statetransition", "pk": 763, "fields": {"resulting_state": 780, "next_state_transition": 764}}, {"model": "template.statetransition", "pk": 764, "fields": {"resulting_state": 781, "next_state_transition": 765}}, {"model": "template.statetransition", "pk": 765, "fields": {"resulting_state": 782, "next_state_transition": 766}}, {"model": "template.statetransition", "pk": 766, "fields": {"resulting_state": 783, "next_state_transition": 767}}, {"model": "template.statetransition", "pk": 767, "fields": {"resulting_state": 784, "next_state_transition": 768}}, {"model": "template.statetransition", "pk": 768, "fields": {"resulting_state": 785, "next_state_transition": 769}}, {"model": "template.statetransition", "pk": 769, "fields": {"resulting_state": 786, "next_state_transition": 770}}, {"model": "template.statetransition", "pk": 770, "fields": {"resulting_state": 787, "next_state_transition": 771}}, {"model": "template.statetransition", "pk": 771, "fields": {"resulting_state": 788, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 772, "fields": {"resulting_state": 692, "next_state_transition": 773}}, {"model": "template.statetransition", "pk": 773, "fields": {"resulting_state": 789, "next_state_transition": 774}}, {"model": "template.statetransition", "pk": 774, "fields": {"resulting_state": 790, "next_state_transition": 775}}, {"model": "template.statetransition", "pk": 775, "fields": {"resulting_state": 791, "next_state_transition": 776}}, {"model": "template.statetransition", "pk": 776, "fields": {"resulting_state": 792, "next_state_transition": 777}}, {"model": "template.statetransition", "pk": 777, "fields": {"resulting_state": 793, "next_state_transition": 778}}, {"model": "template.statetransition", "pk": 778, "fields": {"resulting_state": 794, "next_state_transition": 779}}, {"model": "template.statetransition", "pk": 779, "fields": {"resulting_state": 795, "next_state_transition": 780}}, {"model": "template.statetransition", "pk": 780, "fields": {"resulting_state": 796, "next_state_transition": 781}}, {"model": "template.statetransition", "pk": 781, "fields": {"resulting_state": 797, "next_state_transition": 782}}, {"model": "template.statetransition", "pk": 782, "fields": {"resulting_state": 798, "next_state_transition": 783}}, {"model": "template.statetransition", "pk": 783, "fields": {"resulting_state": 799, "next_state_transition": 784}}, {"model": "template.statetransition", "pk": 784, "fields": {"resulting_state": 800, "next_state_transition": 785}}, {"model": "template.statetransition", "pk": 785, "fields": {"resulting_state": 801, "next_state_transition": 786}}, {"model": "template.statetransition", "pk": 786, "fields": {"resulting_state": 802, "next_state_transition": 787}}, {"model": "template.statetransition", "pk": 787, "fields": {"resulting_state": 803, "next_state_transition": 788}}, {"model": "template.statetransition", "pk": 788, "fields": {"resulting_state": 804, "next_state_transition": 789}}, {"model": "template.statetransition", "pk": 789, "fields": {"resulting_state": 805, "next_state_transition": 790}}, {"model": "template.statetransition", "pk": 790, "fields": {"resulting_state": 806, "next_state_transition": 791}}, {"model": "template.statetransition", "pk": 791, "fields": {"resulting_state": 807, "next_state_transition": 792}}, {"model": "template.statetransition", "pk": 792, "fields": {"resulting_state": 808, "next_state_transition": 793}}, {"model": "template.statetransition", "pk": 793, "fields": {"resulting_state": 809, "next_state_transition": 794}}, {"model": "template.statetransition", "pk": 794, "fields": {"resulting_state": 810, "next_state_transition": 795}}, {"model": "template.statetransition", "pk": 795, "fields": {"resulting_state": 811, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 796, "fields": {"resulting_state": 691, "next_state_transition": 797}}, {"model": "template.statetransition", "pk": 797, "fields": {"resulting_state": 812, "next_state_transition": 798}}, {"model": "template.statetransition", "pk": 798, "fields": {"resulting_state": 813, "next_state_transition": 799}}, {"model": "template.statetransition", "pk": 799, "fields": {"resulting_state": 814, "next_state_transition": 800}}, {"model": "template.statetransition", "pk": 800, "fields": {"resulting_state": 815, "next_state_transition": 801}}, {"model": "template.statetransition", "pk": 801, "fields": {"resulting_state": 816, "next_state_transition": 802}}, {"model": "template.statetransition", "pk": 802, "fields": {"resulting_state": 817, "next_state_transition": 803}}, {"model": "template.statetransition", "pk": 803, "fields": {"resulting_state": 818, "next_state_transition": 804}}, {"model": "template.statetransition", "pk": 804, "fields": {"resulting_state": 819, "next_state_transition": 805}}, {"model": "template.statetransition", "pk": 805, "fields": {"resulting_state": 820, "next_state_transition": 806}}, {"model": "template.statetransition", "pk": 806, "fields": {"resulting_state": 821, "next_state_transition": 807}}, {"model": "template.statetransition", "pk": 807, "fields": {"resulting_state": 822, "next_state_transition": 808}}, {"model": "template.statetransition", "pk": 808, "fields": {"resulting_state": 823, "next_state_transition": 809}}, {"model": "template.statetransition", "pk": 809, "fields": {"resulting_state": 824, "next_state_transition": 810}}, {"model": "template.statetransition", "pk": 810, "fields": {"resulting_state": 825, "next_state_transition": 811}}, {"model": "template.statetransition", "pk": 811, "fields": {"resulting_state": 826, "next_state_transition": 812}}, {"model": "template.statetransition", "pk": 812, "fields": {"resulting_state": 827, "next_state_transition": 813}}, {"model": "template.statetransition", "pk": 813, "fields": {"resulting_state": 828, "next_state_transition": 814}}, {"model": "template.statetransition", "pk": 814, "fields": {"resulting_state": 829, "next_state_transition": 815}}, {"model": "template.statetransition", "pk": 815, "fields": {"resulting_state": 830, "next_state_transition": 816}}, {"model": "template.statetransition", "pk": 816, "fields": {"resulting_state": 831, "next_state_transition": 817}}, {"model": "template.statetransition", "pk": 817, "fields": {"resulting_state": 832, "next_state_transition": 818}}, {"model": "template.statetransition", "pk": 818, "fields": {"resulting_state": 833, "next_state_transition": 819}}, {"model": "template.statetransition", "pk": 819, "fields": {"resulting_state": 834, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 820, "fields": {"resulting_state": 690, "next_state_transition": 821}}, {"model": "template.statetransition", "pk": 821, "fields": {"resulting_state": 835, "next_state_transition": 822}}, {"model": "template.statetransition", "pk": 822, "fields": {"resulting_state": 836, "next_state_transition": 823}}, {"model": "template.statetransition", "pk": 823, "fields": {"resulting_state": 837, "next_state_transition": 824}}, {"model": "template.statetransition", "pk": 824, "fields": {"resulting_state": 838, "next_state_transition": 825}}, {"model": "template.statetransition", "pk": 825, "fields": {"resulting_state": 839, "next_state_transition": 826}}, {"model": "template.statetransition", "pk": 826, "fields": {"resulting_state": 840, "next_state_transition": 827}}, {"model": "template.statetransition", "pk": 827, "fields": {"resulting_state": 841, "next_state_transition": 828}}, {"model": "template.statetransition", "pk": 828, "fields": {"resulting_state": 842, "next_state_transition": 829}}, {"model": "template.statetransition", "pk": 829, "fields": {"resulting_state": 843, "next_state_transition": 830}}, {"model": "template.statetransition", "pk": 830, "fields": {"resulting_state": 844, "next_state_transition": 831}}, {"model": "template.statetransition", "pk": 831, "fields": {"resulting_state": 845, "next_state_transition": 832}}, {"model": "template.statetransition", "pk": 832, "fields": {"resulting_state": 846, "next_state_transition": 833}}, {"model": "template.statetransition", "pk": 833, "fields": {"resulting_state": 847, "next_state_transition": 834}}, {"model": "template.statetransition", "pk": 834, "fields": {"resulting_state": 848, "next_state_transition": 835}}, {"model": "template.statetransition", "pk": 835, "fields": {"resulting_state": 849, "next_state_transition": 836}}, {"model": "template.statetransition", "pk": 836, "fields": {"resulting_state": 850, "next_state_transition": 837}}, {"model": "template.statetransition", "pk": 837, "fields": {"resulting_state": 851, "next_state_transition": 838}}, {"model": "template.statetransition", "pk": 838, "fields": {"resulting_state": 852, "next_state_transition": 839}}, {"model": "template.statetransition", "pk": 839, "fields": {"resulting_state": 853, "next_state_transition": 840}}, {"model": "template.statetransition", "pk": 840, "fields": {"resulting_state": 854, "next_state_transition": 841}}, {"model": "template.statetransition", "pk": 841, "fields": {"resulting_state": 855, "next_state_transition": 842}}, {"model": "template.statetransition", "pk": 842, "fields": {"resulting_state": 856, "next_state_transition": 843}}, {"model": "template.statetransition", "pk": 843, "fields": {"resulting_state": 857, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 844, "fields": {"resulting_state": 689, "next_state_transition": 845}}, {"model": "template.statetransition", "pk": 845, "fields": {"resulting_state": 858, "next_state_transition": 846}}, {"model": "template.statetransition", "pk": 846, "fields": {"resulting_state": 859, "next_state_transition": 847}}, {"model": "template.statetransition", "pk": 847, "fields": {"resulting_state": 860, "next_state_transition": 848}}, {"model": "template.statetransition", "pk": 848, "fields": {"resulting_state": 861, "next_state_transition": 849}}, {"model": "template.statetransition", "pk": 849, "fields": {"resulting_state": 862, "next_state_transition": 850}}, {"model": "template.statetransition", "pk": 850, "fields": {"resulting_state": 863, "next_state_transition": 851}}, {"model": "template.statetransition", "pk": 851, "fields": {"resulting_state": 864, "next_state_transition": 852}}, {"model": "template.statetransition", "pk": 852, "fields": {"resulting_state": 865, "next_state_transition": 853}}, {"model": "template.statetransition", "pk": 853, "fields": {"resulting_state": 866, "next_state_transition": 854}}, {"model": "template.statetransition", "pk": 854, "fields": {"resulting_state": 867, "next_state_transition": 855}}, {"model": "template.statetransition", "pk": 855, "fields": {"resulting_state": 868, "next_state_transition": 856}}, {"model": "template.statetransition", "pk": 856, "fields": {"resulting_state": 869, "next_state_transition": 857}}, {"model": "template.statetransition", "pk": 857, "fields": {"resulting_state": 870, "next_state_transition": 858}}, {"model": "template.statetransition", "pk": 858, "fields": {"resulting_state": 871, "next_state_transition": 859}}, {"model": "template.statetransition", "pk": 859, "fields": {"resulting_state": 872, "next_state_transition": 860}}, {"model": "template.statetransition", "pk": 860, "fields": {"resulting_state": 873, "next_state_transition": 861}}, {"model": "template.statetransition", "pk": 861, "fields": {"resulting_state": 874, "next_state_transition": 862}}, {"model": "template.statetransition", "pk": 862, "fields": {"resulting_state": 875, "next_state_transition": 863}}, {"model": "template.statetransition", "pk": 863, "fields": {"resulting_state": 876, "next_state_transition": 864}}, {"model": "template.statetransition", "pk": 864, "fields": {"resulting_state": 877, "next_state_transition": 865}}, {"model": "template.statetransition", "pk": 865, "fields": {"resulting_state": 878, "next_state_transition": 866}}, {"model": "template.statetransition", "pk": 866, "fields": {"resulting_state": 879, "next_state_transition": 867}}, {"model": "template.statetransition", "pk": 867, "fields": {"resulting_state": 880, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 868, "fields": {"resulting_state": 688, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 869, "fields": {"resulting_state": 882, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 870, "fields": {"resulting_state": 891, "next_state_transition": 919}}, {"model": "template.statetransition", "pk": 871, "fields": {"resulting_state": 894, "next_state_transition": 872}}, {"model": "template.statetransition", "pk": 872, "fields": {"resulting_state": 895, "next_state_transition": 873}}, {"model": "template.statetransition", "pk": 873, "fields": {"resulting_state": 896, "next_state_transition": 874}}, {"model": "template.statetransition", "pk": 874, "fields": {"resulting_state": 897, "next_state_transition": 875}}, {"model": "template.statetransition", "pk": 875, "fields": {"resulting_state": 898, "next_state_transition": 876}}, {"model": "template.statetransition", "pk": 876, "fields": {"resulting_state": 899, "next_state_transition": 877}}, {"model": "template.statetransition", "pk": 877, "fields": {"resulting_state": 900, "next_state_transition": 878}}, {"model": "template.statetransition", "pk": 878, "fields": {"resulting_state": 901, "next_state_transition": 879}}, {"model": "template.statetransition", "pk": 879, "fields": {"resulting_state": 902, "next_state_transition": 880}}, {"model": "template.statetransition", "pk": 880, "fields": {"resulting_state": 903, "next_state_transition": 881}}, {"model": "template.statetransition", "pk": 881, "fields": {"resulting_state": 904, "next_state_transition": 882}}, {"model": "template.statetransition", "pk": 882, "fields": {"resulting_state": 905, "next_state_transition": 883}}, {"model": "template.statetransition", "pk": 883, "fields": {"resulting_state": 906, "next_state_transition": 884}}, {"model": "template.statetransition", "pk": 884, "fields": {"resulting_state": 907, "next_state_transition": 885}}, {"model": "template.statetransition", "pk": 885, "fields": {"resulting_state": 908, "next_state_transition": 886}}, {"model": "template.statetransition", "pk": 886, "fields": {"resulting_state": 909, "next_state_transition": 887}}, {"model": "template.statetransition", "pk": 887, "fields": {"resulting_state": 910, "next_state_transition": 888}}, {"model": "template.statetransition", "pk": 888, "fields": {"resulting_state": 911, "next_state_transition": 889}}, {"model": "template.statetransition", "pk": 889, "fields": {"resulting_state": 912, "next_state_transition": 890}}, {"model": "template.statetransition", "pk": 890, "fields": {"resulting_state": 913, "next_state_transition": 891}}, {"model": "template.statetransition", "pk": 891, "fields": {"resulting_state": 914, "next_state_transition": 892}}, {"model": "template.statetransition", "pk": 892, "fields": {"resulting_state": 915, "next_state_transition": 893}}, {"model": "template.statetransition", "pk": 893, "fields": {"resulting_state": 916, "next_state_transition": 894}}, {"model": "template.statetransition", "pk": 894, "fields": {"resulting_state": 917, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 895, "fields": {"resulting_state": 893, "next_state_transition": 896}}, {"model": "template.statetransition", "pk": 896, "fields": {"resulting_state": 918, "next_state_transition": 897}}, {"model": "template.statetransition", "pk": 897, "fields": {"resulting_state": 919, "next_state_transition": 898}}, {"model": "template.statetransition", "pk": 898, "fields": {"resulting_state": 920, "next_state_transition": 899}}, {"model": "template.statetransition", "pk": 899, "fields": {"resulting_state": 921, "next_state_transition": 900}}, {"model": "template.statetransition", "pk": 900, "fields": {"resulting_state": 922, "next_state_transition": 901}}, {"model": "template.statetransition", "pk": 901, "fields": {"resulting_state": 923, "next_state_transition": 902}}, {"model": "template.statetransition", "pk": 902, "fields": {"resulting_state": 924, "next_state_transition": 903}}, {"model": "template.statetransition", "pk": 903, "fields": {"resulting_state": 925, "next_state_transition": 904}}, {"model": "template.statetransition", "pk": 904, "fields": {"resulting_state": 926, "next_state_transition": 905}}, {"model": "template.statetransition", "pk": 905, "fields": {"resulting_state": 927, "next_state_transition": 906}}, {"model": "template.statetransition", "pk": 906, "fields": {"resulting_state": 928, "next_state_transition": 907}}, {"model": "template.statetransition", "pk": 907, "fields": {"resulting_state": 929, "next_state_transition": 908}}, {"model": "template.statetransition", "pk": 908, "fields": {"resulting_state": 930, "next_state_transition": 909}}, {"model": "template.statetransition", "pk": 909, "fields": {"resulting_state": 931, "next_state_transition": 910}}, {"model": "template.statetransition", "pk": 910, "fields": {"resulting_state": 932, "next_state_transition": 911}}, {"model": "template.statetransition", "pk": 911, "fields": {"resulting_state": 933, "next_state_transition": 912}}, {"model": "template.statetransition", "pk": 912, "fields": {"resulting_state": 934, "next_state_transition": 913}}, {"model": "template.statetransition", "pk": 913, "fields": {"resulting_state": 935, "next_state_transition": 914}}, {"model": "template.statetransition", "pk": 914, "fields": {"resulting_state": 936, "next_state_transition": 915}}, {"model": "template.statetransition", "pk": 915, "fields": {"resulting_state": 937, "next_state_transition": 916}}, {"model": "template.statetransition", "pk": 916, "fields": {"resulting_state": 938, "next_state_transition": 917}}, {"model": "template.statetransition", "pk": 917, "fields": {"resulting_state": 939, "next_state_transition": 918}}, {"model": "template.statetransition", "pk": 918, "fields": {"resulting_state": 940, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 919, "fields": {"resulting_state": 892, "next_state_transition": 920}}, {"model": "template.statetransition", "pk": 920, "fields": {"resulting_state": 941, "next_state_transition": 921}}, {"model": "template.statetransition", "pk": 921, "fields": {"resulting_state": 942, "next_state_transition": 922}}, {"model": "template.statetransition", "pk": 922, "fields": {"resulting_state": 943, "next_state_transition": 923}}, {"model": "template.statetransition", "pk": 923, "fields": {"resulting_state": 944, "next_state_transition": 924}}, {"model": "template.statetransition", "pk": 924, "fields": {"resulting_state": 945, "next_state_transition": 925}}, {"model": "template.statetransition", "pk": 925, "fields": {"resulting_state": 946, "next_state_transition": 926}}, {"model": "template.statetransition", "pk": 926, "fields": {"resulting_state": 947, "next_state_transition": 927}}, {"model": "template.statetransition", "pk": 927, "fields": {"resulting_state": 948, "next_state_transition": 928}}, {"model": "template.statetransition", "pk": 928, "fields": {"resulting_state": 949, "next_state_transition": 929}}, {"model": "template.statetransition", "pk": 929, "fields": {"resulting_state": 950, "next_state_transition": 930}}, {"model": "template.statetransition", "pk": 930, "fields": {"resulting_state": 951, "next_state_transition": 931}}, {"model": "template.statetransition", "pk": 931, "fields": {"resulting_state": 952, "next_state_transition": 932}}, {"model": "template.statetransition", "pk": 932, "fields": {"resulting_state": 953, "next_state_transition": 933}}, {"model": "template.statetransition", "pk": 933, "fields": {"resulting_state": 954, "next_state_transition": 934}}, {"model": "template.statetransition", "pk": 934, "fields": {"resulting_state": 955, "next_state_transition": 935}}, {"model": "template.statetransition", "pk": 935, "fields": {"resulting_state": 956, "next_state_transition": 936}}, {"model": "template.statetransition", "pk": 936, "fields": {"resulting_state": 957, "next_state_transition": 937}}, {"model": "template.statetransition", "pk": 937, "fields": {"resulting_state": 958, "next_state_transition": 938}}, {"model": "template.statetransition", "pk": 938, "fields": {"resulting_state": 959, "next_state_transition": 939}}, {"model": "template.statetransition", "pk": 939, "fields": {"resulting_state": 960, "next_state_transition": 940}}, {"model": "template.statetransition", "pk": 940, "fields": {"resulting_state": 961, "next_state_transition": 941}}, {"model": "template.statetransition", "pk": 941, "fields": {"resulting_state": 962, "next_state_transition": 942}}, {"model": "template.statetransition", "pk": 942, "fields": {"resulting_state": 963, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 943, "fields": {"resulting_state": 890, "next_state_transition": 919}}, {"model": "template.statetransition", "pk": 944, "fields": {"resulting_state": 889, "next_state_transition": 945}}, {"model": "template.statetransition", "pk": 945, "fields": {"resulting_state": 964, "next_state_transition": 946}}, {"model": "template.statetransition", "pk": 946, "fields": {"resulting_state": 965, "next_state_transition": 947}}, {"model": "template.statetransition", "pk": 947, "fields": {"resulting_state": 966, "next_state_transition": 948}}, {"model": "template.statetransition", "pk": 948, "fields": {"resulting_state": 967, "next_state_transition": 949}}, {"model": "template.statetransition", "pk": 949, "fields": {"resulting_state": 968, "next_state_transition": 950}}, {"model": "template.statetransition", "pk": 950, "fields": {"resulting_state": 969, "next_state_transition": 951}}, {"model": "template.statetransition", "pk": 951, "fields": {"resulting_state": 970, "next_state_transition": 952}}, {"model": "template.statetransition", "pk": 952, "fields": {"resulting_state": 971, "next_state_transition": 953}}, {"model": "template.statetransition", "pk": 953, "fields": {"resulting_state": 972, "next_state_transition": 954}}, {"model": "template.statetransition", "pk": 954, "fields": {"resulting_state": 973, "next_state_transition": 955}}, {"model": "template.statetransition", "pk": 955, "fields": {"resulting_state": 974, "next_state_transition": 956}}, {"model": "template.statetransition", "pk": 956, "fields": {"resulting_state": 975, "next_state_transition": 957}}, {"model": "template.statetransition", "pk": 957, "fields": {"resulting_state": 976, "next_state_transition": 958}}, {"model": "template.statetransition", "pk": 958, "fields": {"resulting_state": 977, "next_state_transition": 959}}, {"model": "template.statetransition", "pk": 959, "fields": {"resulting_state": 978, "next_state_transition": 960}}, {"model": "template.statetransition", "pk": 960, "fields": {"resulting_state": 979, "next_state_transition": 961}}, {"model": "template.statetransition", "pk": 961, "fields": {"resulting_state": 980, "next_state_transition": 962}}, {"model": "template.statetransition", "pk": 962, "fields": {"resulting_state": 981, "next_state_transition": 963}}, {"model": "template.statetransition", "pk": 963, "fields": {"resulting_state": 982, "next_state_transition": 964}}, {"model": "template.statetransition", "pk": 964, "fields": {"resulting_state": 983, "next_state_transition": 965}}, {"model": "template.statetransition", "pk": 965, "fields": {"resulting_state": 984, "next_state_transition": 966}}, {"model": "template.statetransition", "pk": 966, "fields": {"resulting_state": 985, "next_state_transition": 967}}, {"model": "template.statetransition", "pk": 967, "fields": {"resulting_state": 986, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 968, "fields": {"resulting_state": 888, "next_state_transition": 969}}, {"model": "template.statetransition", "pk": 969, "fields": {"resulting_state": 987, "next_state_transition": 970}}, {"model": "template.statetransition", "pk": 970, "fields": {"resulting_state": 988, "next_state_transition": 971}}, {"model": "template.statetransition", "pk": 971, "fields": {"resulting_state": 989, "next_state_transition": 972}}, {"model": "template.statetransition", "pk": 972, "fields": {"resulting_state": 990, "next_state_transition": 973}}, {"model": "template.statetransition", "pk": 973, "fields": {"resulting_state": 991, "next_state_transition": 974}}, {"model": "template.statetransition", "pk": 974, "fields": {"resulting_state": 992, "next_state_transition": 975}}, {"model": "template.statetransition", "pk": 975, "fields": {"resulting_state": 993, "next_state_transition": 976}}, {"model": "template.statetransition", "pk": 976, "fields": {"resulting_state": 994, "next_state_transition": 977}}, {"model": "template.statetransition", "pk": 977, "fields": {"resulting_state": 995, "next_state_transition": 978}}, {"model": "template.statetransition", "pk": 978, "fields": {"resulting_state": 996, "next_state_transition": 979}}, {"model": "template.statetransition", "pk": 979, "fields": {"resulting_state": 997, "next_state_transition": 980}}, {"model": "template.statetransition", "pk": 980, "fields": {"resulting_state": 998, "next_state_transition": 981}}, {"model": "template.statetransition", "pk": 981, "fields": {"resulting_state": 999, "next_state_transition": 982}}, {"model": "template.statetransition", "pk": 982, "fields": {"resulting_state": 1000, "next_state_transition": 983}}, {"model": "template.statetransition", "pk": 983, "fields": {"resulting_state": 1001, "next_state_transition": 984}}, {"model": "template.statetransition", "pk": 984, "fields": {"resulting_state": 1002, "next_state_transition": 985}}, {"model": "template.statetransition", "pk": 985, "fields": {"resulting_state": 1003, "next_state_transition": 986}}, {"model": "template.statetransition", "pk": 986, "fields": {"resulting_state": 1004, "next_state_transition": 987}}, {"model": "template.statetransition", "pk": 987, "fields": {"resulting_state": 1005, "next_state_transition": 988}}, {"model": "template.statetransition", "pk": 988, "fields": {"resulting_state": 1006, "next_state_transition": 989}}, {"model": "template.statetransition", "pk": 989, "fields": {"resulting_state": 1007, "next_state_transition": 990}}, {"model": "template.statetransition", "pk": 990, "fields": {"resulting_state": 1008, "next_state_transition": 991}}, {"model": "template.statetransition", "pk": 991, "fields": {"resulting_state": 1009, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 992, "fields": {"resulting_state": 887, "next_state_transition": 993}}, {"model": "template.statetransition", "pk": 993, "fields": {"resulting_state": 1010, "next_state_transition": 994}}, {"model": "template.statetransition", "pk": 994, "fields": {"resulting_state": 1011, "next_state_transition": 995}}, {"model": "template.statetransition", "pk": 995, "fields": {"resulting_state": 1012, "next_state_transition": 996}}, {"model": "template.statetransition", "pk": 996, "fields": {"resulting_state": 1013, "next_state_transition": 997}}, {"model": "template.statetransition", "pk": 997, "fields": {"resulting_state": 1014, "next_state_transition": 998}}, {"model": "template.statetransition", "pk": 998, "fields": {"resulting_state": 1015, "next_state_transition": 999}}, {"model": "template.statetransition", "pk": 999, "fields": {"resulting_state": 1016, "next_state_transition": 1000}}, {"model": "template.statetransition", "pk": 1000, "fields": {"resulting_state": 1017, "next_state_transition": 1001}}, {"model": "template.statetransition", "pk": 1001, "fields": {"resulting_state": 1018, "next_state_transition": 1002}}, {"model": "template.statetransition", "pk": 1002, "fields": {"resulting_state": 1019, "next_state_transition": 1003}}, {"model": "template.statetransition", "pk": 1003, "fields": {"resulting_state": 1020, "next_state_transition": 1004}}, {"model": "template.statetransition", "pk": 1004, "fields": {"resulting_state": 1021, "next_state_transition": 1005}}, {"model": "template.statetransition", "pk": 1005, "fields": {"resulting_state": 1022, "next_state_transition": 1006}}, {"model": "template.statetransition", "pk": 1006, "fields": {"resulting_state": 1023, "next_state_transition": 1007}}, {"model": "template.statetransition", "pk": 1007, "fields": {"resulting_state": 1024, "next_state_transition": 1008}}, {"model": "template.statetransition", "pk": 1008, "fields": {"resulting_state": 1025, "next_state_transition": 1009}}, {"model": "template.statetransition", "pk": 1009, "fields": {"resulting_state": 1026, "next_state_transition": 1010}}, {"model": "template.statetransition", "pk": 1010, "fields": {"resulting_state": 1027, "next_state_transition": 1011}}, {"model": "template.statetransition", "pk": 1011, "fields": {"resulting_state": 1028, "next_state_transition": 1012}}, {"model": "template.statetransition", "pk": 1012, "fields": {"resulting_state": 1029, "next_state_transition": 1013}}, {"model": "template.statetransition", "pk": 1013, "fields": {"resulting_state": 1030, "next_state_transition": 1014}}, {"model": "template.statetransition", "pk": 1014, "fields": {"resulting_state": 1031, "next_state_transition": 1015}}, {"model": "template.statetransition", "pk": 1015, "fields": {"resulting_state": 1032, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1016, "fields": {"resulting_state": 886, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1017, "fields": {"resulting_state": 885, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1018, "fields": {"resulting_state": 884, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1019, "fields": {"resulting_state": 1036, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1020, "fields": {"resulting_state": 1035, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1021, "fields": {"resulting_state": 1034, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1022, "fields": {"resulting_state": 1046, "next_state_transition": 1025}}, {"model": "template.statetransition", "pk": 1023, "fields": {"resulting_state": 1049, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1024, "fields": {"resulting_state": 1048, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1025, "fields": {"resulting_state": 1047, "next_state_transition": 1026}}, {"model": "template.statetransition", "pk": 1026, "fields": {"resulting_state": 1050, "next_state_transition": 1027}}, {"model": "template.statetransition", "pk": 1027, "fields": {"resulting_state": 1051, "next_state_transition": 1028}}, {"model": "template.statetransition", "pk": 1028, "fields": {"resulting_state": 1052, "next_state_transition": 1029}}, {"model": "template.statetransition", "pk": 1029, "fields": {"resulting_state": 1053, "next_state_transition": 1030}}, {"model": "template.statetransition", "pk": 1030, "fields": {"resulting_state": 1054, "next_state_transition": 1031}}, {"model": "template.statetransition", "pk": 1031, "fields": {"resulting_state": 1055, "next_state_transition": 1032}}, {"model": "template.statetransition", "pk": 1032, "fields": {"resulting_state": 1056, "next_state_transition": 1033}}, {"model": "template.statetransition", "pk": 1033, "fields": {"resulting_state": 1057, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1034, "fields": {"resulting_state": 1045, "next_state_transition": 1035}}, {"model": "template.statetransition", "pk": 1035, "fields": {"resulting_state": 1058, "next_state_transition": 1036}}, {"model": "template.statetransition", "pk": 1036, "fields": {"resulting_state": 1059, "next_state_transition": 1037}}, {"model": "template.statetransition", "pk": 1037, "fields": {"resulting_state": 1060, "next_state_transition": 1038}}, {"model": "template.statetransition", "pk": 1038, "fields": {"resulting_state": 1061, "next_state_transition": 1039}}, {"model": "template.statetransition", "pk": 1039, "fields": {"resulting_state": 1062, "next_state_transition": 1040}}, {"model": "template.statetransition", "pk": 1040, "fields": {"resulting_state": 1063, "next_state_transition": 1041}}, {"model": "template.statetransition", "pk": 1041, "fields": {"resulting_state": 1064, "next_state_transition": 1042}}, {"model": "template.statetransition", "pk": 1042, "fields": {"resulting_state": 1065, "next_state_transition": 1043}}, {"model": "template.statetransition", "pk": 1043, "fields": {"resulting_state": 1066, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1044, "fields": {"resulting_state": 1044, "next_state_transition": 1045}}, {"model": "template.statetransition", "pk": 1045, "fields": {"resulting_state": 1067, "next_state_transition": 1046}}, {"model": "template.statetransition", "pk": 1046, "fields": {"resulting_state": 1068, "next_state_transition": 1047}}, {"model": "template.statetransition", "pk": 1047, "fields": {"resulting_state": 1069, "next_state_transition": 1048}}, {"model": "template.statetransition", "pk": 1048, "fields": {"resulting_state": 1070, "next_state_transition": 1049}}, {"model": "template.statetransition", "pk": 1049, "fields": {"resulting_state": 1071, "next_state_transition": 1050}}, {"model": "template.statetransition", "pk": 1050, "fields": {"resulting_state": 1072, "next_state_transition": 1051}}, {"model": "template.statetransition", "pk": 1051, "fields": {"resulting_state": 1073, "next_state_transition": 1052}}, {"model": "template.statetransition", "pk": 1052, "fields": {"resulting_state": 1074, "next_state_transition": 1053}}, {"model": "template.statetransition", "pk": 1053, "fields": {"resulting_state": 1075, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1054, "fields": {"resulting_state": 1043, "next_state_transition": 1055}}, {"model": "template.statetransition", "pk": 1055, "fields": {"resulting_state": 1076, "next_state_transition": 1056}}, {"model": "template.statetransition", "pk": 1056, "fields": {"resulting_state": 1077, "next_state_transition": 1057}}, {"model": "template.statetransition", "pk": 1057, "fields": {"resulting_state": 1078, "next_state_transition": 1058}}, {"model": "template.statetransition", "pk": 1058, "fields": {"resulting_state": 1079, "next_state_transition": 1059}}, {"model": "template.statetransition", "pk": 1059, "fields": {"resulting_state": 1080, "next_state_transition": 1060}}, {"model": "template.statetransition", "pk": 1060, "fields": {"resulting_state": 1081, "next_state_transition": 1061}}, {"model": "template.statetransition", "pk": 1061, "fields": {"resulting_state": 1082, "next_state_transition": 1062}}, {"model": "template.statetransition", "pk": 1062, "fields": {"resulting_state": 1083, "next_state_transition": 1063}}, {"model": "template.statetransition", "pk": 1063, "fields": {"resulting_state": 1084, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1064, "fields": {"resulting_state": 1042, "next_state_transition": 1065}}, {"model": "template.statetransition", "pk": 1065, "fields": {"resulting_state": 1085, "next_state_transition": 1066}}, {"model": "template.statetransition", "pk": 1066, "fields": {"resulting_state": 1086, "next_state_transition": 1067}}, {"model": "template.statetransition", "pk": 1067, "fields": {"resulting_state": 1087, "next_state_transition": 1068}}, {"model": "template.statetransition", "pk": 1068, "fields": {"resulting_state": 1088, "next_state_transition": 1069}}, {"model": "template.statetransition", "pk": 1069, "fields": {"resulting_state": 1089, "next_state_transition": 1070}}, {"model": "template.statetransition", "pk": 1070, "fields": {"resulting_state": 1090, "next_state_transition": 1071}}, {"model": "template.statetransition", "pk": 1071, "fields": {"resulting_state": 1091, "next_state_transition": 1072}}, {"model": "template.statetransition", "pk": 1072, "fields": {"resulting_state": 1092, "next_state_transition": 1073}}, {"model": "template.statetransition", "pk": 1073, "fields": {"resulting_state": 1093, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1074, "fields": {"resulting_state": 1041, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1075, "fields": {"resulting_state": 1040, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1076, "fields": {"resulting_state": 1039, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1077, "fields": {"resulting_state": 1038, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1078, "fields": {"resulting_state": 1098, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1079, "fields": {"resulting_state": 1097, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1080, "fields": {"resulting_state": 1096, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1081, "fields": {"resulting_state": 1095, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1082, "fields": {"resulting_state": 1109, "next_state_transition": 1083}}, {"model": "template.statetransition", "pk": 1083, "fields": {"resulting_state": 1110, "next_state_transition": 1084}}, {"model": "template.statetransition", "pk": 1084, "fields": {"resulting_state": 1111, "next_state_transition": 1085}}, {"model": "template.statetransition", "pk": 1085, "fields": {"resulting_state": 1112, "next_state_transition": 1086}}, {"model": "template.statetransition", "pk": 1086, "fields": {"resulting_state": 1113, "next_state_transition": 1087}}, {"model": "template.statetransition", "pk": 1087, "fields": {"resulting_state": 1114, "next_state_transition": 1088}}, {"model": "template.statetransition", "pk": 1088, "fields": {"resulting_state": 1115, "next_state_transition": 1089}}, {"model": "template.statetransition", "pk": 1089, "fields": {"resulting_state": 1116, "next_state_transition": 1090}}, {"model": "template.statetransition", "pk": 1090, "fields": {"resulting_state": 1117, "next_state_transition": 1091}}, {"model": "template.statetransition", "pk": 1091, "fields": {"resulting_state": 1118, "next_state_transition": 1092}}, {"model": "template.statetransition", "pk": 1092, "fields": {"resulting_state": 1119, "next_state_transition": 1093}}, {"model": "template.statetransition", "pk": 1093, "fields": {"resulting_state": 1120, "next_state_transition": 1094}}, {"model": "template.statetransition", "pk": 1094, "fields": {"resulting_state": 1121, "next_state_transition": 1095}}, {"model": "template.statetransition", "pk": 1095, "fields": {"resulting_state": 1122, "next_state_transition": 1096}}, {"model": "template.statetransition", "pk": 1096, "fields": {"resulting_state": 1123, "next_state_transition": 1097}}, {"model": "template.statetransition", "pk": 1097, "fields": {"resulting_state": 1124, "next_state_transition": 1098}}, {"model": "template.statetransition", "pk": 1098, "fields": {"resulting_state": 1125, "next_state_transition": 1099}}, {"model": "template.statetransition", "pk": 1099, "fields": {"resulting_state": 1126, "next_state_transition": 1100}}, {"model": "template.statetransition", "pk": 1100, "fields": {"resulting_state": 1127, "next_state_transition": 1101}}, {"model": "template.statetransition", "pk": 1101, "fields": {"resulting_state": 1128, "next_state_transition": 1102}}, {"model": "template.statetransition", "pk": 1102, "fields": {"resulting_state": 1129, "next_state_transition": 1103}}, {"model": "template.statetransition", "pk": 1103, "fields": {"resulting_state": 1130, "next_state_transition": 1104}}, {"model": "template.statetransition", "pk": 1104, "fields": {"resulting_state": 1131, "next_state_transition": 1105}}, {"model": "template.statetransition", "pk": 1105, "fields": {"resulting_state": 1132, "next_state_transition": 1106}}, {"model": "template.statetransition", "pk": 1106, "fields": {"resulting_state": 1133, "next_state_transition": 1107}}, {"model": "template.statetransition", "pk": 1107, "fields": {"resulting_state": 1134, "next_state_transition": 1108}}, {"model": "template.statetransition", "pk": 1108, "fields": {"resulting_state": 1135, "next_state_transition": 1109}}, {"model": "template.statetransition", "pk": 1109, "fields": {"resulting_state": 1136, "next_state_transition": 1110}}, {"model": "template.statetransition", "pk": 1110, "fields": {"resulting_state": 1137, "next_state_transition": 1111}}, {"model": "template.statetransition", "pk": 1111, "fields": {"resulting_state": 1138, "next_state_transition": 1112}}, {"model": "template.statetransition", "pk": 1112, "fields": {"resulting_state": 1139, "next_state_transition": 1113}}, {"model": "template.statetransition", "pk": 1113, "fields": {"resulting_state": 1140, "next_state_transition": 1114}}, {"model": "template.statetransition", "pk": 1114, "fields": {"resulting_state": 1141, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1115, "fields": {"resulting_state": 1108, "next_state_transition": 1083}}, {"model": "template.statetransition", "pk": 1116, "fields": {"resulting_state": 1107, "next_state_transition": 1117}}, {"model": "template.statetransition", "pk": 1117, "fields": {"resulting_state": 1142, "next_state_transition": 1118}}, {"model": "template.statetransition", "pk": 1118, "fields": {"resulting_state": 1143, "next_state_transition": 1119}}, {"model": "template.statetransition", "pk": 1119, "fields": {"resulting_state": 1144, "next_state_transition": 1120}}, {"model": "template.statetransition", "pk": 1120, "fields": {"resulting_state": 1145, "next_state_transition": 1121}}, {"model": "template.statetransition", "pk": 1121, "fields": {"resulting_state": 1146, "next_state_transition": 1122}}, {"model": "template.statetransition", "pk": 1122, "fields": {"resulting_state": 1147, "next_state_transition": 1123}}, {"model": "template.statetransition", "pk": 1123, "fields": {"resulting_state": 1148, "next_state_transition": 1124}}, {"model": "template.statetransition", "pk": 1124, "fields": {"resulting_state": 1149, "next_state_transition": 1125}}, {"model": "template.statetransition", "pk": 1125, "fields": {"resulting_state": 1150, "next_state_transition": 1126}}, {"model": "template.statetransition", "pk": 1126, "fields": {"resulting_state": 1151, "next_state_transition": 1127}}, {"model": "template.statetransition", "pk": 1127, "fields": {"resulting_state": 1152, "next_state_transition": 1128}}, {"model": "template.statetransition", "pk": 1128, "fields": {"resulting_state": 1153, "next_state_transition": 1129}}, {"model": "template.statetransition", "pk": 1129, "fields": {"resulting_state": 1154, "next_state_transition": 1130}}, {"model": "template.statetransition", "pk": 1130, "fields": {"resulting_state": 1155, "next_state_transition": 1131}}, {"model": "template.statetransition", "pk": 1131, "fields": {"resulting_state": 1156, "next_state_transition": 1132}}, {"model": "template.statetransition", "pk": 1132, "fields": {"resulting_state": 1157, "next_state_transition": 1133}}, {"model": "template.statetransition", "pk": 1133, "fields": {"resulting_state": 1158, "next_state_transition": 1134}}, {"model": "template.statetransition", "pk": 1134, "fields": {"resulting_state": 1159, "next_state_transition": 1135}}, {"model": "template.statetransition", "pk": 1135, "fields": {"resulting_state": 1160, "next_state_transition": 1136}}, {"model": "template.statetransition", "pk": 1136, "fields": {"resulting_state": 1161, "next_state_transition": 1137}}, {"model": "template.statetransition", "pk": 1137, "fields": {"resulting_state": 1162, "next_state_transition": 1138}}, {"model": "template.statetransition", "pk": 1138, "fields": {"resulting_state": 1163, "next_state_transition": 1139}}, {"model": "template.statetransition", "pk": 1139, "fields": {"resulting_state": 1164, "next_state_transition": 1140}}, {"model": "template.statetransition", "pk": 1140, "fields": {"resulting_state": 1165, "next_state_transition": 1141}}, {"model": "template.statetransition", "pk": 1141, "fields": {"resulting_state": 1166, "next_state_transition": 1142}}, {"model": "template.statetransition", "pk": 1142, "fields": {"resulting_state": 1167, "next_state_transition": 1143}}, {"model": "template.statetransition", "pk": 1143, "fields": {"resulting_state": 1168, "next_state_transition": 1144}}, {"model": "template.statetransition", "pk": 1144, "fields": {"resulting_state": 1169, "next_state_transition": 1145}}, {"model": "template.statetransition", "pk": 1145, "fields": {"resulting_state": 1170, "next_state_transition": 1146}}, {"model": "template.statetransition", "pk": 1146, "fields": {"resulting_state": 1171, "next_state_transition": 1147}}, {"model": "template.statetransition", "pk": 1147, "fields": {"resulting_state": 1172, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1148, "fields": {"resulting_state": 1106, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1149, "fields": {"resulting_state": 1105, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1150, "fields": {"resulting_state": 1104, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1151, "fields": {"resulting_state": 1103, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1152, "fields": {"resulting_state": 1102, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1153, "fields": {"resulting_state": 1101, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1154, "fields": {"resulting_state": 1100, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1155, "fields": {"resulting_state": 1180, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1156, "fields": {"resulting_state": 1179, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1157, "fields": {"resulting_state": 1178, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1158, "fields": {"resulting_state": 1177, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1159, "fields": {"resulting_state": 1176, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1160, "fields": {"resulting_state": 1175, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1161, "fields": {"resulting_state": 1174, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1162, "fields": {"resulting_state": 1190, "next_state_transition": 1163}}, {"model": "template.statetransition", "pk": 1163, "fields": {"resulting_state": 1191, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1164, "fields": {"resulting_state": 1189, "next_state_transition": 1165}}, {"model": "template.statetransition", "pk": 1165, "fields": {"resulting_state": 1192, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1166, "fields": {"resulting_state": 1188, "next_state_transition": 1167}}, {"model": "template.statetransition", "pk": 1167, "fields": {"resulting_state": 1193, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1168, "fields": {"resulting_state": 1187, "next_state_transition": 1169}}, {"model": "template.statetransition", "pk": 1169, "fields": {"resulting_state": 1194, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1170, "fields": {"resulting_state": 1186, "next_state_transition": 1171}}, {"model": "template.statetransition", "pk": 1171, "fields": {"resulting_state": 1195, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1172, "fields": {"resulting_state": 1185, "next_state_transition": 1173}}, {"model": "template.statetransition", "pk": 1173, "fields": {"resulting_state": 1196, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1174, "fields": {"resulting_state": 1184, "next_state_transition": 1175}}, {"model": "template.statetransition", "pk": 1175, "fields": {"resulting_state": 1197, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1176, "fields": {"resulting_state": 1183, "next_state_transition": 1177}}, {"model": "template.statetransition", "pk": 1177, "fields": {"resulting_state": 1198, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1178, "fields": {"resulting_state": 1182, "next_state_transition": 1179}}, {"model": "template.statetransition", "pk": 1179, "fields": {"resulting_state": 1199, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1180, "fields": {"resulting_state": 1210, "next_state_transition": 1181}}, {"model": "template.statetransition", "pk": 1181, "fields": {"resulting_state": 1211, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1182, "fields": {"resulting_state": 1209, "next_state_transition": 1183}}, {"model": "template.statetransition", "pk": 1183, "fields": {"resulting_state": 1212, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1184, "fields": {"resulting_state": 1208, "next_state_transition": 1185}}, {"model": "template.statetransition", "pk": 1185, "fields": {"resulting_state": 1213, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1186, "fields": {"resulting_state": 1207, "next_state_transition": 1187}}, {"model": "template.statetransition", "pk": 1187, "fields": {"resulting_state": 1214, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1188, "fields": {"resulting_state": 1206, "next_state_transition": 1189}}, {"model": "template.statetransition", "pk": 1189, "fields": {"resulting_state": 1215, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1190, "fields": {"resulting_state": 1205, "next_state_transition": 1191}}, {"model": "template.statetransition", "pk": 1191, "fields": {"resulting_state": 1216, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1192, "fields": {"resulting_state": 1204, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1193, "fields": {"resulting_state": 1203, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1194, "fields": {"resulting_state": 1202, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1195, "fields": {"resulting_state": 1220, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1196, "fields": {"resulting_state": 1219, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1197, "fields": {"resulting_state": 1218, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1198, "fields": {"resulting_state": 1230, "next_state_transition": 1199}}, {"model": "template.statetransition", "pk": 1199, "fields": {"resulting_state": 1231, "next_state_transition": 1200}}, {"model": "template.statetransition", "pk": 1200, "fields": {"resulting_state": 1232, "next_state_transition": 1201}}, {"model": "template.statetransition", "pk": 1201, "fields": {"resulting_state": 1233, "next_state_transition": 1202}}, {"model": "template.statetransition", "pk": 1202, "fields": {"resulting_state": 1234, "next_state_transition": 1203}}, {"model": "template.statetransition", "pk": 1203, "fields": {"resulting_state": 1235, "next_state_transition": 1204}}, {"model": "template.statetransition", "pk": 1204, "fields": {"resulting_state": 1236, "next_state_transition": 1205}}, {"model": "template.statetransition", "pk": 1205, "fields": {"resulting_state": 1237, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1206, "fields": {"resulting_state": 1229, "next_state_transition": 1207}}, {"model": "template.statetransition", "pk": 1207, "fields": {"resulting_state": 1238, "next_state_transition": 1208}}, {"model": "template.statetransition", "pk": 1208, "fields": {"resulting_state": 1239, "next_state_transition": 1209}}, {"model": "template.statetransition", "pk": 1209, "fields": {"resulting_state": 1240, "next_state_transition": 1210}}, {"model": "template.statetransition", "pk": 1210, "fields": {"resulting_state": 1241, "next_state_transition": 1211}}, {"model": "template.statetransition", "pk": 1211, "fields": {"resulting_state": 1242, "next_state_transition": 1212}}, {"model": "template.statetransition", "pk": 1212, "fields": {"resulting_state": 1243, "next_state_transition": 1213}}, {"model": "template.statetransition", "pk": 1213, "fields": {"resulting_state": 1244, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1214, "fields": {"resulting_state": 1228, "next_state_transition": 1215}}, {"model": "template.statetransition", "pk": 1215, "fields": {"resulting_state": 1245, "next_state_transition": 1216}}, {"model": "template.statetransition", "pk": 1216, "fields": {"resulting_state": 1246, "next_state_transition": 1217}}, {"model": "template.statetransition", "pk": 1217, "fields": {"resulting_state": 1247, "next_state_transition": 1218}}, {"model": "template.statetransition", "pk": 1218, "fields": {"resulting_state": 1248, "next_state_transition": 1219}}, {"model": "template.statetransition", "pk": 1219, "fields": {"resulting_state": 1249, "next_state_transition": 1220}}, {"model": "template.statetransition", "pk": 1220, "fields": {"resulting_state": 1250, "next_state_transition": 1221}}, {"model": "template.statetransition", "pk": 1221, "fields": {"resulting_state": 1251, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1222, "fields": {"resulting_state": 1227, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1223, "fields": {"resulting_state": 1226, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1224, "fields": {"resulting_state": 1225, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1225, "fields": {"resulting_state": 1224, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1226, "fields": {"resulting_state": 1223, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1227, "fields": {"resulting_state": 1222, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1228, "fields": {"resulting_state": 1258, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1229, "fields": {"resulting_state": 1257, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1230, "fields": {"resulting_state": 1256, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1231, "fields": {"resulting_state": 1255, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1232, "fields": {"resulting_state": 1254, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1233, "fields": {"resulting_state": 1253, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1234, "fields": {"resulting_state": 1268, "next_state_transition": 1235}}, {"model": "template.statetransition", "pk": 1235, "fields": {"resulting_state": 1269, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1236, "fields": {"resulting_state": 1267, "next_state_transition": 1237}}, {"model": "template.statetransition", "pk": 1237, "fields": {"resulting_state": 1270, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1238, "fields": {"resulting_state": 1266, "next_state_transition": 1239}}, {"model": "template.statetransition", "pk": 1239, "fields": {"resulting_state": 1271, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1240, "fields": {"resulting_state": 1265, "next_state_transition": 1241}}, {"model": "template.statetransition", "pk": 1241, "fields": {"resulting_state": 1272, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1242, "fields": {"resulting_state": 1264, "next_state_transition": 1243}}, {"model": "template.statetransition", "pk": 1243, "fields": {"resulting_state": 1273, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1244, "fields": {"resulting_state": 1263, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1245, "fields": {"resulting_state": 1262, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1246, "fields": {"resulting_state": 1261, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1247, "fields": {"resulting_state": 1260, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1248, "fields": {"resulting_state": 1278, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1249, "fields": {"resulting_state": 1277, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1250, "fields": {"resulting_state": 1276, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1251, "fields": {"resulting_state": 1275, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1252, "fields": {"resulting_state": 1288, "next_state_transition": 1253}}, {"model": "template.statetransition", "pk": 1253, "fields": {"resulting_state": 1289, "next_state_transition": 1254}}, {"model": "template.statetransition", "pk": 1254, "fields": {"resulting_state": 1290, "next_state_transition": 1255}}, {"model": "template.statetransition", "pk": 1255, "fields": {"resulting_state": 1291, "next_state_transition": 1256}}, {"model": "template.statetransition", "pk": 1256, "fields": {"resulting_state": 1292, "next_state_transition": 1257}}, {"model": "template.statetransition", "pk": 1257, "fields": {"resulting_state": 1293, "next_state_transition": 1258}}, {"model": "template.statetransition", "pk": 1258, "fields": {"resulting_state": 1294, "next_state_transition": 1259}}, {"model": "template.statetransition", "pk": 1259, "fields": {"resulting_state": 1295, "next_state_transition": 1260}}, {"model": "template.statetransition", "pk": 1260, "fields": {"resulting_state": 1296, "next_state_transition": 1261}}, {"model": "template.statetransition", "pk": 1261, "fields": {"resulting_state": 1297, "next_state_transition": 1262}}, {"model": "template.statetransition", "pk": 1262, "fields": {"resulting_state": 1298, "next_state_transition": 1263}}, {"model": "template.statetransition", "pk": 1263, "fields": {"resulting_state": 1299, "next_state_transition": 1264}}, {"model": "template.statetransition", "pk": 1264, "fields": {"resulting_state": 1300, "next_state_transition": 1265}}, {"model": "template.statetransition", "pk": 1265, "fields": {"resulting_state": 1301, "next_state_transition": 1266}}, {"model": "template.statetransition", "pk": 1266, "fields": {"resulting_state": 1302, "next_state_transition": 1267}}, {"model": "template.statetransition", "pk": 1267, "fields": {"resulting_state": 1303, "next_state_transition": 1268}}, {"model": "template.statetransition", "pk": 1268, "fields": {"resulting_state": 1304, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1269, "fields": {"resulting_state": 1287, "next_state_transition": 1270}}, {"model": "template.statetransition", "pk": 1270, "fields": {"resulting_state": 1305, "next_state_transition": 1271}}, {"model": "template.statetransition", "pk": 1271, "fields": {"resulting_state": 1306, "next_state_transition": 1272}}, {"model": "template.statetransition", "pk": 1272, "fields": {"resulting_state": 1307, "next_state_transition": 1273}}, {"model": "template.statetransition", "pk": 1273, "fields": {"resulting_state": 1308, "next_state_transition": 1274}}, {"model": "template.statetransition", "pk": 1274, "fields": {"resulting_state": 1309, "next_state_transition": 1275}}, {"model": "template.statetransition", "pk": 1275, "fields": {"resulting_state": 1310, "next_state_transition": 1276}}, {"model": "template.statetransition", "pk": 1276, "fields": {"resulting_state": 1311, "next_state_transition": 1277}}, {"model": "template.statetransition", "pk": 1277, "fields": {"resulting_state": 1312, "next_state_transition": 1278}}, {"model": "template.statetransition", "pk": 1278, "fields": {"resulting_state": 1313, "next_state_transition": 1279}}, {"model": "template.statetransition", "pk": 1279, "fields": {"resulting_state": 1314, "next_state_transition": 1280}}, {"model": "template.statetransition", "pk": 1280, "fields": {"resulting_state": 1315, "next_state_transition": 1281}}, {"model": "template.statetransition", "pk": 1281, "fields": {"resulting_state": 1316, "next_state_transition": 1282}}, {"model": "template.statetransition", "pk": 1282, "fields": {"resulting_state": 1317, "next_state_transition": 1283}}, {"model": "template.statetransition", "pk": 1283, "fields": {"resulting_state": 1318, "next_state_transition": 1284}}, {"model": "template.statetransition", "pk": 1284, "fields": {"resulting_state": 1319, "next_state_transition": 1285}}, {"model": "template.statetransition", "pk": 1285, "fields": {"resulting_state": 1320, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1286, "fields": {"resulting_state": 1286, "next_state_transition": 1287}}, {"model": "template.statetransition", "pk": 1287, "fields": {"resulting_state": 1321, "next_state_transition": 1288}}, {"model": "template.statetransition", "pk": 1288, "fields": {"resulting_state": 1322, "next_state_transition": 1289}}, {"model": "template.statetransition", "pk": 1289, "fields": {"resulting_state": 1323, "next_state_transition": 1290}}, {"model": "template.statetransition", "pk": 1290, "fields": {"resulting_state": 1324, "next_state_transition": 1291}}, {"model": "template.statetransition", "pk": 1291, "fields": {"resulting_state": 1325, "next_state_transition": 1292}}, {"model": "template.statetransition", "pk": 1292, "fields": {"resulting_state": 1326, "next_state_transition": 1293}}, {"model": "template.statetransition", "pk": 1293, "fields": {"resulting_state": 1327, "next_state_transition": 1294}}, {"model": "template.statetransition", "pk": 1294, "fields": {"resulting_state": 1328, "next_state_transition": 1295}}, {"model": "template.statetransition", "pk": 1295, "fields": {"resulting_state": 1329, "next_state_transition": 1296}}, {"model": "template.statetransition", "pk": 1296, "fields": {"resulting_state": 1330, "next_state_transition": 1297}}, {"model": "template.statetransition", "pk": 1297, "fields": {"resulting_state": 1331, "next_state_transition": 1298}}, {"model": "template.statetransition", "pk": 1298, "fields": {"resulting_state": 1332, "next_state_transition": 1299}}, {"model": "template.statetransition", "pk": 1299, "fields": {"resulting_state": 1333, "next_state_transition": 1300}}, {"model": "template.statetransition", "pk": 1300, "fields": {"resulting_state": 1334, "next_state_transition": 1301}}, {"model": "template.statetransition", "pk": 1301, "fields": {"resulting_state": 1335, "next_state_transition": 1302}}, {"model": "template.statetransition", "pk": 1302, "fields": {"resulting_state": 1336, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1303, "fields": {"resulting_state": 1285, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1304, "fields": {"resulting_state": 1284, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1305, "fields": {"resulting_state": 1283, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1306, "fields": {"resulting_state": 1282, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1307, "fields": {"resulting_state": 1281, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1308, "fields": {"resulting_state": 1280, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1309, "fields": {"resulting_state": 1343, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1310, "fields": {"resulting_state": 1342, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1311, "fields": {"resulting_state": 1341, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1312, "fields": {"resulting_state": 1340, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1313, "fields": {"resulting_state": 1339, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1314, "fields": {"resulting_state": 1338, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1315, "fields": {"resulting_state": 1353, "next_state_transition": 1316}}, {"model": "template.statetransition", "pk": 1316, "fields": {"resulting_state": 1354, "next_state_transition": 1317}}, {"model": "template.statetransition", "pk": 1317, "fields": {"resulting_state": 1355, "next_state_transition": 1318}}, {"model": "template.statetransition", "pk": 1318, "fields": {"resulting_state": 1356, "next_state_transition": 1319}}, {"model": "template.statetransition", "pk": 1319, "fields": {"resulting_state": 1357, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1320, "fields": {"resulting_state": 1352, "next_state_transition": 1321}}, {"model": "template.statetransition", "pk": 1321, "fields": {"resulting_state": 1358, "next_state_transition": 1322}}, {"model": "template.statetransition", "pk": 1322, "fields": {"resulting_state": 1359, "next_state_transition": 1323}}, {"model": "template.statetransition", "pk": 1323, "fields": {"resulting_state": 1360, "next_state_transition": 1324}}, {"model": "template.statetransition", "pk": 1324, "fields": {"resulting_state": 1361, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1325, "fields": {"resulting_state": 1351, "next_state_transition": 1326}}, {"model": "template.statetransition", "pk": 1326, "fields": {"resulting_state": 1362, "next_state_transition": 1327}}, {"model": "template.statetransition", "pk": 1327, "fields": {"resulting_state": 1363, "next_state_transition": 1328}}, {"model": "template.statetransition", "pk": 1328, "fields": {"resulting_state": 1364, "next_state_transition": 1329}}, {"model": "template.statetransition", "pk": 1329, "fields": {"resulting_state": 1365, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1330, "fields": {"resulting_state": 1350, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1331, "fields": {"resulting_state": 1349, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1332, "fields": {"resulting_state": 1348, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1333, "fields": {"resulting_state": 1347, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1334, "fields": {"resulting_state": 1346, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1335, "fields": {"resulting_state": 1345, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1336, "fields": {"resulting_state": 1372, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1337, "fields": {"resulting_state": 1371, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1338, "fields": {"resulting_state": 1370, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1339, "fields": {"resulting_state": 1369, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1340, "fields": {"resulting_state": 1368, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1341, "fields": {"resulting_state": 1367, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1342, "fields": {"resulting_state": 1382, "next_state_transition": 1343}}, {"model": "template.statetransition", "pk": 1343, "fields": {"resulting_state": 1383, "next_state_transition": 1344}}, {"model": "template.statetransition", "pk": 1344, "fields": {"resulting_state": 1384, "next_state_transition": 1345}}, {"model": "template.statetransition", "pk": 1345, "fields": {"resulting_state": 1385, "next_state_transition": 1346}}, {"model": "template.statetransition", "pk": 1346, "fields": {"resulting_state": 1386, "next_state_transition": 1347}}, {"model": "template.statetransition", "pk": 1347, "fields": {"resulting_state": 1387, "next_state_transition": 1348}}, {"model": "template.statetransition", "pk": 1348, "fields": {"resulting_state": 1388, "next_state_transition": 1349}}, {"model": "template.statetransition", "pk": 1349, "fields": {"resulting_state": 1389, "next_state_transition": 1350}}, {"model": "template.statetransition", "pk": 1350, "fields": {"resulting_state": 1390, "next_state_transition": 1351}}, {"model": "template.statetransition", "pk": 1351, "fields": {"resulting_state": 1391, "next_state_transition": 1352}}, {"model": "template.statetransition", "pk": 1352, "fields": {"resulting_state": 1392, "next_state_transition": 1353}}, {"model": "template.statetransition", "pk": 1353, "fields": {"resulting_state": 1393, "next_state_transition": 1354}}, {"model": "template.statetransition", "pk": 1354, "fields": {"resulting_state": 1394, "next_state_transition": 1355}}, {"model": "template.statetransition", "pk": 1355, "fields": {"resulting_state": 1395, "next_state_transition": 1356}}, {"model": "template.statetransition", "pk": 1356, "fields": {"resulting_state": 1396, "next_state_transition": 1357}}, {"model": "template.statetransition", "pk": 1357, "fields": {"resulting_state": 1397, "next_state_transition": 1358}}, {"model": "template.statetransition", "pk": 1358, "fields": {"resulting_state": 1398, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1359, "fields": {"resulting_state": 1381, "next_state_transition": 1360}}, {"model": "template.statetransition", "pk": 1360, "fields": {"resulting_state": 1399, "next_state_transition": 1361}}, {"model": "template.statetransition", "pk": 1361, "fields": {"resulting_state": 1400, "next_state_transition": 1362}}, {"model": "template.statetransition", "pk": 1362, "fields": {"resulting_state": 1401, "next_state_transition": 1363}}, {"model": "template.statetransition", "pk": 1363, "fields": {"resulting_state": 1402, "next_state_transition": 1364}}, {"model": "template.statetransition", "pk": 1364, "fields": {"resulting_state": 1403, "next_state_transition": 1365}}, {"model": "template.statetransition", "pk": 1365, "fields": {"resulting_state": 1404, "next_state_transition": 1366}}, {"model": "template.statetransition", "pk": 1366, "fields": {"resulting_state": 1405, "next_state_transition": 1367}}, {"model": "template.statetransition", "pk": 1367, "fields": {"resulting_state": 1406, "next_state_transition": 1368}}, {"model": "template.statetransition", "pk": 1368, "fields": {"resulting_state": 1407, "next_state_transition": 1369}}, {"model": "template.statetransition", "pk": 1369, "fields": {"resulting_state": 1408, "next_state_transition": 1370}}, {"model": "template.statetransition", "pk": 1370, "fields": {"resulting_state": 1409, "next_state_transition": 1371}}, {"model": "template.statetransition", "pk": 1371, "fields": {"resulting_state": 1410, "next_state_transition": 1372}}, {"model": "template.statetransition", "pk": 1372, "fields": {"resulting_state": 1411, "next_state_transition": 1373}}, {"model": "template.statetransition", "pk": 1373, "fields": {"resulting_state": 1412, "next_state_transition": 1374}}, {"model": "template.statetransition", "pk": 1374, "fields": {"resulting_state": 1413, "next_state_transition": 1375}}, {"model": "template.statetransition", "pk": 1375, "fields": {"resulting_state": 1414, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1376, "fields": {"resulting_state": 1380, "next_state_transition": 1377}}, {"model": "template.statetransition", "pk": 1377, "fields": {"resulting_state": 1415, "next_state_transition": 1378}}, {"model": "template.statetransition", "pk": 1378, "fields": {"resulting_state": 1416, "next_state_transition": 1379}}, {"model": "template.statetransition", "pk": 1379, "fields": {"resulting_state": 1417, "next_state_transition": 1380}}, {"model": "template.statetransition", "pk": 1380, "fields": {"resulting_state": 1418, "next_state_transition": 1381}}, {"model": "template.statetransition", "pk": 1381, "fields": {"resulting_state": 1419, "next_state_transition": 1382}}, {"model": "template.statetransition", "pk": 1382, "fields": {"resulting_state": 1420, "next_state_transition": 1383}}, {"model": "template.statetransition", "pk": 1383, "fields": {"resulting_state": 1421, "next_state_transition": 1384}}, {"model": "template.statetransition", "pk": 1384, "fields": {"resulting_state": 1422, "next_state_transition": 1385}}, {"model": "template.statetransition", "pk": 1385, "fields": {"resulting_state": 1423, "next_state_transition": 1386}}, {"model": "template.statetransition", "pk": 1386, "fields": {"resulting_state": 1424, "next_state_transition": 1387}}, {"model": "template.statetransition", "pk": 1387, "fields": {"resulting_state": 1425, "next_state_transition": 1388}}, {"model": "template.statetransition", "pk": 1388, "fields": {"resulting_state": 1426, "next_state_transition": 1389}}, {"model": "template.statetransition", "pk": 1389, "fields": {"resulting_state": 1427, "next_state_transition": 1390}}, {"model": "template.statetransition", "pk": 1390, "fields": {"resulting_state": 1428, "next_state_transition": 1391}}, {"model": "template.statetransition", "pk": 1391, "fields": {"resulting_state": 1429, "next_state_transition": 1392}}, {"model": "template.statetransition", "pk": 1392, "fields": {"resulting_state": 1430, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1393, "fields": {"resulting_state": 1379, "next_state_transition": 1394}}, {"model": "template.statetransition", "pk": 1394, "fields": {"resulting_state": 1431, "next_state_transition": 1395}}, {"model": "template.statetransition", "pk": 1395, "fields": {"resulting_state": 1432, "next_state_transition": 1396}}, {"model": "template.statetransition", "pk": 1396, "fields": {"resulting_state": 1433, "next_state_transition": 1397}}, {"model": "template.statetransition", "pk": 1397, "fields": {"resulting_state": 1434, "next_state_transition": 1398}}, {"model": "template.statetransition", "pk": 1398, "fields": {"resulting_state": 1435, "next_state_transition": 1399}}, {"model": "template.statetransition", "pk": 1399, "fields": {"resulting_state": 1436, "next_state_transition": 1400}}, {"model": "template.statetransition", "pk": 1400, "fields": {"resulting_state": 1437, "next_state_transition": 1401}}, {"model": "template.statetransition", "pk": 1401, "fields": {"resulting_state": 1438, "next_state_transition": 1402}}, {"model": "template.statetransition", "pk": 1402, "fields": {"resulting_state": 1439, "next_state_transition": 1403}}, {"model": "template.statetransition", "pk": 1403, "fields": {"resulting_state": 1440, "next_state_transition": 1404}}, {"model": "template.statetransition", "pk": 1404, "fields": {"resulting_state": 1441, "next_state_transition": 1405}}, {"model": "template.statetransition", "pk": 1405, "fields": {"resulting_state": 1442, "next_state_transition": 1406}}, {"model": "template.statetransition", "pk": 1406, "fields": {"resulting_state": 1443, "next_state_transition": 1407}}, {"model": "template.statetransition", "pk": 1407, "fields": {"resulting_state": 1444, "next_state_transition": 1408}}, {"model": "template.statetransition", "pk": 1408, "fields": {"resulting_state": 1445, "next_state_transition": 1409}}, {"model": "template.statetransition", "pk": 1409, "fields": {"resulting_state": 1446, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1410, "fields": {"resulting_state": 1378, "next_state_transition": 1411}}, {"model": "template.statetransition", "pk": 1411, "fields": {"resulting_state": 1447, "next_state_transition": 1412}}, {"model": "template.statetransition", "pk": 1412, "fields": {"resulting_state": 1448, "next_state_transition": 1413}}, {"model": "template.statetransition", "pk": 1413, "fields": {"resulting_state": 1449, "next_state_transition": 1414}}, {"model": "template.statetransition", "pk": 1414, "fields": {"resulting_state": 1450, "next_state_transition": 1415}}, {"model": "template.statetransition", "pk": 1415, "fields": {"resulting_state": 1451, "next_state_transition": 1416}}, {"model": "template.statetransition", "pk": 1416, "fields": {"resulting_state": 1452, "next_state_transition": 1417}}, {"model": "template.statetransition", "pk": 1417, "fields": {"resulting_state": 1453, "next_state_transition": 1418}}, {"model": "template.statetransition", "pk": 1418, "fields": {"resulting_state": 1454, "next_state_transition": 1419}}, {"model": "template.statetransition", "pk": 1419, "fields": {"resulting_state": 1455, "next_state_transition": 1420}}, {"model": "template.statetransition", "pk": 1420, "fields": {"resulting_state": 1456, "next_state_transition": 1421}}, {"model": "template.statetransition", "pk": 1421, "fields": {"resulting_state": 1457, "next_state_transition": 1422}}, {"model": "template.statetransition", "pk": 1422, "fields": {"resulting_state": 1458, "next_state_transition": 1423}}, {"model": "template.statetransition", "pk": 1423, "fields": {"resulting_state": 1459, "next_state_transition": 1424}}, {"model": "template.statetransition", "pk": 1424, "fields": {"resulting_state": 1460, "next_state_transition": 1425}}, {"model": "template.statetransition", "pk": 1425, "fields": {"resulting_state": 1461, "next_state_transition": 1426}}, {"model": "template.statetransition", "pk": 1426, "fields": {"resulting_state": 1462, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1427, "fields": {"resulting_state": 1377, "next_state_transition": 1428}}, {"model": "template.statetransition", "pk": 1428, "fields": {"resulting_state": 1463, "next_state_transition": 1429}}, {"model": "template.statetransition", "pk": 1429, "fields": {"resulting_state": 1464, "next_state_transition": 1430}}, {"model": "template.statetransition", "pk": 1430, "fields": {"resulting_state": 1465, "next_state_transition": 1431}}, {"model": "template.statetransition", "pk": 1431, "fields": {"resulting_state": 1466, "next_state_transition": 1432}}, {"model": "template.statetransition", "pk": 1432, "fields": {"resulting_state": 1467, "next_state_transition": 1433}}, {"model": "template.statetransition", "pk": 1433, "fields": {"resulting_state": 1468, "next_state_transition": 1434}}, {"model": "template.statetransition", "pk": 1434, "fields": {"resulting_state": 1469, "next_state_transition": 1435}}, {"model": "template.statetransition", "pk": 1435, "fields": {"resulting_state": 1470, "next_state_transition": 1436}}, {"model": "template.statetransition", "pk": 1436, "fields": {"resulting_state": 1471, "next_state_transition": 1437}}, {"model": "template.statetransition", "pk": 1437, "fields": {"resulting_state": 1472, "next_state_transition": 1438}}, {"model": "template.statetransition", "pk": 1438, "fields": {"resulting_state": 1473, "next_state_transition": 1439}}, {"model": "template.statetransition", "pk": 1439, "fields": {"resulting_state": 1474, "next_state_transition": 1440}}, {"model": "template.statetransition", "pk": 1440, "fields": {"resulting_state": 1475, "next_state_transition": 1441}}, {"model": "template.statetransition", "pk": 1441, "fields": {"resulting_state": 1476, "next_state_transition": 1442}}, {"model": "template.statetransition", "pk": 1442, "fields": {"resulting_state": 1477, "next_state_transition": 1443}}, {"model": "template.statetransition", "pk": 1443, "fields": {"resulting_state": 1478, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1444, "fields": {"resulting_state": 1376, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1445, "fields": {"resulting_state": 1375, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1446, "fields": {"resulting_state": 1374, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1447, "fields": {"resulting_state": 1482, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1448, "fields": {"resulting_state": 1481, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1449, "fields": {"resulting_state": 1480, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1450, "fields": {"resulting_state": 1492, "next_state_transition": 1451}}, {"model": "template.statetransition", "pk": 1451, "fields": {"resulting_state": 1493, "next_state_transition": 1452}}, {"model": "template.statetransition", "pk": 1452, "fields": {"resulting_state": 1494, "next_state_transition": 1453}}, {"model": "template.statetransition", "pk": 1453, "fields": {"resulting_state": 1495, "next_state_transition": 1454}}, {"model": "template.statetransition", "pk": 1454, "fields": {"resulting_state": 1496, "next_state_transition": 1455}}, {"model": "template.statetransition", "pk": 1455, "fields": {"resulting_state": 1497, "next_state_transition": 1456}}, {"model": "template.statetransition", "pk": 1456, "fields": {"resulting_state": 1498, "next_state_transition": 1457}}, {"model": "template.statetransition", "pk": 1457, "fields": {"resulting_state": 1499, "next_state_transition": 1458}}, {"model": "template.statetransition", "pk": 1458, "fields": {"resulting_state": 1500, "next_state_transition": 1459}}, {"model": "template.statetransition", "pk": 1459, "fields": {"resulting_state": 1501, "next_state_transition": 1460}}, {"model": "template.statetransition", "pk": 1460, "fields": {"resulting_state": 1502, "next_state_transition": 1461}}, {"model": "template.statetransition", "pk": 1461, "fields": {"resulting_state": 1503, "next_state_transition": 1462}}, {"model": "template.statetransition", "pk": 1462, "fields": {"resulting_state": 1504, "next_state_transition": 1463}}, {"model": "template.statetransition", "pk": 1463, "fields": {"resulting_state": 1505, "next_state_transition": 1464}}, {"model": "template.statetransition", "pk": 1464, "fields": {"resulting_state": 1506, "next_state_transition": 1465}}, {"model": "template.statetransition", "pk": 1465, "fields": {"resulting_state": 1507, "next_state_transition": 1466}}, {"model": "template.statetransition", "pk": 1466, "fields": {"resulting_state": 1508, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1467, "fields": {"resulting_state": 1491, "next_state_transition": 1468}}, {"model": "template.statetransition", "pk": 1468, "fields": {"resulting_state": 1509, "next_state_transition": 1469}}, {"model": "template.statetransition", "pk": 1469, "fields": {"resulting_state": 1510, "next_state_transition": 1470}}, {"model": "template.statetransition", "pk": 1470, "fields": {"resulting_state": 1511, "next_state_transition": 1471}}, {"model": "template.statetransition", "pk": 1471, "fields": {"resulting_state": 1512, "next_state_transition": 1472}}, {"model": "template.statetransition", "pk": 1472, "fields": {"resulting_state": 1513, "next_state_transition": 1473}}, {"model": "template.statetransition", "pk": 1473, "fields": {"resulting_state": 1514, "next_state_transition": 1474}}, {"model": "template.statetransition", "pk": 1474, "fields": {"resulting_state": 1515, "next_state_transition": 1475}}, {"model": "template.statetransition", "pk": 1475, "fields": {"resulting_state": 1516, "next_state_transition": 1476}}, {"model": "template.statetransition", "pk": 1476, "fields": {"resulting_state": 1517, "next_state_transition": 1477}}, {"model": "template.statetransition", "pk": 1477, "fields": {"resulting_state": 1518, "next_state_transition": 1478}}, {"model": "template.statetransition", "pk": 1478, "fields": {"resulting_state": 1519, "next_state_transition": 1479}}, {"model": "template.statetransition", "pk": 1479, "fields": {"resulting_state": 1520, "next_state_transition": 1480}}, {"model": "template.statetransition", "pk": 1480, "fields": {"resulting_state": 1521, "next_state_transition": 1481}}, {"model": "template.statetransition", "pk": 1481, "fields": {"resulting_state": 1522, "next_state_transition": 1482}}, {"model": "template.statetransition", "pk": 1482, "fields": {"resulting_state": 1523, "next_state_transition": 1483}}, {"model": "template.statetransition", "pk": 1483, "fields": {"resulting_state": 1524, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1484, "fields": {"resulting_state": 1490, "next_state_transition": 1485}}, {"model": "template.statetransition", "pk": 1485, "fields": {"resulting_state": 1525, "next_state_transition": 1486}}, {"model": "template.statetransition", "pk": 1486, "fields": {"resulting_state": 1526, "next_state_transition": 1487}}, {"model": "template.statetransition", "pk": 1487, "fields": {"resulting_state": 1527, "next_state_transition": 1488}}, {"model": "template.statetransition", "pk": 1488, "fields": {"resulting_state": 1528, "next_state_transition": 1489}}, {"model": "template.statetransition", "pk": 1489, "fields": {"resulting_state": 1529, "next_state_transition": 1490}}, {"model": "template.statetransition", "pk": 1490, "fields": {"resulting_state": 1530, "next_state_transition": 1491}}, {"model": "template.statetransition", "pk": 1491, "fields": {"resulting_state": 1531, "next_state_transition": 1492}}, {"model": "template.statetransition", "pk": 1492, "fields": {"resulting_state": 1532, "next_state_transition": 1493}}, {"model": "template.statetransition", "pk": 1493, "fields": {"resulting_state": 1533, "next_state_transition": 1494}}, {"model": "template.statetransition", "pk": 1494, "fields": {"resulting_state": 1534, "next_state_transition": 1495}}, {"model": "template.statetransition", "pk": 1495, "fields": {"resulting_state": 1535, "next_state_transition": 1496}}, {"model": "template.statetransition", "pk": 1496, "fields": {"resulting_state": 1536, "next_state_transition": 1497}}, {"model": "template.statetransition", "pk": 1497, "fields": {"resulting_state": 1537, "next_state_transition": 1498}}, {"model": "template.statetransition", "pk": 1498, "fields": {"resulting_state": 1538, "next_state_transition": 1499}}, {"model": "template.statetransition", "pk": 1499, "fields": {"resulting_state": 1539, "next_state_transition": 1500}}, {"model": "template.statetransition", "pk": 1500, "fields": {"resulting_state": 1540, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1501, "fields": {"resulting_state": 1489, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1502, "fields": {"resulting_state": 1488, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1503, "fields": {"resulting_state": 1487, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1504, "fields": {"resulting_state": 1486, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1505, "fields": {"resulting_state": 1485, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1506, "fields": {"resulting_state": 1484, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1507, "fields": {"resulting_state": 1547, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1508, "fields": {"resulting_state": 1546, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1509, "fields": {"resulting_state": 1545, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1510, "fields": {"resulting_state": 1544, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1511, "fields": {"resulting_state": 1543, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1512, "fields": {"resulting_state": 1542, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1513, "fields": {"resulting_state": 1557, "next_state_transition": 1514}}, {"model": "template.statetransition", "pk": 1514, "fields": {"resulting_state": 1558, "next_state_transition": 1515}}, {"model": "template.statetransition", "pk": 1515, "fields": {"resulting_state": 1559, "next_state_transition": 1516}}, {"model": "template.statetransition", "pk": 1516, "fields": {"resulting_state": 1560, "next_state_transition": 1517}}, {"model": "template.statetransition", "pk": 1517, "fields": {"resulting_state": 1561, "next_state_transition": 1518}}, {"model": "template.statetransition", "pk": 1518, "fields": {"resulting_state": 1562, "next_state_transition": 1519}}, {"model": "template.statetransition", "pk": 1519, "fields": {"resulting_state": 1563, "next_state_transition": 1520}}, {"model": "template.statetransition", "pk": 1520, "fields": {"resulting_state": 1564, "next_state_transition": 1521}}, {"model": "template.statetransition", "pk": 1521, "fields": {"resulting_state": 1565, "next_state_transition": 1522}}, {"model": "template.statetransition", "pk": 1522, "fields": {"resulting_state": 1566, "next_state_transition": 1523}}, {"model": "template.statetransition", "pk": 1523, "fields": {"resulting_state": 1567, "next_state_transition": 1524}}, {"model": "template.statetransition", "pk": 1524, "fields": {"resulting_state": 1568, "next_state_transition": 1525}}, {"model": "template.statetransition", "pk": 1525, "fields": {"resulting_state": 1569, "next_state_transition": 1526}}, {"model": "template.statetransition", "pk": 1526, "fields": {"resulting_state": 1570, "next_state_transition": 1527}}, {"model": "template.statetransition", "pk": 1527, "fields": {"resulting_state": 1571, "next_state_transition": 1528}}, {"model": "template.statetransition", "pk": 1528, "fields": {"resulting_state": 1572, "next_state_transition": 1529}}, {"model": "template.statetransition", "pk": 1529, "fields": {"resulting_state": 1573, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1530, "fields": {"resulting_state": 1556, "next_state_transition": 1531}}, {"model": "template.statetransition", "pk": 1531, "fields": {"resulting_state": 1574, "next_state_transition": 1532}}, {"model": "template.statetransition", "pk": 1532, "fields": {"resulting_state": 1575, "next_state_transition": 1533}}, {"model": "template.statetransition", "pk": 1533, "fields": {"resulting_state": 1576, "next_state_transition": 1534}}, {"model": "template.statetransition", "pk": 1534, "fields": {"resulting_state": 1577, "next_state_transition": 1535}}, {"model": "template.statetransition", "pk": 1535, "fields": {"resulting_state": 1578, "next_state_transition": 1536}}, {"model": "template.statetransition", "pk": 1536, "fields": {"resulting_state": 1579, "next_state_transition": 1537}}, {"model": "template.statetransition", "pk": 1537, "fields": {"resulting_state": 1580, "next_state_transition": 1538}}, {"model": "template.statetransition", "pk": 1538, "fields": {"resulting_state": 1581, "next_state_transition": 1539}}, {"model": "template.statetransition", "pk": 1539, "fields": {"resulting_state": 1582, "next_state_transition": 1540}}, {"model": "template.statetransition", "pk": 1540, "fields": {"resulting_state": 1583, "next_state_transition": 1541}}, {"model": "template.statetransition", "pk": 1541, "fields": {"resulting_state": 1584, "next_state_transition": 1542}}, {"model": "template.statetransition", "pk": 1542, "fields": {"resulting_state": 1585, "next_state_transition": 1543}}, {"model": "template.statetransition", "pk": 1543, "fields": {"resulting_state": 1586, "next_state_transition": 1544}}, {"model": "template.statetransition", "pk": 1544, "fields": {"resulting_state": 1587, "next_state_transition": 1545}}, {"model": "template.statetransition", "pk": 1545, "fields": {"resulting_state": 1588, "next_state_transition": 1546}}, {"model": "template.statetransition", "pk": 1546, "fields": {"resulting_state": 1589, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1547, "fields": {"resulting_state": 1555, "next_state_transition": 1548}}, {"model": "template.statetransition", "pk": 1548, "fields": {"resulting_state": 1590, "next_state_transition": 1549}}, {"model": "template.statetransition", "pk": 1549, "fields": {"resulting_state": 1591, "next_state_transition": 1550}}, {"model": "template.statetransition", "pk": 1550, "fields": {"resulting_state": 1592, "next_state_transition": 1551}}, {"model": "template.statetransition", "pk": 1551, "fields": {"resulting_state": 1593, "next_state_transition": 1552}}, {"model": "template.statetransition", "pk": 1552, "fields": {"resulting_state": 1594, "next_state_transition": 1553}}, {"model": "template.statetransition", "pk": 1553, "fields": {"resulting_state": 1595, "next_state_transition": 1554}}, {"model": "template.statetransition", "pk": 1554, "fields": {"resulting_state": 1596, "next_state_transition": 1555}}, {"model": "template.statetransition", "pk": 1555, "fields": {"resulting_state": 1597, "next_state_transition": 1556}}, {"model": "template.statetransition", "pk": 1556, "fields": {"resulting_state": 1598, "next_state_transition": 1557}}, {"model": "template.statetransition", "pk": 1557, "fields": {"resulting_state": 1599, "next_state_transition": 1558}}, {"model": "template.statetransition", "pk": 1558, "fields": {"resulting_state": 1600, "next_state_transition": 1559}}, {"model": "template.statetransition", "pk": 1559, "fields": {"resulting_state": 1601, "next_state_transition": 1560}}, {"model": "template.statetransition", "pk": 1560, "fields": {"resulting_state": 1602, "next_state_transition": 1561}}, {"model": "template.statetransition", "pk": 1561, "fields": {"resulting_state": 1603, "next_state_transition": 1562}}, {"model": "template.statetransition", "pk": 1562, "fields": {"resulting_state": 1604, "next_state_transition": 1563}}, {"model": "template.statetransition", "pk": 1563, "fields": {"resulting_state": 1605, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1564, "fields": {"resulting_state": 1554, "next_state_transition": 1565}}, {"model": "template.statetransition", "pk": 1565, "fields": {"resulting_state": 1606, "next_state_transition": 1566}}, {"model": "template.statetransition", "pk": 1566, "fields": {"resulting_state": 1607, "next_state_transition": 1567}}, {"model": "template.statetransition", "pk": 1567, "fields": {"resulting_state": 1608, "next_state_transition": 1568}}, {"model": "template.statetransition", "pk": 1568, "fields": {"resulting_state": 1609, "next_state_transition": 1569}}, {"model": "template.statetransition", "pk": 1569, "fields": {"resulting_state": 1610, "next_state_transition": 1570}}, {"model": "template.statetransition", "pk": 1570, "fields": {"resulting_state": 1611, "next_state_transition": 1571}}, {"model": "template.statetransition", "pk": 1571, "fields": {"resulting_state": 1612, "next_state_transition": 1572}}, {"model": "template.statetransition", "pk": 1572, "fields": {"resulting_state": 1613, "next_state_transition": 1573}}, {"model": "template.statetransition", "pk": 1573, "fields": {"resulting_state": 1614, "next_state_transition": 1574}}, {"model": "template.statetransition", "pk": 1574, "fields": {"resulting_state": 1615, "next_state_transition": 1575}}, {"model": "template.statetransition", "pk": 1575, "fields": {"resulting_state": 1616, "next_state_transition": 1576}}, {"model": "template.statetransition", "pk": 1576, "fields": {"resulting_state": 1617, "next_state_transition": 1577}}, {"model": "template.statetransition", "pk": 1577, "fields": {"resulting_state": 1618, "next_state_transition": 1578}}, {"model": "template.statetransition", "pk": 1578, "fields": {"resulting_state": 1619, "next_state_transition": 1579}}, {"model": "template.statetransition", "pk": 1579, "fields": {"resulting_state": 1620, "next_state_transition": 1580}}, {"model": "template.statetransition", "pk": 1580, "fields": {"resulting_state": 1621, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1581, "fields": {"resulting_state": 1553, "next_state_transition": 1582}}, {"model": "template.statetransition", "pk": 1582, "fields": {"resulting_state": 1622, "next_state_transition": 1583}}, {"model": "template.statetransition", "pk": 1583, "fields": {"resulting_state": 1623, "next_state_transition": 1584}}, {"model": "template.statetransition", "pk": 1584, "fields": {"resulting_state": 1624, "next_state_transition": 1585}}, {"model": "template.statetransition", "pk": 1585, "fields": {"resulting_state": 1625, "next_state_transition": 1586}}, {"model": "template.statetransition", "pk": 1586, "fields": {"resulting_state": 1626, "next_state_transition": 1587}}, {"model": "template.statetransition", "pk": 1587, "fields": {"resulting_state": 1627, "next_state_transition": 1588}}, {"model": "template.statetransition", "pk": 1588, "fields": {"resulting_state": 1628, "next_state_transition": 1589}}, {"model": "template.statetransition", "pk": 1589, "fields": {"resulting_state": 1629, "next_state_transition": 1590}}, {"model": "template.statetransition", "pk": 1590, "fields": {"resulting_state": 1630, "next_state_transition": 1591}}, {"model": "template.statetransition", "pk": 1591, "fields": {"resulting_state": 1631, "next_state_transition": 1592}}, {"model": "template.statetransition", "pk": 1592, "fields": {"resulting_state": 1632, "next_state_transition": 1593}}, {"model": "template.statetransition", "pk": 1593, "fields": {"resulting_state": 1633, "next_state_transition": 1594}}, {"model": "template.statetransition", "pk": 1594, "fields": {"resulting_state": 1634, "next_state_transition": 1595}}, {"model": "template.statetransition", "pk": 1595, "fields": {"resulting_state": 1635, "next_state_transition": 1596}}, {"model": "template.statetransition", "pk": 1596, "fields": {"resulting_state": 1636, "next_state_transition": 1597}}, {"model": "template.statetransition", "pk": 1597, "fields": {"resulting_state": 1637, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1598, "fields": {"resulting_state": 1552, "next_state_transition": 1599}}, {"model": "template.statetransition", "pk": 1599, "fields": {"resulting_state": 1638, "next_state_transition": 1600}}, {"model": "template.statetransition", "pk": 1600, "fields": {"resulting_state": 1639, "next_state_transition": 1601}}, {"model": "template.statetransition", "pk": 1601, "fields": {"resulting_state": 1640, "next_state_transition": 1602}}, {"model": "template.statetransition", "pk": 1602, "fields": {"resulting_state": 1641, "next_state_transition": 1603}}, {"model": "template.statetransition", "pk": 1603, "fields": {"resulting_state": 1642, "next_state_transition": 1604}}, {"model": "template.statetransition", "pk": 1604, "fields": {"resulting_state": 1643, "next_state_transition": 1605}}, {"model": "template.statetransition", "pk": 1605, "fields": {"resulting_state": 1644, "next_state_transition": 1606}}, {"model": "template.statetransition", "pk": 1606, "fields": {"resulting_state": 1645, "next_state_transition": 1607}}, {"model": "template.statetransition", "pk": 1607, "fields": {"resulting_state": 1646, "next_state_transition": 1608}}, {"model": "template.statetransition", "pk": 1608, "fields": {"resulting_state": 1647, "next_state_transition": 1609}}, {"model": "template.statetransition", "pk": 1609, "fields": {"resulting_state": 1648, "next_state_transition": 1610}}, {"model": "template.statetransition", "pk": 1610, "fields": {"resulting_state": 1649, "next_state_transition": 1611}}, {"model": "template.statetransition", "pk": 1611, "fields": {"resulting_state": 1650, "next_state_transition": 1612}}, {"model": "template.statetransition", "pk": 1612, "fields": {"resulting_state": 1651, "next_state_transition": 1613}}, {"model": "template.statetransition", "pk": 1613, "fields": {"resulting_state": 1652, "next_state_transition": 1614}}, {"model": "template.statetransition", "pk": 1614, "fields": {"resulting_state": 1653, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1615, "fields": {"resulting_state": 1551, "next_state_transition": 1616}}, {"model": "template.statetransition", "pk": 1616, "fields": {"resulting_state": 1654, "next_state_transition": 1617}}, {"model": "template.statetransition", "pk": 1617, "fields": {"resulting_state": 1655, "next_state_transition": 1618}}, {"model": "template.statetransition", "pk": 1618, "fields": {"resulting_state": 1656, "next_state_transition": 1619}}, {"model": "template.statetransition", "pk": 1619, "fields": {"resulting_state": 1657, "next_state_transition": 1620}}, {"model": "template.statetransition", "pk": 1620, "fields": {"resulting_state": 1658, "next_state_transition": 1621}}, {"model": "template.statetransition", "pk": 1621, "fields": {"resulting_state": 1659, "next_state_transition": 1622}}, {"model": "template.statetransition", "pk": 1622, "fields": {"resulting_state": 1660, "next_state_transition": 1623}}, {"model": "template.statetransition", "pk": 1623, "fields": {"resulting_state": 1661, "next_state_transition": 1624}}, {"model": "template.statetransition", "pk": 1624, "fields": {"resulting_state": 1662, "next_state_transition": 1625}}, {"model": "template.statetransition", "pk": 1625, "fields": {"resulting_state": 1663, "next_state_transition": 1626}}, {"model": "template.statetransition", "pk": 1626, "fields": {"resulting_state": 1664, "next_state_transition": 1627}}, {"model": "template.statetransition", "pk": 1627, "fields": {"resulting_state": 1665, "next_state_transition": 1628}}, {"model": "template.statetransition", "pk": 1628, "fields": {"resulting_state": 1666, "next_state_transition": 1629}}, {"model": "template.statetransition", "pk": 1629, "fields": {"resulting_state": 1667, "next_state_transition": 1630}}, {"model": "template.statetransition", "pk": 1630, "fields": {"resulting_state": 1668, "next_state_transition": 1631}}, {"model": "template.statetransition", "pk": 1631, "fields": {"resulting_state": 1669, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1632, "fields": {"resulting_state": 1550, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1633, "fields": {"resulting_state": 1549, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1634, "fields": {"resulting_state": 1672, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1635, "fields": {"resulting_state": 1671, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1636, "fields": {"resulting_state": 1682, "next_state_transition": 1637}}, {"model": "template.statetransition", "pk": 1637, "fields": {"resulting_state": 1683, "next_state_transition": 1638}}, {"model": "template.statetransition", "pk": 1638, "fields": {"resulting_state": 1684, "next_state_transition": 1639}}, {"model": "template.statetransition", "pk": 1639, "fields": {"resulting_state": 1685, "next_state_transition": 1640}}, {"model": "template.statetransition", "pk": 1640, "fields": {"resulting_state": 1686, "next_state_transition": 1641}}, {"model": "template.statetransition", "pk": 1641, "fields": {"resulting_state": 1687, "next_state_transition": 1642}}, {"model": "template.statetransition", "pk": 1642, "fields": {"resulting_state": 1688, "next_state_transition": 1643}}, {"model": "template.statetransition", "pk": 1643, "fields": {"resulting_state": 1689, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1644, "fields": {"resulting_state": 1681, "next_state_transition": 1645}}, {"model": "template.statetransition", "pk": 1645, "fields": {"resulting_state": 1690, "next_state_transition": 1646}}, {"model": "template.statetransition", "pk": 1646, "fields": {"resulting_state": 1691, "next_state_transition": 1647}}, {"model": "template.statetransition", "pk": 1647, "fields": {"resulting_state": 1692, "next_state_transition": 1648}}, {"model": "template.statetransition", "pk": 1648, "fields": {"resulting_state": 1693, "next_state_transition": 1649}}, {"model": "template.statetransition", "pk": 1649, "fields": {"resulting_state": 1694, "next_state_transition": 1650}}, {"model": "template.statetransition", "pk": 1650, "fields": {"resulting_state": 1695, "next_state_transition": 1651}}, {"model": "template.statetransition", "pk": 1651, "fields": {"resulting_state": 1696, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1652, "fields": {"resulting_state": 1680, "next_state_transition": 1653}}, {"model": "template.statetransition", "pk": 1653, "fields": {"resulting_state": 1697, "next_state_transition": 1654}}, {"model": "template.statetransition", "pk": 1654, "fields": {"resulting_state": 1698, "next_state_transition": 1655}}, {"model": "template.statetransition", "pk": 1655, "fields": {"resulting_state": 1699, "next_state_transition": 1656}}, {"model": "template.statetransition", "pk": 1656, "fields": {"resulting_state": 1700, "next_state_transition": 1657}}, {"model": "template.statetransition", "pk": 1657, "fields": {"resulting_state": 1701, "next_state_transition": 1658}}, {"model": "template.statetransition", "pk": 1658, "fields": {"resulting_state": 1702, "next_state_transition": 1659}}, {"model": "template.statetransition", "pk": 1659, "fields": {"resulting_state": 1703, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1660, "fields": {"resulting_state": 1679, "next_state_transition": 1661}}, {"model": "template.statetransition", "pk": 1661, "fields": {"resulting_state": 1704, "next_state_transition": 1662}}, {"model": "template.statetransition", "pk": 1662, "fields": {"resulting_state": 1705, "next_state_transition": 1663}}, {"model": "template.statetransition", "pk": 1663, "fields": {"resulting_state": 1706, "next_state_transition": 1664}}, {"model": "template.statetransition", "pk": 1664, "fields": {"resulting_state": 1707, "next_state_transition": 1665}}, {"model": "template.statetransition", "pk": 1665, "fields": {"resulting_state": 1708, "next_state_transition": 1666}}, {"model": "template.statetransition", "pk": 1666, "fields": {"resulting_state": 1709, "next_state_transition": 1667}}, {"model": "template.statetransition", "pk": 1667, "fields": {"resulting_state": 1710, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1668, "fields": {"resulting_state": 1678, "next_state_transition": 1669}}, {"model": "template.statetransition", "pk": 1669, "fields": {"resulting_state": 1711, "next_state_transition": 1670}}, {"model": "template.statetransition", "pk": 1670, "fields": {"resulting_state": 1712, "next_state_transition": 1671}}, {"model": "template.statetransition", "pk": 1671, "fields": {"resulting_state": 1713, "next_state_transition": 1672}}, {"model": "template.statetransition", "pk": 1672, "fields": {"resulting_state": 1714, "next_state_transition": 1673}}, {"model": "template.statetransition", "pk": 1673, "fields": {"resulting_state": 1715, "next_state_transition": 1674}}, {"model": "template.statetransition", "pk": 1674, "fields": {"resulting_state": 1716, "next_state_transition": 1675}}, {"model": "template.statetransition", "pk": 1675, "fields": {"resulting_state": 1717, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1676, "fields": {"resulting_state": 1677, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1677, "fields": {"resulting_state": 1676, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1678, "fields": {"resulting_state": 1675, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1679, "fields": {"resulting_state": 1674, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1680, "fields": {"resulting_state": 1722, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1681, "fields": {"resulting_state": 1721, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1682, "fields": {"resulting_state": 1720, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1683, "fields": {"resulting_state": 1719, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1684, "fields": {"resulting_state": 1732, "next_state_transition": 1685}}, {"model": "template.statetransition", "pk": 1685, "fields": {"resulting_state": 1733, "next_state_transition": 1686}}, {"model": "template.statetransition", "pk": 1686, "fields": {"resulting_state": 1734, "next_state_transition": 1687}}, {"model": "template.statetransition", "pk": 1687, "fields": {"resulting_state": 1735, "next_state_transition": 1688}}, {"model": "template.statetransition", "pk": 1688, "fields": {"resulting_state": 1736, "next_state_transition": 1689}}, {"model": "template.statetransition", "pk": 1689, "fields": {"resulting_state": 1737, "next_state_transition": 1690}}, {"model": "template.statetransition", "pk": 1690, "fields": {"resulting_state": 1738, "next_state_transition": 1691}}, {"model": "template.statetransition", "pk": 1691, "fields": {"resulting_state": 1739, "next_state_transition": 1692}}, {"model": "template.statetransition", "pk": 1692, "fields": {"resulting_state": 1740, "next_state_transition": 1693}}, {"model": "template.statetransition", "pk": 1693, "fields": {"resulting_state": 1741, "next_state_transition": 1694}}, {"model": "template.statetransition", "pk": 1694, "fields": {"resulting_state": 1742, "next_state_transition": 1695}}, {"model": "template.statetransition", "pk": 1695, "fields": {"resulting_state": 1743, "next_state_transition": 1696}}, {"model": "template.statetransition", "pk": 1696, "fields": {"resulting_state": 1744, "next_state_transition": 1697}}, {"model": "template.statetransition", "pk": 1697, "fields": {"resulting_state": 1745, "next_state_transition": 1698}}, {"model": "template.statetransition", "pk": 1698, "fields": {"resulting_state": 1746, "next_state_transition": 1699}}, {"model": "template.statetransition", "pk": 1699, "fields": {"resulting_state": 1747, "next_state_transition": 1700}}, {"model": "template.statetransition", "pk": 1700, "fields": {"resulting_state": 1748, "next_state_transition": 1701}}, {"model": "template.statetransition", "pk": 1701, "fields": {"resulting_state": 1749, "next_state_transition": 1702}}, {"model": "template.statetransition", "pk": 1702, "fields": {"resulting_state": 1750, "next_state_transition": 1703}}, {"model": "template.statetransition", "pk": 1703, "fields": {"resulting_state": 1751, "next_state_transition": 1704}}, {"model": "template.statetransition", "pk": 1704, "fields": {"resulting_state": 1752, "next_state_transition": 1705}}, {"model": "template.statetransition", "pk": 1705, "fields": {"resulting_state": 1753, "next_state_transition": 1706}}, {"model": "template.statetransition", "pk": 1706, "fields": {"resulting_state": 1754, "next_state_transition": 1707}}, {"model": "template.statetransition", "pk": 1707, "fields": {"resulting_state": 1755, "next_state_transition": 1708}}, {"model": "template.statetransition", "pk": 1708, "fields": {"resulting_state": 1756, "next_state_transition": 1709}}, {"model": "template.statetransition", "pk": 1709, "fields": {"resulting_state": 1757, "next_state_transition": 1710}}, {"model": "template.statetransition", "pk": 1710, "fields": {"resulting_state": 1758, "next_state_transition": 1711}}, {"model": "template.statetransition", "pk": 1711, "fields": {"resulting_state": 1759, "next_state_transition": 1712}}, {"model": "template.statetransition", "pk": 1712, "fields": {"resulting_state": 1760, "next_state_transition": 1713}}, {"model": "template.statetransition", "pk": 1713, "fields": {"resulting_state": 1761, "next_state_transition": 1714}}, {"model": "template.statetransition", "pk": 1714, "fields": {"resulting_state": 1762, "next_state_transition": 1715}}, {"model": "template.statetransition", "pk": 1715, "fields": {"resulting_state": 1763, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1716, "fields": {"resulting_state": 1731, "next_state_transition": 1717}}, {"model": "template.statetransition", "pk": 1717, "fields": {"resulting_state": 1764, "next_state_transition": 1718}}, {"model": "template.statetransition", "pk": 1718, "fields": {"resulting_state": 1765, "next_state_transition": 1719}}, {"model": "template.statetransition", "pk": 1719, "fields": {"resulting_state": 1766, "next_state_transition": 1720}}, {"model": "template.statetransition", "pk": 1720, "fields": {"resulting_state": 1767, "next_state_transition": 1721}}, {"model": "template.statetransition", "pk": 1721, "fields": {"resulting_state": 1768, "next_state_transition": 1722}}, {"model": "template.statetransition", "pk": 1722, "fields": {"resulting_state": 1769, "next_state_transition": 1723}}, {"model": "template.statetransition", "pk": 1723, "fields": {"resulting_state": 1770, "next_state_transition": 1724}}, {"model": "template.statetransition", "pk": 1724, "fields": {"resulting_state": 1771, "next_state_transition": 1725}}, {"model": "template.statetransition", "pk": 1725, "fields": {"resulting_state": 1772, "next_state_transition": 1726}}, {"model": "template.statetransition", "pk": 1726, "fields": {"resulting_state": 1773, "next_state_transition": 1727}}, {"model": "template.statetransition", "pk": 1727, "fields": {"resulting_state": 1774, "next_state_transition": 1728}}, {"model": "template.statetransition", "pk": 1728, "fields": {"resulting_state": 1775, "next_state_transition": 1729}}, {"model": "template.statetransition", "pk": 1729, "fields": {"resulting_state": 1776, "next_state_transition": 1730}}, {"model": "template.statetransition", "pk": 1730, "fields": {"resulting_state": 1777, "next_state_transition": 1731}}, {"model": "template.statetransition", "pk": 1731, "fields": {"resulting_state": 1778, "next_state_transition": 1732}}, {"model": "template.statetransition", "pk": 1732, "fields": {"resulting_state": 1779, "next_state_transition": 1733}}, {"model": "template.statetransition", "pk": 1733, "fields": {"resulting_state": 1780, "next_state_transition": 1734}}, {"model": "template.statetransition", "pk": 1734, "fields": {"resulting_state": 1781, "next_state_transition": 1735}}, {"model": "template.statetransition", "pk": 1735, "fields": {"resulting_state": 1782, "next_state_transition": 1736}}, {"model": "template.statetransition", "pk": 1736, "fields": {"resulting_state": 1783, "next_state_transition": 1737}}, {"model": "template.statetransition", "pk": 1737, "fields": {"resulting_state": 1784, "next_state_transition": 1738}}, {"model": "template.statetransition", "pk": 1738, "fields": {"resulting_state": 1785, "next_state_transition": 1739}}, {"model": "template.statetransition", "pk": 1739, "fields": {"resulting_state": 1786, "next_state_transition": 1740}}, {"model": "template.statetransition", "pk": 1740, "fields": {"resulting_state": 1787, "next_state_transition": 1741}}, {"model": "template.statetransition", "pk": 1741, "fields": {"resulting_state": 1788, "next_state_transition": 1742}}, {"model": "template.statetransition", "pk": 1742, "fields": {"resulting_state": 1789, "next_state_transition": 1743}}, {"model": "template.statetransition", "pk": 1743, "fields": {"resulting_state": 1790, "next_state_transition": 1744}}, {"model": "template.statetransition", "pk": 1744, "fields": {"resulting_state": 1791, "next_state_transition": 1745}}, {"model": "template.statetransition", "pk": 1745, "fields": {"resulting_state": 1792, "next_state_transition": 1746}}, {"model": "template.statetransition", "pk": 1746, "fields": {"resulting_state": 1793, "next_state_transition": 1747}}, {"model": "template.statetransition", "pk": 1747, "fields": {"resulting_state": 1794, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1748, "fields": {"resulting_state": 1730, "next_state_transition": 1749}}, {"model": "template.statetransition", "pk": 1749, "fields": {"resulting_state": 1795, "next_state_transition": 1750}}, {"model": "template.statetransition", "pk": 1750, "fields": {"resulting_state": 1796, "next_state_transition": 1751}}, {"model": "template.statetransition", "pk": 1751, "fields": {"resulting_state": 1797, "next_state_transition": 1752}}, {"model": "template.statetransition", "pk": 1752, "fields": {"resulting_state": 1798, "next_state_transition": 1753}}, {"model": "template.statetransition", "pk": 1753, "fields": {"resulting_state": 1799, "next_state_transition": 1754}}, {"model": "template.statetransition", "pk": 1754, "fields": {"resulting_state": 1800, "next_state_transition": 1755}}, {"model": "template.statetransition", "pk": 1755, "fields": {"resulting_state": 1801, "next_state_transition": 1756}}, {"model": "template.statetransition", "pk": 1756, "fields": {"resulting_state": 1802, "next_state_transition": 1757}}, {"model": "template.statetransition", "pk": 1757, "fields": {"resulting_state": 1803, "next_state_transition": 1758}}, {"model": "template.statetransition", "pk": 1758, "fields": {"resulting_state": 1804, "next_state_transition": 1759}}, {"model": "template.statetransition", "pk": 1759, "fields": {"resulting_state": 1805, "next_state_transition": 1760}}, {"model": "template.statetransition", "pk": 1760, "fields": {"resulting_state": 1806, "next_state_transition": 1761}}, {"model": "template.statetransition", "pk": 1761, "fields": {"resulting_state": 1807, "next_state_transition": 1762}}, {"model": "template.statetransition", "pk": 1762, "fields": {"resulting_state": 1808, "next_state_transition": 1763}}, {"model": "template.statetransition", "pk": 1763, "fields": {"resulting_state": 1809, "next_state_transition": 1764}}, {"model": "template.statetransition", "pk": 1764, "fields": {"resulting_state": 1810, "next_state_transition": 1765}}, {"model": "template.statetransition", "pk": 1765, "fields": {"resulting_state": 1811, "next_state_transition": 1766}}, {"model": "template.statetransition", "pk": 1766, "fields": {"resulting_state": 1812, "next_state_transition": 1767}}, {"model": "template.statetransition", "pk": 1767, "fields": {"resulting_state": 1813, "next_state_transition": 1768}}, {"model": "template.statetransition", "pk": 1768, "fields": {"resulting_state": 1814, "next_state_transition": 1769}}, {"model": "template.statetransition", "pk": 1769, "fields": {"resulting_state": 1815, "next_state_transition": 1770}}, {"model": "template.statetransition", "pk": 1770, "fields": {"resulting_state": 1816, "next_state_transition": 1771}}, {"model": "template.statetransition", "pk": 1771, "fields": {"resulting_state": 1817, "next_state_transition": 1772}}, {"model": "template.statetransition", "pk": 1772, "fields": {"resulting_state": 1818, "next_state_transition": 1773}}, {"model": "template.statetransition", "pk": 1773, "fields": {"resulting_state": 1819, "next_state_transition": 1774}}, {"model": "template.statetransition", "pk": 1774, "fields": {"resulting_state": 1820, "next_state_transition": 1775}}, {"model": "template.statetransition", "pk": 1775, "fields": {"resulting_state": 1821, "next_state_transition": 1776}}, {"model": "template.statetransition", "pk": 1776, "fields": {"resulting_state": 1822, "next_state_transition": 1777}}, {"model": "template.statetransition", "pk": 1777, "fields": {"resulting_state": 1823, "next_state_transition": 1778}}, {"model": "template.statetransition", "pk": 1778, "fields": {"resulting_state": 1824, "next_state_transition": 1779}}, {"model": "template.statetransition", "pk": 1779, "fields": {"resulting_state": 1825, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1780, "fields": {"resulting_state": 1729, "next_state_transition": 1781}}, {"model": "template.statetransition", "pk": 1781, "fields": {"resulting_state": 1826, "next_state_transition": 1782}}, {"model": "template.statetransition", "pk": 1782, "fields": {"resulting_state": 1827, "next_state_transition": 1783}}, {"model": "template.statetransition", "pk": 1783, "fields": {"resulting_state": 1828, "next_state_transition": 1784}}, {"model": "template.statetransition", "pk": 1784, "fields": {"resulting_state": 1829, "next_state_transition": 1785}}, {"model": "template.statetransition", "pk": 1785, "fields": {"resulting_state": 1830, "next_state_transition": 1786}}, {"model": "template.statetransition", "pk": 1786, "fields": {"resulting_state": 1831, "next_state_transition": 1787}}, {"model": "template.statetransition", "pk": 1787, "fields": {"resulting_state": 1832, "next_state_transition": 1788}}, {"model": "template.statetransition", "pk": 1788, "fields": {"resulting_state": 1833, "next_state_transition": 1789}}, {"model": "template.statetransition", "pk": 1789, "fields": {"resulting_state": 1834, "next_state_transition": 1790}}, {"model": "template.statetransition", "pk": 1790, "fields": {"resulting_state": 1835, "next_state_transition": 1791}}, {"model": "template.statetransition", "pk": 1791, "fields": {"resulting_state": 1836, "next_state_transition": 1792}}, {"model": "template.statetransition", "pk": 1792, "fields": {"resulting_state": 1837, "next_state_transition": 1793}}, {"model": "template.statetransition", "pk": 1793, "fields": {"resulting_state": 1838, "next_state_transition": 1794}}, {"model": "template.statetransition", "pk": 1794, "fields": {"resulting_state": 1839, "next_state_transition": 1795}}, {"model": "template.statetransition", "pk": 1795, "fields": {"resulting_state": 1840, "next_state_transition": 1796}}, {"model": "template.statetransition", "pk": 1796, "fields": {"resulting_state": 1841, "next_state_transition": 1797}}, {"model": "template.statetransition", "pk": 1797, "fields": {"resulting_state": 1842, "next_state_transition": 1798}}, {"model": "template.statetransition", "pk": 1798, "fields": {"resulting_state": 1843, "next_state_transition": 1799}}, {"model": "template.statetransition", "pk": 1799, "fields": {"resulting_state": 1844, "next_state_transition": 1800}}, {"model": "template.statetransition", "pk": 1800, "fields": {"resulting_state": 1845, "next_state_transition": 1801}}, {"model": "template.statetransition", "pk": 1801, "fields": {"resulting_state": 1846, "next_state_transition": 1802}}, {"model": "template.statetransition", "pk": 1802, "fields": {"resulting_state": 1847, "next_state_transition": 1803}}, {"model": "template.statetransition", "pk": 1803, "fields": {"resulting_state": 1848, "next_state_transition": 1804}}, {"model": "template.statetransition", "pk": 1804, "fields": {"resulting_state": 1849, "next_state_transition": 1805}}, {"model": "template.statetransition", "pk": 1805, "fields": {"resulting_state": 1850, "next_state_transition": 1806}}, {"model": "template.statetransition", "pk": 1806, "fields": {"resulting_state": 1851, "next_state_transition": 1807}}, {"model": "template.statetransition", "pk": 1807, "fields": {"resulting_state": 1852, "next_state_transition": 1808}}, {"model": "template.statetransition", "pk": 1808, "fields": {"resulting_state": 1853, "next_state_transition": 1809}}, {"model": "template.statetransition", "pk": 1809, "fields": {"resulting_state": 1854, "next_state_transition": 1810}}, {"model": "template.statetransition", "pk": 1810, "fields": {"resulting_state": 1855, "next_state_transition": 1811}}, {"model": "template.statetransition", "pk": 1811, "fields": {"resulting_state": 1856, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1812, "fields": {"resulting_state": 1728, "next_state_transition": 1813}}, {"model": "template.statetransition", "pk": 1813, "fields": {"resulting_state": 1857, "next_state_transition": 1814}}, {"model": "template.statetransition", "pk": 1814, "fields": {"resulting_state": 1858, "next_state_transition": 1815}}, {"model": "template.statetransition", "pk": 1815, "fields": {"resulting_state": 1859, "next_state_transition": 1816}}, {"model": "template.statetransition", "pk": 1816, "fields": {"resulting_state": 1860, "next_state_transition": 1817}}, {"model": "template.statetransition", "pk": 1817, "fields": {"resulting_state": 1861, "next_state_transition": 1818}}, {"model": "template.statetransition", "pk": 1818, "fields": {"resulting_state": 1862, "next_state_transition": 1819}}, {"model": "template.statetransition", "pk": 1819, "fields": {"resulting_state": 1863, "next_state_transition": 1820}}, {"model": "template.statetransition", "pk": 1820, "fields": {"resulting_state": 1864, "next_state_transition": 1821}}, {"model": "template.statetransition", "pk": 1821, "fields": {"resulting_state": 1865, "next_state_transition": 1822}}, {"model": "template.statetransition", "pk": 1822, "fields": {"resulting_state": 1866, "next_state_transition": 1823}}, {"model": "template.statetransition", "pk": 1823, "fields": {"resulting_state": 1867, "next_state_transition": 1824}}, {"model": "template.statetransition", "pk": 1824, "fields": {"resulting_state": 1868, "next_state_transition": 1825}}, {"model": "template.statetransition", "pk": 1825, "fields": {"resulting_state": 1869, "next_state_transition": 1826}}, {"model": "template.statetransition", "pk": 1826, "fields": {"resulting_state": 1870, "next_state_transition": 1827}}, {"model": "template.statetransition", "pk": 1827, "fields": {"resulting_state": 1871, "next_state_transition": 1828}}, {"model": "template.statetransition", "pk": 1828, "fields": {"resulting_state": 1872, "next_state_transition": 1829}}, {"model": "template.statetransition", "pk": 1829, "fields": {"resulting_state": 1873, "next_state_transition": 1830}}, {"model": "template.statetransition", "pk": 1830, "fields": {"resulting_state": 1874, "next_state_transition": 1831}}, {"model": "template.statetransition", "pk": 1831, "fields": {"resulting_state": 1875, "next_state_transition": 1832}}, {"model": "template.statetransition", "pk": 1832, "fields": {"resulting_state": 1876, "next_state_transition": 1833}}, {"model": "template.statetransition", "pk": 1833, "fields": {"resulting_state": 1877, "next_state_transition": 1834}}, {"model": "template.statetransition", "pk": 1834, "fields": {"resulting_state": 1878, "next_state_transition": 1835}}, {"model": "template.statetransition", "pk": 1835, "fields": {"resulting_state": 1879, "next_state_transition": 1836}}, {"model": "template.statetransition", "pk": 1836, "fields": {"resulting_state": 1880, "next_state_transition": 1837}}, {"model": "template.statetransition", "pk": 1837, "fields": {"resulting_state": 1881, "next_state_transition": 1838}}, {"model": "template.statetransition", "pk": 1838, "fields": {"resulting_state": 1882, "next_state_transition": 1839}}, {"model": "template.statetransition", "pk": 1839, "fields": {"resulting_state": 1883, "next_state_transition": 1840}}, {"model": "template.statetransition", "pk": 1840, "fields": {"resulting_state": 1884, "next_state_transition": 1841}}, {"model": "template.statetransition", "pk": 1841, "fields": {"resulting_state": 1885, "next_state_transition": 1842}}, {"model": "template.statetransition", "pk": 1842, "fields": {"resulting_state": 1886, "next_state_transition": 1843}}, {"model": "template.statetransition", "pk": 1843, "fields": {"resulting_state": 1887, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1844, "fields": {"resulting_state": 1727, "next_state_transition": 1845}}, {"model": "template.statetransition", "pk": 1845, "fields": {"resulting_state": 1888, "next_state_transition": 1846}}, {"model": "template.statetransition", "pk": 1846, "fields": {"resulting_state": 1889, "next_state_transition": 1847}}, {"model": "template.statetransition", "pk": 1847, "fields": {"resulting_state": 1890, "next_state_transition": 1848}}, {"model": "template.statetransition", "pk": 1848, "fields": {"resulting_state": 1891, "next_state_transition": 1849}}, {"model": "template.statetransition", "pk": 1849, "fields": {"resulting_state": 1892, "next_state_transition": 1850}}, {"model": "template.statetransition", "pk": 1850, "fields": {"resulting_state": 1893, "next_state_transition": 1851}}, {"model": "template.statetransition", "pk": 1851, "fields": {"resulting_state": 1894, "next_state_transition": 1852}}, {"model": "template.statetransition", "pk": 1852, "fields": {"resulting_state": 1895, "next_state_transition": 1853}}, {"model": "template.statetransition", "pk": 1853, "fields": {"resulting_state": 1896, "next_state_transition": 1854}}, {"model": "template.statetransition", "pk": 1854, "fields": {"resulting_state": 1897, "next_state_transition": 1855}}, {"model": "template.statetransition", "pk": 1855, "fields": {"resulting_state": 1898, "next_state_transition": 1856}}, {"model": "template.statetransition", "pk": 1856, "fields": {"resulting_state": 1899, "next_state_transition": 1857}}, {"model": "template.statetransition", "pk": 1857, "fields": {"resulting_state": 1900, "next_state_transition": 1858}}, {"model": "template.statetransition", "pk": 1858, "fields": {"resulting_state": 1901, "next_state_transition": 1859}}, {"model": "template.statetransition", "pk": 1859, "fields": {"resulting_state": 1902, "next_state_transition": 1860}}, {"model": "template.statetransition", "pk": 1860, "fields": {"resulting_state": 1903, "next_state_transition": 1861}}, {"model": "template.statetransition", "pk": 1861, "fields": {"resulting_state": 1904, "next_state_transition": 1862}}, {"model": "template.statetransition", "pk": 1862, "fields": {"resulting_state": 1905, "next_state_transition": 1863}}, {"model": "template.statetransition", "pk": 1863, "fields": {"resulting_state": 1906, "next_state_transition": 1864}}, {"model": "template.statetransition", "pk": 1864, "fields": {"resulting_state": 1907, "next_state_transition": 1865}}, {"model": "template.statetransition", "pk": 1865, "fields": {"resulting_state": 1908, "next_state_transition": 1866}}, {"model": "template.statetransition", "pk": 1866, "fields": {"resulting_state": 1909, "next_state_transition": 1867}}, {"model": "template.statetransition", "pk": 1867, "fields": {"resulting_state": 1910, "next_state_transition": 1868}}, {"model": "template.statetransition", "pk": 1868, "fields": {"resulting_state": 1911, "next_state_transition": 1869}}, {"model": "template.statetransition", "pk": 1869, "fields": {"resulting_state": 1912, "next_state_transition": 1870}}, {"model": "template.statetransition", "pk": 1870, "fields": {"resulting_state": 1913, "next_state_transition": 1871}}, {"model": "template.statetransition", "pk": 1871, "fields": {"resulting_state": 1914, "next_state_transition": 1872}}, {"model": "template.statetransition", "pk": 1872, "fields": {"resulting_state": 1915, "next_state_transition": 1873}}, {"model": "template.statetransition", "pk": 1873, "fields": {"resulting_state": 1916, "next_state_transition": 1874}}, {"model": "template.statetransition", "pk": 1874, "fields": {"resulting_state": 1917, "next_state_transition": 1875}}, {"model": "template.statetransition", "pk": 1875, "fields": {"resulting_state": 1918, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1876, "fields": {"resulting_state": 1726, "next_state_transition": 1877}}, {"model": "template.statetransition", "pk": 1877, "fields": {"resulting_state": 1919, "next_state_transition": 1878}}, {"model": "template.statetransition", "pk": 1878, "fields": {"resulting_state": 1920, "next_state_transition": 1879}}, {"model": "template.statetransition", "pk": 1879, "fields": {"resulting_state": 1921, "next_state_transition": 1880}}, {"model": "template.statetransition", "pk": 1880, "fields": {"resulting_state": 1922, "next_state_transition": 1881}}, {"model": "template.statetransition", "pk": 1881, "fields": {"resulting_state": 1923, "next_state_transition": 1882}}, {"model": "template.statetransition", "pk": 1882, "fields": {"resulting_state": 1924, "next_state_transition": 1883}}, {"model": "template.statetransition", "pk": 1883, "fields": {"resulting_state": 1925, "next_state_transition": 1884}}, {"model": "template.statetransition", "pk": 1884, "fields": {"resulting_state": 1926, "next_state_transition": 1885}}, {"model": "template.statetransition", "pk": 1885, "fields": {"resulting_state": 1927, "next_state_transition": 1886}}, {"model": "template.statetransition", "pk": 1886, "fields": {"resulting_state": 1928, "next_state_transition": 1887}}, {"model": "template.statetransition", "pk": 1887, "fields": {"resulting_state": 1929, "next_state_transition": 1888}}, {"model": "template.statetransition", "pk": 1888, "fields": {"resulting_state": 1930, "next_state_transition": 1889}}, {"model": "template.statetransition", "pk": 1889, "fields": {"resulting_state": 1931, "next_state_transition": 1890}}, {"model": "template.statetransition", "pk": 1890, "fields": {"resulting_state": 1932, "next_state_transition": 1891}}, {"model": "template.statetransition", "pk": 1891, "fields": {"resulting_state": 1933, "next_state_transition": 1892}}, {"model": "template.statetransition", "pk": 1892, "fields": {"resulting_state": 1934, "next_state_transition": 1893}}, {"model": "template.statetransition", "pk": 1893, "fields": {"resulting_state": 1935, "next_state_transition": 1894}}, {"model": "template.statetransition", "pk": 1894, "fields": {"resulting_state": 1936, "next_state_transition": 1895}}, {"model": "template.statetransition", "pk": 1895, "fields": {"resulting_state": 1937, "next_state_transition": 1896}}, {"model": "template.statetransition", "pk": 1896, "fields": {"resulting_state": 1938, "next_state_transition": 1897}}, {"model": "template.statetransition", "pk": 1897, "fields": {"resulting_state": 1939, "next_state_transition": 1898}}, {"model": "template.statetransition", "pk": 1898, "fields": {"resulting_state": 1940, "next_state_transition": 1899}}, {"model": "template.statetransition", "pk": 1899, "fields": {"resulting_state": 1941, "next_state_transition": 1900}}, {"model": "template.statetransition", "pk": 1900, "fields": {"resulting_state": 1942, "next_state_transition": 1901}}, {"model": "template.statetransition", "pk": 1901, "fields": {"resulting_state": 1943, "next_state_transition": 1902}}, {"model": "template.statetransition", "pk": 1902, "fields": {"resulting_state": 1944, "next_state_transition": 1903}}, {"model": "template.statetransition", "pk": 1903, "fields": {"resulting_state": 1945, "next_state_transition": 1904}}, {"model": "template.statetransition", "pk": 1904, "fields": {"resulting_state": 1946, "next_state_transition": 1905}}, {"model": "template.statetransition", "pk": 1905, "fields": {"resulting_state": 1947, "next_state_transition": 1906}}, {"model": "template.statetransition", "pk": 1906, "fields": {"resulting_state": 1948, "next_state_transition": 1907}}, {"model": "template.statetransition", "pk": 1907, "fields": {"resulting_state": 1949, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1908, "fields": {"resulting_state": 1725, "next_state_transition": 1909}}, {"model": "template.statetransition", "pk": 1909, "fields": {"resulting_state": 1950, "next_state_transition": 1910}}, {"model": "template.statetransition", "pk": 1910, "fields": {"resulting_state": 1951, "next_state_transition": 1911}}, {"model": "template.statetransition", "pk": 1911, "fields": {"resulting_state": 1952, "next_state_transition": 1912}}, {"model": "template.statetransition", "pk": 1912, "fields": {"resulting_state": 1953, "next_state_transition": 1913}}, {"model": "template.statetransition", "pk": 1913, "fields": {"resulting_state": 1954, "next_state_transition": 1914}}, {"model": "template.statetransition", "pk": 1914, "fields": {"resulting_state": 1955, "next_state_transition": 1915}}, {"model": "template.statetransition", "pk": 1915, "fields": {"resulting_state": 1956, "next_state_transition": 1916}}, {"model": "template.statetransition", "pk": 1916, "fields": {"resulting_state": 1957, "next_state_transition": 1917}}, {"model": "template.statetransition", "pk": 1917, "fields": {"resulting_state": 1958, "next_state_transition": 1918}}, {"model": "template.statetransition", "pk": 1918, "fields": {"resulting_state": 1959, "next_state_transition": 1919}}, {"model": "template.statetransition", "pk": 1919, "fields": {"resulting_state": 1960, "next_state_transition": 1920}}, {"model": "template.statetransition", "pk": 1920, "fields": {"resulting_state": 1961, "next_state_transition": 1921}}, {"model": "template.statetransition", "pk": 1921, "fields": {"resulting_state": 1962, "next_state_transition": 1922}}, {"model": "template.statetransition", "pk": 1922, "fields": {"resulting_state": 1963, "next_state_transition": 1923}}, {"model": "template.statetransition", "pk": 1923, "fields": {"resulting_state": 1964, "next_state_transition": 1924}}, {"model": "template.statetransition", "pk": 1924, "fields": {"resulting_state": 1965, "next_state_transition": 1925}}, {"model": "template.statetransition", "pk": 1925, "fields": {"resulting_state": 1966, "next_state_transition": 1926}}, {"model": "template.statetransition", "pk": 1926, "fields": {"resulting_state": 1967, "next_state_transition": 1927}}, {"model": "template.statetransition", "pk": 1927, "fields": {"resulting_state": 1968, "next_state_transition": 1928}}, {"model": "template.statetransition", "pk": 1928, "fields": {"resulting_state": 1969, "next_state_transition": 1929}}, {"model": "template.statetransition", "pk": 1929, "fields": {"resulting_state": 1970, "next_state_transition": 1930}}, {"model": "template.statetransition", "pk": 1930, "fields": {"resulting_state": 1971, "next_state_transition": 1931}}, {"model": "template.statetransition", "pk": 1931, "fields": {"resulting_state": 1972, "next_state_transition": 1932}}, {"model": "template.statetransition", "pk": 1932, "fields": {"resulting_state": 1973, "next_state_transition": 1933}}, {"model": "template.statetransition", "pk": 1933, "fields": {"resulting_state": 1974, "next_state_transition": 1934}}, {"model": "template.statetransition", "pk": 1934, "fields": {"resulting_state": 1975, "next_state_transition": 1935}}, {"model": "template.statetransition", "pk": 1935, "fields": {"resulting_state": 1976, "next_state_transition": 1936}}, {"model": "template.statetransition", "pk": 1936, "fields": {"resulting_state": 1977, "next_state_transition": 1937}}, {"model": "template.statetransition", "pk": 1937, "fields": {"resulting_state": 1978, "next_state_transition": 1938}}, {"model": "template.statetransition", "pk": 1938, "fields": {"resulting_state": 1979, "next_state_transition": 1939}}, {"model": "template.statetransition", "pk": 1939, "fields": {"resulting_state": 1980, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1940, "fields": {"resulting_state": 1724, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1941, "fields": {"resulting_state": 1982, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1942, "fields": {"resulting_state": 1992, "next_state_transition": 1943}}, {"model": "template.statetransition", "pk": 1943, "fields": {"resulting_state": 1993, "next_state_transition": 1944}}, {"model": "template.statetransition", "pk": 1944, "fields": {"resulting_state": 1994, "next_state_transition": 1945}}, {"model": "template.statetransition", "pk": 1945, "fields": {"resulting_state": 1995, "next_state_transition": 1946}}, {"model": "template.statetransition", "pk": 1946, "fields": {"resulting_state": 1996, "next_state_transition": 1947}}, {"model": "template.statetransition", "pk": 1947, "fields": {"resulting_state": 1997, "next_state_transition": 1948}}, {"model": "template.statetransition", "pk": 1948, "fields": {"resulting_state": 1998, "next_state_transition": 1949}}, {"model": "template.statetransition", "pk": 1949, "fields": {"resulting_state": 1999, "next_state_transition": 1950}}, {"model": "template.statetransition", "pk": 1950, "fields": {"resulting_state": 2000, "next_state_transition": 1951}}, {"model": "template.statetransition", "pk": 1951, "fields": {"resulting_state": 2001, "next_state_transition": 1952}}, {"model": "template.statetransition", "pk": 1952, "fields": {"resulting_state": 2002, "next_state_transition": 1953}}, {"model": "template.statetransition", "pk": 1953, "fields": {"resulting_state": 2003, "next_state_transition": 1954}}, {"model": "template.statetransition", "pk": 1954, "fields": {"resulting_state": 2004, "next_state_transition": 1955}}, {"model": "template.statetransition", "pk": 1955, "fields": {"resulting_state": 2005, "next_state_transition": 1956}}, {"model": "template.statetransition", "pk": 1956, "fields": {"resulting_state": 2006, "next_state_transition": 1957}}, {"model": "template.statetransition", "pk": 1957, "fields": {"resulting_state": 2007, "next_state_transition": 1958}}, {"model": "template.statetransition", "pk": 1958, "fields": {"resulting_state": 2008, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1959, "fields": {"resulting_state": 1991, "next_state_transition": 1960}}, {"model": "template.statetransition", "pk": 1960, "fields": {"resulting_state": 2009, "next_state_transition": 1961}}, {"model": "template.statetransition", "pk": 1961, "fields": {"resulting_state": 2010, "next_state_transition": 1962}}, {"model": "template.statetransition", "pk": 1962, "fields": {"resulting_state": 2011, "next_state_transition": 1963}}, {"model": "template.statetransition", "pk": 1963, "fields": {"resulting_state": 2012, "next_state_transition": 1964}}, {"model": "template.statetransition", "pk": 1964, "fields": {"resulting_state": 2013, "next_state_transition": 1965}}, {"model": "template.statetransition", "pk": 1965, "fields": {"resulting_state": 2014, "next_state_transition": 1966}}, {"model": "template.statetransition", "pk": 1966, "fields": {"resulting_state": 2015, "next_state_transition": 1967}}, {"model": "template.statetransition", "pk": 1967, "fields": {"resulting_state": 2016, "next_state_transition": 1968}}, {"model": "template.statetransition", "pk": 1968, "fields": {"resulting_state": 2017, "next_state_transition": 1969}}, {"model": "template.statetransition", "pk": 1969, "fields": {"resulting_state": 2018, "next_state_transition": 1970}}, {"model": "template.statetransition", "pk": 1970, "fields": {"resulting_state": 2019, "next_state_transition": 1971}}, {"model": "template.statetransition", "pk": 1971, "fields": {"resulting_state": 2020, "next_state_transition": 1972}}, {"model": "template.statetransition", "pk": 1972, "fields": {"resulting_state": 2021, "next_state_transition": 1973}}, {"model": "template.statetransition", "pk": 1973, "fields": {"resulting_state": 2022, "next_state_transition": 1974}}, {"model": "template.statetransition", "pk": 1974, "fields": {"resulting_state": 2023, "next_state_transition": 1975}}, {"model": "template.statetransition", "pk": 1975, "fields": {"resulting_state": 2024, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1976, "fields": {"resulting_state": 1990, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1977, "fields": {"resulting_state": 1989, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1978, "fields": {"resulting_state": 1988, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1979, "fields": {"resulting_state": 1987, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1980, "fields": {"resulting_state": 1986, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1981, "fields": {"resulting_state": 1985, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1982, "fields": {"resulting_state": 1984, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1983, "fields": {"resulting_state": 2032, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1984, "fields": {"resulting_state": 2031, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1985, "fields": {"resulting_state": 2030, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1986, "fields": {"resulting_state": 2029, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1987, "fields": {"resulting_state": 2028, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1988, "fields": {"resulting_state": 2027, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1989, "fields": {"resulting_state": 2026, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1990, "fields": {"resulting_state": 2042, "next_state_transition": 1991}}, {"model": "template.statetransition", "pk": 1991, "fields": {"resulting_state": 2043, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1992, "fields": {"resulting_state": 2041, "next_state_transition": 1993}}, {"model": "template.statetransition", "pk": 1993, "fields": {"resulting_state": 2044, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1994, "fields": {"resulting_state": 2040, "next_state_transition": 1995}}, {"model": "template.statetransition", "pk": 1995, "fields": {"resulting_state": 2045, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1996, "fields": {"resulting_state": 2039, "next_state_transition": 1997}}, {"model": "template.statetransition", "pk": 1997, "fields": {"resulting_state": 2046, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 1998, "fields": {"resulting_state": 2038, "next_state_transition": 1999}}, {"model": "template.statetransition", "pk": 1999, "fields": {"resulting_state": 2047, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2000, "fields": {"resulting_state": 2037, "next_state_transition": 2001}}, {"model": "template.statetransition", "pk": 2001, "fields": {"resulting_state": 2048, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2002, "fields": {"resulting_state": 2036, "next_state_transition": 2003}}, {"model": "template.statetransition", "pk": 2003, "fields": {"resulting_state": 2049, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2004, "fields": {"resulting_state": 2035, "next_state_transition": 2005}}, {"model": "template.statetransition", "pk": 2005, "fields": {"resulting_state": 2050, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2006, "fields": {"resulting_state": 2034, "next_state_transition": 2007}}, {"model": "template.statetransition", "pk": 2007, "fields": {"resulting_state": 2051, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2008, "fields": {"resulting_state": 2062, "next_state_transition": 2009}}, {"model": "template.statetransition", "pk": 2009, "fields": {"resulting_state": 2063, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2010, "fields": {"resulting_state": 2061, "next_state_transition": 2011}}, {"model": "template.statetransition", "pk": 2011, "fields": {"resulting_state": 2064, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2012, "fields": {"resulting_state": 2060, "next_state_transition": 2013}}, {"model": "template.statetransition", "pk": 2013, "fields": {"resulting_state": 2065, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2014, "fields": {"resulting_state": 2059, "next_state_transition": 2015}}, {"model": "template.statetransition", "pk": 2015, "fields": {"resulting_state": 2066, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2016, "fields": {"resulting_state": 2058, "next_state_transition": 2017}}, {"model": "template.statetransition", "pk": 2017, "fields": {"resulting_state": 2067, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2018, "fields": {"resulting_state": 2057, "next_state_transition": 2019}}, {"model": "template.statetransition", "pk": 2019, "fields": {"resulting_state": 2068, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2020, "fields": {"resulting_state": 2056, "next_state_transition": 2021}}, {"model": "template.statetransition", "pk": 2021, "fields": {"resulting_state": 2069, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2022, "fields": {"resulting_state": 2055, "next_state_transition": 2023}}, {"model": "template.statetransition", "pk": 2023, "fields": {"resulting_state": 2070, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2024, "fields": {"resulting_state": 2054, "next_state_transition": 2025}}, {"model": "template.statetransition", "pk": 2025, "fields": {"resulting_state": 2071, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2026, "fields": {"resulting_state": 2082, "next_state_transition": 2027}}, {"model": "template.statetransition", "pk": 2027, "fields": {"resulting_state": 2083, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2028, "fields": {"resulting_state": 2081, "next_state_transition": 2029}}, {"model": "template.statetransition", "pk": 2029, "fields": {"resulting_state": 2084, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2030, "fields": {"resulting_state": 2080, "next_state_transition": 2031}}, {"model": "template.statetransition", "pk": 2031, "fields": {"resulting_state": 2085, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2032, "fields": {"resulting_state": 2079, "next_state_transition": 2033}}, {"model": "template.statetransition", "pk": 2033, "fields": {"resulting_state": 2086, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2034, "fields": {"resulting_state": 2078, "next_state_transition": 2035}}, {"model": "template.statetransition", "pk": 2035, "fields": {"resulting_state": 2087, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2036, "fields": {"resulting_state": 2077, "next_state_transition": 2037}}, {"model": "template.statetransition", "pk": 2037, "fields": {"resulting_state": 2088, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2038, "fields": {"resulting_state": 2076, "next_state_transition": 2039}}, {"model": "template.statetransition", "pk": 2039, "fields": {"resulting_state": 2089, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2040, "fields": {"resulting_state": 2075, "next_state_transition": 2041}}, {"model": "template.statetransition", "pk": 2041, "fields": {"resulting_state": 2090, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2042, "fields": {"resulting_state": 2074, "next_state_transition": 2043}}, {"model": "template.statetransition", "pk": 2043, "fields": {"resulting_state": 2091, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2044, "fields": {"resulting_state": 2102, "next_state_transition": 2045}}, {"model": "template.statetransition", "pk": 2045, "fields": {"resulting_state": 2103, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2046, "fields": {"resulting_state": 2101, "next_state_transition": 2047}}, {"model": "template.statetransition", "pk": 2047, "fields": {"resulting_state": 2104, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2048, "fields": {"resulting_state": 2100, "next_state_transition": 2049}}, {"model": "template.statetransition", "pk": 2049, "fields": {"resulting_state": 2105, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2050, "fields": {"resulting_state": 2099, "next_state_transition": 2051}}, {"model": "template.statetransition", "pk": 2051, "fields": {"resulting_state": 2106, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2052, "fields": {"resulting_state": 2098, "next_state_transition": 2053}}, {"model": "template.statetransition", "pk": 2053, "fields": {"resulting_state": 2107, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2054, "fields": {"resulting_state": 2097, "next_state_transition": 2055}}, {"model": "template.statetransition", "pk": 2055, "fields": {"resulting_state": 2108, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2056, "fields": {"resulting_state": 2096, "next_state_transition": 2057}}, {"model": "template.statetransition", "pk": 2057, "fields": {"resulting_state": 2109, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2058, "fields": {"resulting_state": 2095, "next_state_transition": 2059}}, {"model": "template.statetransition", "pk": 2059, "fields": {"resulting_state": 2110, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2060, "fields": {"resulting_state": 2094, "next_state_transition": 2061}}, {"model": "template.statetransition", "pk": 2061, "fields": {"resulting_state": 2111, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2062, "fields": {"resulting_state": 2122, "next_state_transition": 2063}}, {"model": "template.statetransition", "pk": 2063, "fields": {"resulting_state": 2123, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2064, "fields": {"resulting_state": 2121, "next_state_transition": 2065}}, {"model": "template.statetransition", "pk": 2065, "fields": {"resulting_state": 2124, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2066, "fields": {"resulting_state": 2120, "next_state_transition": 2067}}, {"model": "template.statetransition", "pk": 2067, "fields": {"resulting_state": 2125, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2068, "fields": {"resulting_state": 2119, "next_state_transition": 2069}}, {"model": "template.statetransition", "pk": 2069, "fields": {"resulting_state": 2126, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2070, "fields": {"resulting_state": 2118, "next_state_transition": 2071}}, {"model": "template.statetransition", "pk": 2071, "fields": {"resulting_state": 2127, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2072, "fields": {"resulting_state": 2117, "next_state_transition": 2073}}, {"model": "template.statetransition", "pk": 2073, "fields": {"resulting_state": 2128, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2074, "fields": {"resulting_state": 2116, "next_state_transition": 2075}}, {"model": "template.statetransition", "pk": 2075, "fields": {"resulting_state": 2129, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2076, "fields": {"resulting_state": 2115, "next_state_transition": 2077}}, {"model": "template.statetransition", "pk": 2077, "fields": {"resulting_state": 2130, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2078, "fields": {"resulting_state": 2114, "next_state_transition": 2079}}, {"model": "template.statetransition", "pk": 2079, "fields": {"resulting_state": 2131, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2080, "fields": {"resulting_state": 2142, "next_state_transition": 2081}}, {"model": "template.statetransition", "pk": 2081, "fields": {"resulting_state": 2143, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2082, "fields": {"resulting_state": 2141, "next_state_transition": 2083}}, {"model": "template.statetransition", "pk": 2083, "fields": {"resulting_state": 2144, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2084, "fields": {"resulting_state": 2140, "next_state_transition": 2085}}, {"model": "template.statetransition", "pk": 2085, "fields": {"resulting_state": 2145, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2086, "fields": {"resulting_state": 2139, "next_state_transition": 2087}}, {"model": "template.statetransition", "pk": 2087, "fields": {"resulting_state": 2146, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2088, "fields": {"resulting_state": 2138, "next_state_transition": 2089}}, {"model": "template.statetransition", "pk": 2089, "fields": {"resulting_state": 2147, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2090, "fields": {"resulting_state": 2137, "next_state_transition": 2091}}, {"model": "template.statetransition", "pk": 2091, "fields": {"resulting_state": 2148, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2092, "fields": {"resulting_state": 2136, "next_state_transition": 2093}}, {"model": "template.statetransition", "pk": 2093, "fields": {"resulting_state": 2149, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2094, "fields": {"resulting_state": 2135, "next_state_transition": 2095}}, {"model": "template.statetransition", "pk": 2095, "fields": {"resulting_state": 2150, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2096, "fields": {"resulting_state": 2134, "next_state_transition": 2097}}, {"model": "template.statetransition", "pk": 2097, "fields": {"resulting_state": 2151, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2098, "fields": {"resulting_state": 2162, "next_state_transition": 2099}}, {"model": "template.statetransition", "pk": 2099, "fields": {"resulting_state": 2163, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2100, "fields": {"resulting_state": 2161, "next_state_transition": 2101}}, {"model": "template.statetransition", "pk": 2101, "fields": {"resulting_state": 2164, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2102, "fields": {"resulting_state": 2160, "next_state_transition": 2103}}, {"model": "template.statetransition", "pk": 2103, "fields": {"resulting_state": 2165, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2104, "fields": {"resulting_state": 2159, "next_state_transition": 2105}}, {"model": "template.statetransition", "pk": 2105, "fields": {"resulting_state": 2166, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2106, "fields": {"resulting_state": 2158, "next_state_transition": 2107}}, {"model": "template.statetransition", "pk": 2107, "fields": {"resulting_state": 2167, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2108, "fields": {"resulting_state": 2157, "next_state_transition": 2109}}, {"model": "template.statetransition", "pk": 2109, "fields": {"resulting_state": 2168, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2110, "fields": {"resulting_state": 2156, "next_state_transition": 2111}}, {"model": "template.statetransition", "pk": 2111, "fields": {"resulting_state": 2169, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2112, "fields": {"resulting_state": 2155, "next_state_transition": 2113}}, {"model": "template.statetransition", "pk": 2113, "fields": {"resulting_state": 2170, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2114, "fields": {"resulting_state": 2154, "next_state_transition": 2115}}, {"model": "template.statetransition", "pk": 2115, "fields": {"resulting_state": 2171, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2116, "fields": {"resulting_state": 2182, "next_state_transition": 2117}}, {"model": "template.statetransition", "pk": 2117, "fields": {"resulting_state": 2183, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2118, "fields": {"resulting_state": 2181, "next_state_transition": 2119}}, {"model": "template.statetransition", "pk": 2119, "fields": {"resulting_state": 2184, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2120, "fields": {"resulting_state": 2180, "next_state_transition": 2121}}, {"model": "template.statetransition", "pk": 2121, "fields": {"resulting_state": 2185, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2122, "fields": {"resulting_state": 2179, "next_state_transition": 2123}}, {"model": "template.statetransition", "pk": 2123, "fields": {"resulting_state": 2186, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2124, "fields": {"resulting_state": 2178, "next_state_transition": 2125}}, {"model": "template.statetransition", "pk": 2125, "fields": {"resulting_state": 2187, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2126, "fields": {"resulting_state": 2177, "next_state_transition": 2127}}, {"model": "template.statetransition", "pk": 2127, "fields": {"resulting_state": 2188, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2128, "fields": {"resulting_state": 2176, "next_state_transition": 2129}}, {"model": "template.statetransition", "pk": 2129, "fields": {"resulting_state": 2189, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2130, "fields": {"resulting_state": 2175, "next_state_transition": 2131}}, {"model": "template.statetransition", "pk": 2131, "fields": {"resulting_state": 2190, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2132, "fields": {"resulting_state": 2174, "next_state_transition": 2133}}, {"model": "template.statetransition", "pk": 2133, "fields": {"resulting_state": 2191, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2134, "fields": {"resulting_state": 2202, "next_state_transition": 2135}}, {"model": "template.statetransition", "pk": 2135, "fields": {"resulting_state": 2203, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2136, "fields": {"resulting_state": 2201, "next_state_transition": 2137}}, {"model": "template.statetransition", "pk": 2137, "fields": {"resulting_state": 2204, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2138, "fields": {"resulting_state": 2200, "next_state_transition": 2139}}, {"model": "template.statetransition", "pk": 2139, "fields": {"resulting_state": 2205, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2140, "fields": {"resulting_state": 2199, "next_state_transition": 2141}}, {"model": "template.statetransition", "pk": 2141, "fields": {"resulting_state": 2206, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2142, "fields": {"resulting_state": 2198, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2143, "fields": {"resulting_state": 2197, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2144, "fields": {"resulting_state": 2196, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2145, "fields": {"resulting_state": 2195, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2146, "fields": {"resulting_state": 2194, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2147, "fields": {"resulting_state": 2212, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2148, "fields": {"resulting_state": 2211, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2149, "fields": {"resulting_state": 2210, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2150, "fields": {"resulting_state": 2209, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2151, "fields": {"resulting_state": 2208, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2152, "fields": {"resulting_state": 2222, "next_state_transition": 2153}}, {"model": "template.statetransition", "pk": 2153, "fields": {"resulting_state": 2223, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2154, "fields": {"resulting_state": 2221, "next_state_transition": 2155}}, {"model": "template.statetransition", "pk": 2155, "fields": {"resulting_state": 2224, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2156, "fields": {"resulting_state": 2220, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2157, "fields": {"resulting_state": 2219, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2158, "fields": {"resulting_state": 2218, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2159, "fields": {"resulting_state": 2217, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2160, "fields": {"resulting_state": 2216, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2161, "fields": {"resulting_state": 2215, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2162, "fields": {"resulting_state": 2214, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2163, "fields": {"resulting_state": 2232, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2164, "fields": {"resulting_state": 2231, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2165, "fields": {"resulting_state": 2230, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2166, "fields": {"resulting_state": 2229, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2167, "fields": {"resulting_state": 2228, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2168, "fields": {"resulting_state": 2227, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2169, "fields": {"resulting_state": 2226, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2170, "fields": {"resulting_state": 2242, "next_state_transition": 2171}}, {"model": "template.statetransition", "pk": 2171, "fields": {"resulting_state": 2243, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2172, "fields": {"resulting_state": 2241, "next_state_transition": 2173}}, {"model": "template.statetransition", "pk": 2173, "fields": {"resulting_state": 2244, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2174, "fields": {"resulting_state": 2240, "next_state_transition": 2175}}, {"model": "template.statetransition", "pk": 2175, "fields": {"resulting_state": 2245, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2176, "fields": {"resulting_state": 2239, "next_state_transition": 2177}}, {"model": "template.statetransition", "pk": 2177, "fields": {"resulting_state": 2246, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2178, "fields": {"resulting_state": 2238, "next_state_transition": 2179}}, {"model": "template.statetransition", "pk": 2179, "fields": {"resulting_state": 2247, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2180, "fields": {"resulting_state": 2237, "next_state_transition": 2181}}, {"model": "template.statetransition", "pk": 2181, "fields": {"resulting_state": 2248, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2182, "fields": {"resulting_state": 2236, "next_state_transition": 2183}}, {"model": "template.statetransition", "pk": 2183, "fields": {"resulting_state": 2249, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2184, "fields": {"resulting_state": 2235, "next_state_transition": 2185}}, {"model": "template.statetransition", "pk": 2185, "fields": {"resulting_state": 2250, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2186, "fields": {"resulting_state": 2234, "next_state_transition": 2187}}, {"model": "template.statetransition", "pk": 2187, "fields": {"resulting_state": 2251, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2188, "fields": {"resulting_state": 2262, "next_state_transition": 2189}}, {"model": "template.statetransition", "pk": 2189, "fields": {"resulting_state": 2263, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2190, "fields": {"resulting_state": 2261, "next_state_transition": 2191}}, {"model": "template.statetransition", "pk": 2191, "fields": {"resulting_state": 2264, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2192, "fields": {"resulting_state": 2260, "next_state_transition": 2193}}, {"model": "template.statetransition", "pk": 2193, "fields": {"resulting_state": 2265, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2194, "fields": {"resulting_state": 2259, "next_state_transition": 2195}}, {"model": "template.statetransition", "pk": 2195, "fields": {"resulting_state": 2266, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2196, "fields": {"resulting_state": 2258, "next_state_transition": 2197}}, {"model": "template.statetransition", "pk": 2197, "fields": {"resulting_state": 2267, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2198, "fields": {"resulting_state": 2257, "next_state_transition": 2199}}, {"model": "template.statetransition", "pk": 2199, "fields": {"resulting_state": 2268, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2200, "fields": {"resulting_state": 2256, "next_state_transition": 2201}}, {"model": "template.statetransition", "pk": 2201, "fields": {"resulting_state": 2269, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2202, "fields": {"resulting_state": 2255, "next_state_transition": 2203}}, {"model": "template.statetransition", "pk": 2203, "fields": {"resulting_state": 2270, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2204, "fields": {"resulting_state": 2254, "next_state_transition": 2205}}, {"model": "template.statetransition", "pk": 2205, "fields": {"resulting_state": 2271, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2206, "fields": {"resulting_state": 2282, "next_state_transition": 2207}}, {"model": "template.statetransition", "pk": 2207, "fields": {"resulting_state": 2283, "next_state_transition": 2208}}, {"model": "template.statetransition", "pk": 2208, "fields": {"resulting_state": 2284, "next_state_transition": 2209}}, {"model": "template.statetransition", "pk": 2209, "fields": {"resulting_state": 2285, "next_state_transition": 2210}}, {"model": "template.statetransition", "pk": 2210, "fields": {"resulting_state": 2286, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2211, "fields": {"resulting_state": 2281, "next_state_transition": 2212}}, {"model": "template.statetransition", "pk": 2212, "fields": {"resulting_state": 2287, "next_state_transition": 2213}}, {"model": "template.statetransition", "pk": 2213, "fields": {"resulting_state": 2288, "next_state_transition": 2214}}, {"model": "template.statetransition", "pk": 2214, "fields": {"resulting_state": 2289, "next_state_transition": 2215}}, {"model": "template.statetransition", "pk": 2215, "fields": {"resulting_state": 2290, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2216, "fields": {"resulting_state": 2280, "next_state_transition": 2217}}, {"model": "template.statetransition", "pk": 2217, "fields": {"resulting_state": 2291, "next_state_transition": 2218}}, {"model": "template.statetransition", "pk": 2218, "fields": {"resulting_state": 2292, "next_state_transition": 2219}}, {"model": "template.statetransition", "pk": 2219, "fields": {"resulting_state": 2293, "next_state_transition": 2220}}, {"model": "template.statetransition", "pk": 2220, "fields": {"resulting_state": 2294, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2221, "fields": {"resulting_state": 2279, "next_state_transition": 2222}}, {"model": "template.statetransition", "pk": 2222, "fields": {"resulting_state": 2295, "next_state_transition": 2223}}, {"model": "template.statetransition", "pk": 2223, "fields": {"resulting_state": 2296, "next_state_transition": 2224}}, {"model": "template.statetransition", "pk": 2224, "fields": {"resulting_state": 2297, "next_state_transition": 2225}}, {"model": "template.statetransition", "pk": 2225, "fields": {"resulting_state": 2298, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2226, "fields": {"resulting_state": 2278, "next_state_transition": 2227}}, {"model": "template.statetransition", "pk": 2227, "fields": {"resulting_state": 2299, "next_state_transition": 2228}}, {"model": "template.statetransition", "pk": 2228, "fields": {"resulting_state": 2300, "next_state_transition": 2229}}, {"model": "template.statetransition", "pk": 2229, "fields": {"resulting_state": 2301, "next_state_transition": 2230}}, {"model": "template.statetransition", "pk": 2230, "fields": {"resulting_state": 2302, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2231, "fields": {"resulting_state": 2277, "next_state_transition": 2232}}, {"model": "template.statetransition", "pk": 2232, "fields": {"resulting_state": 2303, "next_state_transition": 2233}}, {"model": "template.statetransition", "pk": 2233, "fields": {"resulting_state": 2304, "next_state_transition": 2234}}, {"model": "template.statetransition", "pk": 2234, "fields": {"resulting_state": 2305, "next_state_transition": 2235}}, {"model": "template.statetransition", "pk": 2235, "fields": {"resulting_state": 2306, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2236, "fields": {"resulting_state": 2276, "next_state_transition": 2237}}, {"model": "template.statetransition", "pk": 2237, "fields": {"resulting_state": 2307, "next_state_transition": 2238}}, {"model": "template.statetransition", "pk": 2238, "fields": {"resulting_state": 2308, "next_state_transition": 2239}}, {"model": "template.statetransition", "pk": 2239, "fields": {"resulting_state": 2309, "next_state_transition": 2240}}, {"model": "template.statetransition", "pk": 2240, "fields": {"resulting_state": 2310, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2241, "fields": {"resulting_state": 2275, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2242, "fields": {"resulting_state": 2274, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2243, "fields": {"resulting_state": 2313, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2244, "fields": {"resulting_state": 2312, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2245, "fields": {"resulting_state": 2323, "next_state_transition": 2246}}, {"model": "template.statetransition", "pk": 2246, "fields": {"resulting_state": 2324, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2247, "fields": {"resulting_state": 2322, "next_state_transition": 2248}}, {"model": "template.statetransition", "pk": 2248, "fields": {"resulting_state": 2325, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2249, "fields": {"resulting_state": 2321, "next_state_transition": 2250}}, {"model": "template.statetransition", "pk": 2250, "fields": {"resulting_state": 2326, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2251, "fields": {"resulting_state": 2320, "next_state_transition": 2252}}, {"model": "template.statetransition", "pk": 2252, "fields": {"resulting_state": 2327, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2253, "fields": {"resulting_state": 2319, "next_state_transition": 2254}}, {"model": "template.statetransition", "pk": 2254, "fields": {"resulting_state": 2328, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2255, "fields": {"resulting_state": 2318, "next_state_transition": 2256}}, {"model": "template.statetransition", "pk": 2256, "fields": {"resulting_state": 2329, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2257, "fields": {"resulting_state": 2317, "next_state_transition": 2258}}, {"model": "template.statetransition", "pk": 2258, "fields": {"resulting_state": 2330, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2259, "fields": {"resulting_state": 2316, "next_state_transition": 2260}}, {"model": "template.statetransition", "pk": 2260, "fields": {"resulting_state": 2331, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2261, "fields": {"resulting_state": 2315, "next_state_transition": 2262}}, {"model": "template.statetransition", "pk": 2262, "fields": {"resulting_state": 2332, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2263, "fields": {"resulting_state": 2343, "next_state_transition": 2264}}, {"model": "template.statetransition", "pk": 2264, "fields": {"resulting_state": 2344, "next_state_transition": 2265}}, {"model": "template.statetransition", "pk": 2265, "fields": {"resulting_state": 2345, "next_state_transition": 2266}}, {"model": "template.statetransition", "pk": 2266, "fields": {"resulting_state": 2346, "next_state_transition": 2267}}, {"model": "template.statetransition", "pk": 2267, "fields": {"resulting_state": 2347, "next_state_transition": 2268}}, {"model": "template.statetransition", "pk": 2268, "fields": {"resulting_state": 2348, "next_state_transition": 2269}}, {"model": "template.statetransition", "pk": 2269, "fields": {"resulting_state": 2349, "next_state_transition": 2270}}, {"model": "template.statetransition", "pk": 2270, "fields": {"resulting_state": 2350, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2271, "fields": {"resulting_state": 2342, "next_state_transition": 2272}}, {"model": "template.statetransition", "pk": 2272, "fields": {"resulting_state": 2351, "next_state_transition": 2273}}, {"model": "template.statetransition", "pk": 2273, "fields": {"resulting_state": 2352, "next_state_transition": 2274}}, {"model": "template.statetransition", "pk": 2274, "fields": {"resulting_state": 2353, "next_state_transition": 2275}}, {"model": "template.statetransition", "pk": 2275, "fields": {"resulting_state": 2354, "next_state_transition": 2276}}, {"model": "template.statetransition", "pk": 2276, "fields": {"resulting_state": 2355, "next_state_transition": 2277}}, {"model": "template.statetransition", "pk": 2277, "fields": {"resulting_state": 2356, "next_state_transition": 2278}}, {"model": "template.statetransition", "pk": 2278, "fields": {"resulting_state": 2357, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2279, "fields": {"resulting_state": 2341, "next_state_transition": 2280}}, {"model": "template.statetransition", "pk": 2280, "fields": {"resulting_state": 2358, "next_state_transition": 2281}}, {"model": "template.statetransition", "pk": 2281, "fields": {"resulting_state": 2359, "next_state_transition": 2282}}, {"model": "template.statetransition", "pk": 2282, "fields": {"resulting_state": 2360, "next_state_transition": 2283}}, {"model": "template.statetransition", "pk": 2283, "fields": {"resulting_state": 2361, "next_state_transition": 2284}}, {"model": "template.statetransition", "pk": 2284, "fields": {"resulting_state": 2362, "next_state_transition": 2285}}, {"model": "template.statetransition", "pk": 2285, "fields": {"resulting_state": 2363, "next_state_transition": 2286}}, {"model": "template.statetransition", "pk": 2286, "fields": {"resulting_state": 2364, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2287, "fields": {"resulting_state": 2340, "next_state_transition": 2288}}, {"model": "template.statetransition", "pk": 2288, "fields": {"resulting_state": 2365, "next_state_transition": 2289}}, {"model": "template.statetransition", "pk": 2289, "fields": {"resulting_state": 2366, "next_state_transition": 2290}}, {"model": "template.statetransition", "pk": 2290, "fields": {"resulting_state": 2367, "next_state_transition": 2291}}, {"model": "template.statetransition", "pk": 2291, "fields": {"resulting_state": 2368, "next_state_transition": 2292}}, {"model": "template.statetransition", "pk": 2292, "fields": {"resulting_state": 2369, "next_state_transition": 2293}}, {"model": "template.statetransition", "pk": 2293, "fields": {"resulting_state": 2370, "next_state_transition": 2294}}, {"model": "template.statetransition", "pk": 2294, "fields": {"resulting_state": 2371, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2295, "fields": {"resulting_state": 2339, "next_state_transition": 2296}}, {"model": "template.statetransition", "pk": 2296, "fields": {"resulting_state": 2372, "next_state_transition": 2297}}, {"model": "template.statetransition", "pk": 2297, "fields": {"resulting_state": 2373, "next_state_transition": 2298}}, {"model": "template.statetransition", "pk": 2298, "fields": {"resulting_state": 2374, "next_state_transition": 2299}}, {"model": "template.statetransition", "pk": 2299, "fields": {"resulting_state": 2375, "next_state_transition": 2300}}, {"model": "template.statetransition", "pk": 2300, "fields": {"resulting_state": 2376, "next_state_transition": 2301}}, {"model": "template.statetransition", "pk": 2301, "fields": {"resulting_state": 2377, "next_state_transition": 2302}}, {"model": "template.statetransition", "pk": 2302, "fields": {"resulting_state": 2378, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2303, "fields": {"resulting_state": 2338, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2304, "fields": {"resulting_state": 2337, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2305, "fields": {"resulting_state": 2336, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2306, "fields": {"resulting_state": 2335, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2307, "fields": {"resulting_state": 2383, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2308, "fields": {"resulting_state": 2382, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2309, "fields": {"resulting_state": 2381, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2310, "fields": {"resulting_state": 2380, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2311, "fields": {"resulting_state": 2393, "next_state_transition": 2312}}, {"model": "template.statetransition", "pk": 2312, "fields": {"resulting_state": 2394, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2313, "fields": {"resulting_state": 2392, "next_state_transition": 2314}}, {"model": "template.statetransition", "pk": 2314, "fields": {"resulting_state": 2395, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2315, "fields": {"resulting_state": 2391, "next_state_transition": 2316}}, {"model": "template.statetransition", "pk": 2316, "fields": {"resulting_state": 2396, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2317, "fields": {"resulting_state": 2390, "next_state_transition": 2318}}, {"model": "template.statetransition", "pk": 2318, "fields": {"resulting_state": 2397, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2319, "fields": {"resulting_state": 2389, "next_state_transition": 2320}}, {"model": "template.statetransition", "pk": 2320, "fields": {"resulting_state": 2398, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2321, "fields": {"resulting_state": 2388, "next_state_transition": 2322}}, {"model": "template.statetransition", "pk": 2322, "fields": {"resulting_state": 2399, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2323, "fields": {"resulting_state": 2387, "next_state_transition": 2324}}, {"model": "template.statetransition", "pk": 2324, "fields": {"resulting_state": 2400, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2325, "fields": {"resulting_state": 2386, "next_state_transition": 2326}}, {"model": "template.statetransition", "pk": 2326, "fields": {"resulting_state": 2401, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2327, "fields": {"resulting_state": 2385, "next_state_transition": 2328}}, {"model": "template.statetransition", "pk": 2328, "fields": {"resulting_state": 2402, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2329, "fields": {"resulting_state": 2413, "next_state_transition": 2330}}, {"model": "template.statetransition", "pk": 2330, "fields": {"resulting_state": 2414, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2331, "fields": {"resulting_state": 2412, "next_state_transition": 2332}}, {"model": "template.statetransition", "pk": 2332, "fields": {"resulting_state": 2415, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2333, "fields": {"resulting_state": 2411, "next_state_transition": 2334}}, {"model": "template.statetransition", "pk": 2334, "fields": {"resulting_state": 2416, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2335, "fields": {"resulting_state": 2410, "next_state_transition": 2336}}, {"model": "template.statetransition", "pk": 2336, "fields": {"resulting_state": 2417, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2337, "fields": {"resulting_state": 2409, "next_state_transition": 2338}}, {"model": "template.statetransition", "pk": 2338, "fields": {"resulting_state": 2418, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2339, "fields": {"resulting_state": 2408, "next_state_transition": 2340}}, {"model": "template.statetransition", "pk": 2340, "fields": {"resulting_state": 2419, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2341, "fields": {"resulting_state": 2407, "next_state_transition": 2342}}, {"model": "template.statetransition", "pk": 2342, "fields": {"resulting_state": 2420, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2343, "fields": {"resulting_state": 2406, "next_state_transition": 2344}}, {"model": "template.statetransition", "pk": 2344, "fields": {"resulting_state": 2421, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2345, "fields": {"resulting_state": 2405, "next_state_transition": 2346}}, {"model": "template.statetransition", "pk": 2346, "fields": {"resulting_state": 2422, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2347, "fields": {"resulting_state": 2433, "next_state_transition": 2348}}, {"model": "template.statetransition", "pk": 2348, "fields": {"resulting_state": 2434, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2349, "fields": {"resulting_state": 2432, "next_state_transition": 2350}}, {"model": "template.statetransition", "pk": 2350, "fields": {"resulting_state": 2435, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2351, "fields": {"resulting_state": 2431, "next_state_transition": 2352}}, {"model": "template.statetransition", "pk": 2352, "fields": {"resulting_state": 2436, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2353, "fields": {"resulting_state": 2430, "next_state_transition": 2354}}, {"model": "template.statetransition", "pk": 2354, "fields": {"resulting_state": 2437, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2355, "fields": {"resulting_state": 2429, "next_state_transition": 2356}}, {"model": "template.statetransition", "pk": 2356, "fields": {"resulting_state": 2438, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2357, "fields": {"resulting_state": 2428, "next_state_transition": 2358}}, {"model": "template.statetransition", "pk": 2358, "fields": {"resulting_state": 2439, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2359, "fields": {"resulting_state": 2427, "next_state_transition": 2360}}, {"model": "template.statetransition", "pk": 2360, "fields": {"resulting_state": 2440, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2361, "fields": {"resulting_state": 2426, "next_state_transition": 2362}}, {"model": "template.statetransition", "pk": 2362, "fields": {"resulting_state": 2441, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2363, "fields": {"resulting_state": 2425, "next_state_transition": 2364}}, {"model": "template.statetransition", "pk": 2364, "fields": {"resulting_state": 2442, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2365, "fields": {"resulting_state": 2453, "next_state_transition": 2366}}, {"model": "template.statetransition", "pk": 2366, "fields": {"resulting_state": 2454, "next_state_transition": 2367}}, {"model": "template.statetransition", "pk": 2367, "fields": {"resulting_state": 2455, "next_state_transition": 2368}}, {"model": "template.statetransition", "pk": 2368, "fields": {"resulting_state": 2456, "next_state_transition": 2369}}, {"model": "template.statetransition", "pk": 2369, "fields": {"resulting_state": 2457, "next_state_transition": 2370}}, {"model": "template.statetransition", "pk": 2370, "fields": {"resulting_state": 2458, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2371, "fields": {"resulting_state": 2452, "next_state_transition": 2372}}, {"model": "template.statetransition", "pk": 2372, "fields": {"resulting_state": 2459, "next_state_transition": 2373}}, {"model": "template.statetransition", "pk": 2373, "fields": {"resulting_state": 2460, "next_state_transition": 2374}}, {"model": "template.statetransition", "pk": 2374, "fields": {"resulting_state": 2461, "next_state_transition": 2375}}, {"model": "template.statetransition", "pk": 2375, "fields": {"resulting_state": 2462, "next_state_transition": 2376}}, {"model": "template.statetransition", "pk": 2376, "fields": {"resulting_state": 2463, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2377, "fields": {"resulting_state": 2451, "next_state_transition": 2378}}, {"model": "template.statetransition", "pk": 2378, "fields": {"resulting_state": 2464, "next_state_transition": 2379}}, {"model": "template.statetransition", "pk": 2379, "fields": {"resulting_state": 2465, "next_state_transition": 2380}}, {"model": "template.statetransition", "pk": 2380, "fields": {"resulting_state": 2466, "next_state_transition": 2381}}, {"model": "template.statetransition", "pk": 2381, "fields": {"resulting_state": 2467, "next_state_transition": 2382}}, {"model": "template.statetransition", "pk": 2382, "fields": {"resulting_state": 2468, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2383, "fields": {"resulting_state": 2450, "next_state_transition": 2384}}, {"model": "template.statetransition", "pk": 2384, "fields": {"resulting_state": 2469, "next_state_transition": 2385}}, {"model": "template.statetransition", "pk": 2385, "fields": {"resulting_state": 2470, "next_state_transition": 2386}}, {"model": "template.statetransition", "pk": 2386, "fields": {"resulting_state": 2471, "next_state_transition": 2387}}, {"model": "template.statetransition", "pk": 2387, "fields": {"resulting_state": 2472, "next_state_transition": 2388}}, {"model": "template.statetransition", "pk": 2388, "fields": {"resulting_state": 2473, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2389, "fields": {"resulting_state": 2449, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2390, "fields": {"resulting_state": 2448, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2391, "fields": {"resulting_state": 2447, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2392, "fields": {"resulting_state": 2446, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2393, "fields": {"resulting_state": 2445, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2394, "fields": {"resulting_state": 2479, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2395, "fields": {"resulting_state": 2478, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2396, "fields": {"resulting_state": 2477, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2397, "fields": {"resulting_state": 2476, "next_state_transition": null}}, {"model": "template.statetransition", "pk": 2398, "fields": {"resulting_state": 2475, "next_state_transition": null}}, {"model": "template.subcondition", "pk": 1, "fields": {"name": "Lyse", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"baaf316b-0565-4056-8d31-8c5595d24475": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 2, "fields": {"name": "4 EK´s", "upper_limit": 100000, "lower_limit": 4, "fulfilling_measures": {"actions": {"b5f4c015-4152-459f-bdbb-defab91a3d99": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 3, "fields": {"name": "0-1l Infusion", "upper_limit": 999, "lower_limit": 0, "fulfilling_measures": {"actions": {"2f1b5a58-57a8-4ba9-bb6d-69d2155cdf4d": 1000, "9ed9b301-d4f8-4e81-8e33-f26bbdc24104": 500}, "materials": {}}}}, {"model": "template.subcondition", "pk": 4, "fields": {"name": "1-2l Infusion", "upper_limit": 1999, "lower_limit": 1000, "fulfilling_measures": {"actions": {"2f1b5a58-57a8-4ba9-bb6d-69d2155cdf4d": 1000, "9ed9b301-d4f8-4e81-8e33-f26bbdc24104": 500}, "materials": {}}}}, {"model": "template.subcondition", "pk": 5, "fields": {"name": "2-3l Infusion", "upper_limit": 2999, "lower_limit": 2000, "fulfilling_measures": {"actions": {"2f1b5a58-57a8-4ba9-bb6d-69d2155cdf4d": 1000, "9ed9b301-d4f8-4e81-8e33-f26bbdc24104": 500}, "materials": {}}}}, {"model": "template.subcondition", "pk": 6, "fields": {"name": "3l-inf Infusion", "upper_limit": 100000, "lower_limit": 3000, "fulfilling_measures": {"actions": {"2f1b5a58-57a8-4ba9-bb6d-69d2155cdf4d": 1000, "9ed9b301-d4f8-4e81-8e33-f26bbdc24104": 500}, "materials": {}}}}, {"model": "template.subcondition", "pk": 7, "fields": {"name": "2l Infusion", "upper_limit": 100000, "lower_limit": 2000, "fulfilling_measures": {"actions": {"2f1b5a58-57a8-4ba9-bb6d-69d2155cdf4d": 1000, "9ed9b301-d4f8-4e81-8e33-f26bbdc24104": 500}, "materials": {}}}}, {"model": "template.subcondition", "pk": 8, "fields": {"name": "Thoraxdrainage/ Pleurapunktion", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"22b66af8-ace9-4652-a69c-be62425311cb": 1, "23da8633-a4a6-4af2-a0cb-4b34540033d4": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 9, "fields": {"name": "Glucose", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"1d6b0f2e-7efb-4065-9d58-ff52320e3c7c": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 10, "fields": {"name": "Nitrat", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"b3d54ebc-1459-4e8b-8c4e-98a3c68b1607": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 11, "fields": {"name": "O2", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"72d6f3ad-b9a5-4b16-b289-815766b27c4f": 1, "7b4861b2-e775-4d2a-9cd5-26bab7cc76a0": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 12, "fields": {"name": "OP läuft / ist gelaufen", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {}, "materials": {}}}}, {"model": "template.subcondition", "pk": 13, "fields": {"name": "Analgesie", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"e23f9c72-32fc-4a3f-806a-3031943e145d": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 14, "fields": {"name": "O2 Inhalation", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"72d6f3ad-b9a5-4b16-b289-815766b27c4f": 1, "7b4861b2-e775-4d2a-9cd5-26bab7cc76a0": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 15, "fields": {"name": "CPAP", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"a54e27ca-e443-464d-9daf-3483bd959242": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 16, "fields": {"name": "Antiasthmatikum", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"50014ee9-750a-4fb1-b8b1-50b4f05548c9": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 17, "fields": {"name": "Sedativum", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"2aef024b-b013-490b-87d5-95d9fe10ed72": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 18, "fields": {"name": "freie Atemwege", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"234d0237-ffa0-4e27-b269-99b39f6bfd9f": 1, "25fba4ad-b2fe-4761-87e7-5d5401ac359b": 1, "59edf7ba-7f05-4669-bed7-c17c9ffaccd0": 1, "8c3870ce-8cf6-47a7-add0-734fefaed093": 1, "9883a5c0-300f-4e71-ad7d-fc64d46274f0": 1, "aaf04c59-6c34-4a60-9d67-1a007f015c30": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 19, "fields": {"name": "0-1 EK´s", "upper_limit": 1, "lower_limit": 0, "fulfilling_measures": {"actions": {"b5f4c015-4152-459f-bdbb-defab91a3d99": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 20, "fields": {"name": "2-3 EK´s", "upper_limit": 3, "lower_limit": 2, "fulfilling_measures": {"actions": {"b5f4c015-4152-459f-bdbb-defab91a3d99": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 21, "fields": {"name": "4-5 EK´s", "upper_limit": 5, "lower_limit": 4, "fulfilling_measures": {"actions": {"b5f4c015-4152-459f-bdbb-defab91a3d99": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 22, "fields": {"name": "6-inf EK´s", "upper_limit": 100000, "lower_limit": 6, "fulfilling_measures": {"actions": {"b5f4c015-4152-459f-bdbb-defab91a3d99": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 23, "fields": {"name": "Beatmet", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"72d6f3ad-b9a5-4b16-b289-815766b27c4f": 1}, "materials": {"0067d4f1-d53d-4ec5-9627-792687dc7510": 1, "2752e40f-4b86-43ab-9ebd-95c094a101ab": 1}}}}, {"model": "template.subcondition", "pk": 24, "fields": {"name": "Blutstillung", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"0f5fef5b-998c-4648-a93e-9a6e8ccad3b7": 1}, "materials": {}}}}, {"model": "template.subcondition", "pk": 25, "fields": {"name": "Regional-/ Vollnarkose", "upper_limit": 100000, "lower_limit": 1, "fulfilling_measures": {"actions": {"2de49d83-11be-410c-ac7a-68c458baf620": 1, "6b826d26-aa0a-4317-96f5-6565d7ee1e5f": 1, "d4971ae5-117b-49b8-b5c9-4e4220ff971c": 1}, "materials": {}}}}, {"model": "template.logicnode", "pk": 1, "fields": {"state_transition": 1, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2, "fields": {"state_transition": 2, "node_type": "N", "subcondition": null, "parent": 8}}, {"model": "template.logicnode", "pk": 3, "fields": {"state_transition": 2, "node_type": "S", "subcondition": 23, "parent": 2}}, {"model": "template.logicnode", "pk": 4, "fields": {"state_transition": 2, "node_type": "S", "subcondition": 11, "parent": 8}}, {"model": "template.logicnode", "pk": 5, "fields": {"state_transition": 2, "node_type": "S", "subcondition": 13, "parent": 8}}, {"model": "template.logicnode", "pk": 6, "fields": {"state_transition": 2, "node_type": "S", "subcondition": 17, "parent": 8}}, {"model": "template.logicnode", "pk": 7, "fields": {"state_transition": 2, "node_type": "S", "subcondition": 25, "parent": 8}}, {"model": "template.logicnode", "pk": 8, "fields": {"state_transition": 2, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 9, "fields": {"state_transition": 3, "node_type": "N", "subcondition": null, "parent": 14}}, {"model": "template.logicnode", "pk": 10, "fields": {"state_transition": 3, "node_type": "S", "subcondition": 23, "parent": 9}}, {"model": "template.logicnode", "pk": 11, "fields": {"state_transition": 3, "node_type": "S", "subcondition": 11, "parent": 14}}, {"model": "template.logicnode", "pk": 12, "fields": {"state_transition": 3, "node_type": "S", "subcondition": 13, "parent": 14}}, {"model": "template.logicnode", "pk": 13, "fields": {"state_transition": 3, "node_type": "S", "subcondition": 17, "parent": 14}}, {"model": "template.logicnode", "pk": 14, "fields": {"state_transition": 3, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 15, "fields": {"state_transition": 4, "node_type": "N", "subcondition": null, "parent": 20}}, {"model": "template.logicnode", "pk": 16, "fields": {"state_transition": 4, "node_type": "S", "subcondition": 23, "parent": 15}}, {"model": "template.logicnode", "pk": 17, "fields": {"state_transition": 4, "node_type": "S", "subcondition": 11, "parent": 20}}, {"model": "template.logicnode", "pk": 18, "fields": {"state_transition": 4, "node_type": "S", "subcondition": 13, "parent": 20}}, {"model": "template.logicnode", "pk": 19, "fields": {"state_transition": 4, "node_type": "S", "subcondition": 25, "parent": 20}}, {"model": "template.logicnode", "pk": 20, "fields": {"state_transition": 4, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 21, "fields": {"state_transition": 5, "node_type": "N", "subcondition": null, "parent": 25}}, {"model": "template.logicnode", "pk": 22, "fields": {"state_transition": 5, "node_type": "S", "subcondition": 23, "parent": 21}}, {"model": "template.logicnode", "pk": 23, "fields": {"state_transition": 5, "node_type": "S", "subcondition": 11, "parent": 25}}, {"model": "template.logicnode", "pk": 24, "fields": {"state_transition": 5, "node_type": "S", "subcondition": 13, "parent": 25}}, {"model": "template.logicnode", "pk": 25, "fields": {"state_transition": 5, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 26, "fields": {"state_transition": 6, "node_type": "N", "subcondition": null, "parent": 31}}, {"model": "template.logicnode", "pk": 27, "fields": {"state_transition": 6, "node_type": "S", "subcondition": 23, "parent": 26}}, {"model": "template.logicnode", "pk": 28, "fields": {"state_transition": 6, "node_type": "S", "subcondition": 11, "parent": 31}}, {"model": "template.logicnode", "pk": 29, "fields": {"state_transition": 6, "node_type": "S", "subcondition": 17, "parent": 31}}, {"model": "template.logicnode", "pk": 30, "fields": {"state_transition": 6, "node_type": "S", "subcondition": 25, "parent": 31}}, {"model": "template.logicnode", "pk": 31, "fields": {"state_transition": 6, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 32, "fields": {"state_transition": 7, "node_type": "N", "subcondition": null, "parent": 36}}, {"model": "template.logicnode", "pk": 33, "fields": {"state_transition": 7, "node_type": "S", "subcondition": 23, "parent": 32}}, {"model": "template.logicnode", "pk": 34, "fields": {"state_transition": 7, "node_type": "S", "subcondition": 11, "parent": 36}}, {"model": "template.logicnode", "pk": 35, "fields": {"state_transition": 7, "node_type": "S", "subcondition": 17, "parent": 36}}, {"model": "template.logicnode", "pk": 36, "fields": {"state_transition": 7, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 37, "fields": {"state_transition": 8, "node_type": "N", "subcondition": null, "parent": 41}}, {"model": "template.logicnode", "pk": 38, "fields": {"state_transition": 8, "node_type": "S", "subcondition": 23, "parent": 37}}, {"model": "template.logicnode", "pk": 39, "fields": {"state_transition": 8, "node_type": "S", "subcondition": 11, "parent": 41}}, {"model": "template.logicnode", "pk": 40, "fields": {"state_transition": 8, "node_type": "S", "subcondition": 25, "parent": 41}}, {"model": "template.logicnode", "pk": 41, "fields": {"state_transition": 8, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 42, "fields": {"state_transition": 9, "node_type": "N", "subcondition": null, "parent": 45}}, {"model": "template.logicnode", "pk": 43, "fields": {"state_transition": 9, "node_type": "S", "subcondition": 23, "parent": 42}}, {"model": "template.logicnode", "pk": 44, "fields": {"state_transition": 9, "node_type": "S", "subcondition": 11, "parent": 45}}, {"model": "template.logicnode", "pk": 45, "fields": {"state_transition": 9, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 46, "fields": {"state_transition": 10, "node_type": "N", "subcondition": null, "parent": 51}}, {"model": "template.logicnode", "pk": 47, "fields": {"state_transition": 10, "node_type": "S", "subcondition": 23, "parent": 46}}, {"model": "template.logicnode", "pk": 48, "fields": {"state_transition": 10, "node_type": "S", "subcondition": 13, "parent": 51}}, {"model": "template.logicnode", "pk": 49, "fields": {"state_transition": 10, "node_type": "S", "subcondition": 17, "parent": 51}}, {"model": "template.logicnode", "pk": 50, "fields": {"state_transition": 10, "node_type": "S", "subcondition": 25, "parent": 51}}, {"model": "template.logicnode", "pk": 51, "fields": {"state_transition": 10, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 52, "fields": {"state_transition": 11, "node_type": "N", "subcondition": null, "parent": 56}}, {"model": "template.logicnode", "pk": 53, "fields": {"state_transition": 11, "node_type": "S", "subcondition": 23, "parent": 52}}, {"model": "template.logicnode", "pk": 54, "fields": {"state_transition": 11, "node_type": "S", "subcondition": 13, "parent": 56}}, {"model": "template.logicnode", "pk": 55, "fields": {"state_transition": 11, "node_type": "S", "subcondition": 17, "parent": 56}}, {"model": "template.logicnode", "pk": 56, "fields": {"state_transition": 11, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 57, "fields": {"state_transition": 12, "node_type": "N", "subcondition": null, "parent": 61}}, {"model": "template.logicnode", "pk": 58, "fields": {"state_transition": 12, "node_type": "S", "subcondition": 23, "parent": 57}}, {"model": "template.logicnode", "pk": 59, "fields": {"state_transition": 12, "node_type": "S", "subcondition": 13, "parent": 61}}, {"model": "template.logicnode", "pk": 60, "fields": {"state_transition": 12, "node_type": "S", "subcondition": 25, "parent": 61}}, {"model": "template.logicnode", "pk": 61, "fields": {"state_transition": 12, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 62, "fields": {"state_transition": 13, "node_type": "N", "subcondition": null, "parent": 65}}, {"model": "template.logicnode", "pk": 63, "fields": {"state_transition": 13, "node_type": "S", "subcondition": 23, "parent": 62}}, {"model": "template.logicnode", "pk": 64, "fields": {"state_transition": 13, "node_type": "S", "subcondition": 13, "parent": 65}}, {"model": "template.logicnode", "pk": 65, "fields": {"state_transition": 13, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 66, "fields": {"state_transition": 14, "node_type": "N", "subcondition": null, "parent": 70}}, {"model": "template.logicnode", "pk": 67, "fields": {"state_transition": 14, "node_type": "S", "subcondition": 23, "parent": 66}}, {"model": "template.logicnode", "pk": 68, "fields": {"state_transition": 14, "node_type": "S", "subcondition": 17, "parent": 70}}, {"model": "template.logicnode", "pk": 69, "fields": {"state_transition": 14, "node_type": "S", "subcondition": 25, "parent": 70}}, {"model": "template.logicnode", "pk": 70, "fields": {"state_transition": 14, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 71, "fields": {"state_transition": 15, "node_type": "N", "subcondition": null, "parent": 74}}, {"model": "template.logicnode", "pk": 72, "fields": {"state_transition": 15, "node_type": "S", "subcondition": 23, "parent": 71}}, {"model": "template.logicnode", "pk": 73, "fields": {"state_transition": 15, "node_type": "S", "subcondition": 17, "parent": 74}}, {"model": "template.logicnode", "pk": 74, "fields": {"state_transition": 15, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 75, "fields": {"state_transition": 16, "node_type": "N", "subcondition": null, "parent": 78}}, {"model": "template.logicnode", "pk": 76, "fields": {"state_transition": 16, "node_type": "S", "subcondition": 23, "parent": 75}}, {"model": "template.logicnode", "pk": 77, "fields": {"state_transition": 16, "node_type": "S", "subcondition": 25, "parent": 78}}, {"model": "template.logicnode", "pk": 78, "fields": {"state_transition": 16, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 79, "fields": {"state_transition": 17, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 80, "fields": {"state_transition": 17, "node_type": "S", "subcondition": 23, "parent": 79}}, {"model": "template.logicnode", "pk": 81, "fields": {"state_transition": 18, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 82, "fields": {"state_transition": 19, "node_type": "N", "subcondition": null, "parent": 88}}, {"model": "template.logicnode", "pk": 83, "fields": {"state_transition": 19, "node_type": "S", "subcondition": 23, "parent": 82}}, {"model": "template.logicnode", "pk": 84, "fields": {"state_transition": 19, "node_type": "S", "subcondition": 11, "parent": 88}}, {"model": "template.logicnode", "pk": 85, "fields": {"state_transition": 19, "node_type": "S", "subcondition": 13, "parent": 88}}, {"model": "template.logicnode", "pk": 86, "fields": {"state_transition": 19, "node_type": "S", "subcondition": 17, "parent": 88}}, {"model": "template.logicnode", "pk": 87, "fields": {"state_transition": 19, "node_type": "S", "subcondition": 25, "parent": 88}}, {"model": "template.logicnode", "pk": 88, "fields": {"state_transition": 19, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 89, "fields": {"state_transition": 20, "node_type": "N", "subcondition": null, "parent": 94}}, {"model": "template.logicnode", "pk": 90, "fields": {"state_transition": 20, "node_type": "S", "subcondition": 23, "parent": 89}}, {"model": "template.logicnode", "pk": 91, "fields": {"state_transition": 20, "node_type": "S", "subcondition": 11, "parent": 94}}, {"model": "template.logicnode", "pk": 92, "fields": {"state_transition": 20, "node_type": "S", "subcondition": 13, "parent": 94}}, {"model": "template.logicnode", "pk": 93, "fields": {"state_transition": 20, "node_type": "S", "subcondition": 17, "parent": 94}}, {"model": "template.logicnode", "pk": 94, "fields": {"state_transition": 20, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 95, "fields": {"state_transition": 21, "node_type": "N", "subcondition": null, "parent": 100}}, {"model": "template.logicnode", "pk": 96, "fields": {"state_transition": 21, "node_type": "S", "subcondition": 23, "parent": 95}}, {"model": "template.logicnode", "pk": 97, "fields": {"state_transition": 21, "node_type": "S", "subcondition": 11, "parent": 100}}, {"model": "template.logicnode", "pk": 98, "fields": {"state_transition": 21, "node_type": "S", "subcondition": 13, "parent": 100}}, {"model": "template.logicnode", "pk": 99, "fields": {"state_transition": 21, "node_type": "S", "subcondition": 25, "parent": 100}}, {"model": "template.logicnode", "pk": 100, "fields": {"state_transition": 21, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 101, "fields": {"state_transition": 22, "node_type": "N", "subcondition": null, "parent": 105}}, {"model": "template.logicnode", "pk": 102, "fields": {"state_transition": 22, "node_type": "S", "subcondition": 23, "parent": 101}}, {"model": "template.logicnode", "pk": 103, "fields": {"state_transition": 22, "node_type": "S", "subcondition": 11, "parent": 105}}, {"model": "template.logicnode", "pk": 104, "fields": {"state_transition": 22, "node_type": "S", "subcondition": 13, "parent": 105}}, {"model": "template.logicnode", "pk": 105, "fields": {"state_transition": 22, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 106, "fields": {"state_transition": 23, "node_type": "N", "subcondition": null, "parent": 111}}, {"model": "template.logicnode", "pk": 107, "fields": {"state_transition": 23, "node_type": "S", "subcondition": 23, "parent": 106}}, {"model": "template.logicnode", "pk": 108, "fields": {"state_transition": 23, "node_type": "S", "subcondition": 11, "parent": 111}}, {"model": "template.logicnode", "pk": 109, "fields": {"state_transition": 23, "node_type": "S", "subcondition": 17, "parent": 111}}, {"model": "template.logicnode", "pk": 110, "fields": {"state_transition": 23, "node_type": "S", "subcondition": 25, "parent": 111}}, {"model": "template.logicnode", "pk": 111, "fields": {"state_transition": 23, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 112, "fields": {"state_transition": 24, "node_type": "N", "subcondition": null, "parent": 116}}, {"model": "template.logicnode", "pk": 113, "fields": {"state_transition": 24, "node_type": "S", "subcondition": 23, "parent": 112}}, {"model": "template.logicnode", "pk": 114, "fields": {"state_transition": 24, "node_type": "S", "subcondition": 11, "parent": 116}}, {"model": "template.logicnode", "pk": 115, "fields": {"state_transition": 24, "node_type": "S", "subcondition": 17, "parent": 116}}, {"model": "template.logicnode", "pk": 116, "fields": {"state_transition": 24, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 117, "fields": {"state_transition": 25, "node_type": "N", "subcondition": null, "parent": 121}}, {"model": "template.logicnode", "pk": 118, "fields": {"state_transition": 25, "node_type": "S", "subcondition": 23, "parent": 117}}, {"model": "template.logicnode", "pk": 119, "fields": {"state_transition": 25, "node_type": "S", "subcondition": 11, "parent": 121}}, {"model": "template.logicnode", "pk": 120, "fields": {"state_transition": 25, "node_type": "S", "subcondition": 25, "parent": 121}}, {"model": "template.logicnode", "pk": 121, "fields": {"state_transition": 25, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 122, "fields": {"state_transition": 26, "node_type": "N", "subcondition": null, "parent": 125}}, {"model": "template.logicnode", "pk": 123, "fields": {"state_transition": 26, "node_type": "S", "subcondition": 23, "parent": 122}}, {"model": "template.logicnode", "pk": 124, "fields": {"state_transition": 26, "node_type": "S", "subcondition": 11, "parent": 125}}, {"model": "template.logicnode", "pk": 125, "fields": {"state_transition": 26, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 126, "fields": {"state_transition": 27, "node_type": "N", "subcondition": null, "parent": 131}}, {"model": "template.logicnode", "pk": 127, "fields": {"state_transition": 27, "node_type": "S", "subcondition": 23, "parent": 126}}, {"model": "template.logicnode", "pk": 128, "fields": {"state_transition": 27, "node_type": "S", "subcondition": 13, "parent": 131}}, {"model": "template.logicnode", "pk": 129, "fields": {"state_transition": 27, "node_type": "S", "subcondition": 17, "parent": 131}}, {"model": "template.logicnode", "pk": 130, "fields": {"state_transition": 27, "node_type": "S", "subcondition": 25, "parent": 131}}, {"model": "template.logicnode", "pk": 131, "fields": {"state_transition": 27, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 132, "fields": {"state_transition": 28, "node_type": "N", "subcondition": null, "parent": 136}}, {"model": "template.logicnode", "pk": 133, "fields": {"state_transition": 28, "node_type": "S", "subcondition": 23, "parent": 132}}, {"model": "template.logicnode", "pk": 134, "fields": {"state_transition": 28, "node_type": "S", "subcondition": 13, "parent": 136}}, {"model": "template.logicnode", "pk": 135, "fields": {"state_transition": 28, "node_type": "S", "subcondition": 17, "parent": 136}}, {"model": "template.logicnode", "pk": 136, "fields": {"state_transition": 28, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 137, "fields": {"state_transition": 29, "node_type": "N", "subcondition": null, "parent": 141}}, {"model": "template.logicnode", "pk": 138, "fields": {"state_transition": 29, "node_type": "S", "subcondition": 23, "parent": 137}}, {"model": "template.logicnode", "pk": 139, "fields": {"state_transition": 29, "node_type": "S", "subcondition": 13, "parent": 141}}, {"model": "template.logicnode", "pk": 140, "fields": {"state_transition": 29, "node_type": "S", "subcondition": 25, "parent": 141}}, {"model": "template.logicnode", "pk": 141, "fields": {"state_transition": 29, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 142, "fields": {"state_transition": 30, "node_type": "N", "subcondition": null, "parent": 145}}, {"model": "template.logicnode", "pk": 143, "fields": {"state_transition": 30, "node_type": "S", "subcondition": 23, "parent": 142}}, {"model": "template.logicnode", "pk": 144, "fields": {"state_transition": 30, "node_type": "S", "subcondition": 13, "parent": 145}}, {"model": "template.logicnode", "pk": 145, "fields": {"state_transition": 30, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 146, "fields": {"state_transition": 31, "node_type": "N", "subcondition": null, "parent": 150}}, {"model": "template.logicnode", "pk": 147, "fields": {"state_transition": 31, "node_type": "S", "subcondition": 23, "parent": 146}}, {"model": "template.logicnode", "pk": 148, "fields": {"state_transition": 31, "node_type": "S", "subcondition": 17, "parent": 150}}, {"model": "template.logicnode", "pk": 149, "fields": {"state_transition": 31, "node_type": "S", "subcondition": 25, "parent": 150}}, {"model": "template.logicnode", "pk": 150, "fields": {"state_transition": 31, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 151, "fields": {"state_transition": 32, "node_type": "N", "subcondition": null, "parent": 154}}, {"model": "template.logicnode", "pk": 152, "fields": {"state_transition": 32, "node_type": "S", "subcondition": 23, "parent": 151}}, {"model": "template.logicnode", "pk": 153, "fields": {"state_transition": 32, "node_type": "S", "subcondition": 17, "parent": 154}}, {"model": "template.logicnode", "pk": 154, "fields": {"state_transition": 32, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 155, "fields": {"state_transition": 33, "node_type": "N", "subcondition": null, "parent": 158}}, {"model": "template.logicnode", "pk": 156, "fields": {"state_transition": 33, "node_type": "S", "subcondition": 23, "parent": 155}}, {"model": "template.logicnode", "pk": 157, "fields": {"state_transition": 33, "node_type": "S", "subcondition": 25, "parent": 158}}, {"model": "template.logicnode", "pk": 158, "fields": {"state_transition": 33, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 159, "fields": {"state_transition": 34, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 160, "fields": {"state_transition": 34, "node_type": "S", "subcondition": 23, "parent": 159}}, {"model": "template.logicnode", "pk": 161, "fields": {"state_transition": 35, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 162, "fields": {"state_transition": 36, "node_type": "N", "subcondition": null, "parent": 168}}, {"model": "template.logicnode", "pk": 163, "fields": {"state_transition": 36, "node_type": "S", "subcondition": 23, "parent": 162}}, {"model": "template.logicnode", "pk": 164, "fields": {"state_transition": 36, "node_type": "S", "subcondition": 11, "parent": 168}}, {"model": "template.logicnode", "pk": 165, "fields": {"state_transition": 36, "node_type": "S", "subcondition": 13, "parent": 168}}, {"model": "template.logicnode", "pk": 166, "fields": {"state_transition": 36, "node_type": "S", "subcondition": 17, "parent": 168}}, {"model": "template.logicnode", "pk": 167, "fields": {"state_transition": 36, "node_type": "S", "subcondition": 25, "parent": 168}}, {"model": "template.logicnode", "pk": 168, "fields": {"state_transition": 36, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 169, "fields": {"state_transition": 37, "node_type": "N", "subcondition": null, "parent": 174}}, {"model": "template.logicnode", "pk": 170, "fields": {"state_transition": 37, "node_type": "S", "subcondition": 23, "parent": 169}}, {"model": "template.logicnode", "pk": 171, "fields": {"state_transition": 37, "node_type": "S", "subcondition": 11, "parent": 174}}, {"model": "template.logicnode", "pk": 172, "fields": {"state_transition": 37, "node_type": "S", "subcondition": 13, "parent": 174}}, {"model": "template.logicnode", "pk": 173, "fields": {"state_transition": 37, "node_type": "S", "subcondition": 17, "parent": 174}}, {"model": "template.logicnode", "pk": 174, "fields": {"state_transition": 37, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 175, "fields": {"state_transition": 38, "node_type": "N", "subcondition": null, "parent": 180}}, {"model": "template.logicnode", "pk": 176, "fields": {"state_transition": 38, "node_type": "S", "subcondition": 23, "parent": 175}}, {"model": "template.logicnode", "pk": 177, "fields": {"state_transition": 38, "node_type": "S", "subcondition": 11, "parent": 180}}, {"model": "template.logicnode", "pk": 178, "fields": {"state_transition": 38, "node_type": "S", "subcondition": 13, "parent": 180}}, {"model": "template.logicnode", "pk": 179, "fields": {"state_transition": 38, "node_type": "S", "subcondition": 25, "parent": 180}}, {"model": "template.logicnode", "pk": 180, "fields": {"state_transition": 38, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 181, "fields": {"state_transition": 39, "node_type": "N", "subcondition": null, "parent": 185}}, {"model": "template.logicnode", "pk": 182, "fields": {"state_transition": 39, "node_type": "S", "subcondition": 23, "parent": 181}}, {"model": "template.logicnode", "pk": 183, "fields": {"state_transition": 39, "node_type": "S", "subcondition": 11, "parent": 185}}, {"model": "template.logicnode", "pk": 184, "fields": {"state_transition": 39, "node_type": "S", "subcondition": 13, "parent": 185}}, {"model": "template.logicnode", "pk": 185, "fields": {"state_transition": 39, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 186, "fields": {"state_transition": 40, "node_type": "N", "subcondition": null, "parent": 191}}, {"model": "template.logicnode", "pk": 187, "fields": {"state_transition": 40, "node_type": "S", "subcondition": 23, "parent": 186}}, {"model": "template.logicnode", "pk": 188, "fields": {"state_transition": 40, "node_type": "S", "subcondition": 11, "parent": 191}}, {"model": "template.logicnode", "pk": 189, "fields": {"state_transition": 40, "node_type": "S", "subcondition": 17, "parent": 191}}, {"model": "template.logicnode", "pk": 190, "fields": {"state_transition": 40, "node_type": "S", "subcondition": 25, "parent": 191}}, {"model": "template.logicnode", "pk": 191, "fields": {"state_transition": 40, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 192, "fields": {"state_transition": 41, "node_type": "N", "subcondition": null, "parent": 196}}, {"model": "template.logicnode", "pk": 193, "fields": {"state_transition": 41, "node_type": "S", "subcondition": 23, "parent": 192}}, {"model": "template.logicnode", "pk": 194, "fields": {"state_transition": 41, "node_type": "S", "subcondition": 11, "parent": 196}}, {"model": "template.logicnode", "pk": 195, "fields": {"state_transition": 41, "node_type": "S", "subcondition": 17, "parent": 196}}, {"model": "template.logicnode", "pk": 196, "fields": {"state_transition": 41, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 197, "fields": {"state_transition": 42, "node_type": "N", "subcondition": null, "parent": 201}}, {"model": "template.logicnode", "pk": 198, "fields": {"state_transition": 42, "node_type": "S", "subcondition": 23, "parent": 197}}, {"model": "template.logicnode", "pk": 199, "fields": {"state_transition": 42, "node_type": "S", "subcondition": 11, "parent": 201}}, {"model": "template.logicnode", "pk": 200, "fields": {"state_transition": 42, "node_type": "S", "subcondition": 25, "parent": 201}}, {"model": "template.logicnode", "pk": 201, "fields": {"state_transition": 42, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 202, "fields": {"state_transition": 43, "node_type": "N", "subcondition": null, "parent": 205}}, {"model": "template.logicnode", "pk": 203, "fields": {"state_transition": 43, "node_type": "S", "subcondition": 23, "parent": 202}}, {"model": "template.logicnode", "pk": 204, "fields": {"state_transition": 43, "node_type": "S", "subcondition": 11, "parent": 205}}, {"model": "template.logicnode", "pk": 205, "fields": {"state_transition": 43, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 206, "fields": {"state_transition": 44, "node_type": "N", "subcondition": null, "parent": 211}}, {"model": "template.logicnode", "pk": 207, "fields": {"state_transition": 44, "node_type": "S", "subcondition": 23, "parent": 206}}, {"model": "template.logicnode", "pk": 208, "fields": {"state_transition": 44, "node_type": "S", "subcondition": 13, "parent": 211}}, {"model": "template.logicnode", "pk": 209, "fields": {"state_transition": 44, "node_type": "S", "subcondition": 17, "parent": 211}}, {"model": "template.logicnode", "pk": 210, "fields": {"state_transition": 44, "node_type": "S", "subcondition": 25, "parent": 211}}, {"model": "template.logicnode", "pk": 211, "fields": {"state_transition": 44, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 212, "fields": {"state_transition": 45, "node_type": "N", "subcondition": null, "parent": 216}}, {"model": "template.logicnode", "pk": 213, "fields": {"state_transition": 45, "node_type": "S", "subcondition": 23, "parent": 212}}, {"model": "template.logicnode", "pk": 214, "fields": {"state_transition": 45, "node_type": "S", "subcondition": 13, "parent": 216}}, {"model": "template.logicnode", "pk": 215, "fields": {"state_transition": 45, "node_type": "S", "subcondition": 17, "parent": 216}}, {"model": "template.logicnode", "pk": 216, "fields": {"state_transition": 45, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 217, "fields": {"state_transition": 46, "node_type": "N", "subcondition": null, "parent": 221}}, {"model": "template.logicnode", "pk": 218, "fields": {"state_transition": 46, "node_type": "S", "subcondition": 23, "parent": 217}}, {"model": "template.logicnode", "pk": 219, "fields": {"state_transition": 46, "node_type": "S", "subcondition": 13, "parent": 221}}, {"model": "template.logicnode", "pk": 220, "fields": {"state_transition": 46, "node_type": "S", "subcondition": 25, "parent": 221}}, {"model": "template.logicnode", "pk": 221, "fields": {"state_transition": 46, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 222, "fields": {"state_transition": 47, "node_type": "N", "subcondition": null, "parent": 225}}, {"model": "template.logicnode", "pk": 223, "fields": {"state_transition": 47, "node_type": "S", "subcondition": 23, "parent": 222}}, {"model": "template.logicnode", "pk": 224, "fields": {"state_transition": 47, "node_type": "S", "subcondition": 13, "parent": 225}}, {"model": "template.logicnode", "pk": 225, "fields": {"state_transition": 47, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 226, "fields": {"state_transition": 48, "node_type": "N", "subcondition": null, "parent": 230}}, {"model": "template.logicnode", "pk": 227, "fields": {"state_transition": 48, "node_type": "S", "subcondition": 23, "parent": 226}}, {"model": "template.logicnode", "pk": 228, "fields": {"state_transition": 48, "node_type": "S", "subcondition": 17, "parent": 230}}, {"model": "template.logicnode", "pk": 229, "fields": {"state_transition": 48, "node_type": "S", "subcondition": 25, "parent": 230}}, {"model": "template.logicnode", "pk": 230, "fields": {"state_transition": 48, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 231, "fields": {"state_transition": 49, "node_type": "N", "subcondition": null, "parent": 234}}, {"model": "template.logicnode", "pk": 232, "fields": {"state_transition": 49, "node_type": "S", "subcondition": 23, "parent": 231}}, {"model": "template.logicnode", "pk": 233, "fields": {"state_transition": 49, "node_type": "S", "subcondition": 17, "parent": 234}}, {"model": "template.logicnode", "pk": 234, "fields": {"state_transition": 49, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 235, "fields": {"state_transition": 50, "node_type": "N", "subcondition": null, "parent": 238}}, {"model": "template.logicnode", "pk": 236, "fields": {"state_transition": 50, "node_type": "S", "subcondition": 23, "parent": 235}}, {"model": "template.logicnode", "pk": 237, "fields": {"state_transition": 50, "node_type": "S", "subcondition": 25, "parent": 238}}, {"model": "template.logicnode", "pk": 238, "fields": {"state_transition": 50, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 239, "fields": {"state_transition": 51, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 240, "fields": {"state_transition": 51, "node_type": "S", "subcondition": 23, "parent": 239}}, {"model": "template.logicnode", "pk": 241, "fields": {"state_transition": 52, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 242, "fields": {"state_transition": 53, "node_type": "N", "subcondition": null, "parent": 248}}, {"model": "template.logicnode", "pk": 243, "fields": {"state_transition": 53, "node_type": "S", "subcondition": 23, "parent": 242}}, {"model": "template.logicnode", "pk": 244, "fields": {"state_transition": 53, "node_type": "S", "subcondition": 11, "parent": 248}}, {"model": "template.logicnode", "pk": 245, "fields": {"state_transition": 53, "node_type": "S", "subcondition": 13, "parent": 248}}, {"model": "template.logicnode", "pk": 246, "fields": {"state_transition": 53, "node_type": "S", "subcondition": 17, "parent": 248}}, {"model": "template.logicnode", "pk": 247, "fields": {"state_transition": 53, "node_type": "S", "subcondition": 25, "parent": 248}}, {"model": "template.logicnode", "pk": 248, "fields": {"state_transition": 53, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 249, "fields": {"state_transition": 54, "node_type": "N", "subcondition": null, "parent": 254}}, {"model": "template.logicnode", "pk": 250, "fields": {"state_transition": 54, "node_type": "S", "subcondition": 23, "parent": 249}}, {"model": "template.logicnode", "pk": 251, "fields": {"state_transition": 54, "node_type": "S", "subcondition": 11, "parent": 254}}, {"model": "template.logicnode", "pk": 252, "fields": {"state_transition": 54, "node_type": "S", "subcondition": 13, "parent": 254}}, {"model": "template.logicnode", "pk": 253, "fields": {"state_transition": 54, "node_type": "S", "subcondition": 17, "parent": 254}}, {"model": "template.logicnode", "pk": 254, "fields": {"state_transition": 54, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 255, "fields": {"state_transition": 55, "node_type": "N", "subcondition": null, "parent": 260}}, {"model": "template.logicnode", "pk": 256, "fields": {"state_transition": 55, "node_type": "S", "subcondition": 23, "parent": 255}}, {"model": "template.logicnode", "pk": 257, "fields": {"state_transition": 55, "node_type": "S", "subcondition": 11, "parent": 260}}, {"model": "template.logicnode", "pk": 258, "fields": {"state_transition": 55, "node_type": "S", "subcondition": 13, "parent": 260}}, {"model": "template.logicnode", "pk": 259, "fields": {"state_transition": 55, "node_type": "S", "subcondition": 25, "parent": 260}}, {"model": "template.logicnode", "pk": 260, "fields": {"state_transition": 55, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 261, "fields": {"state_transition": 56, "node_type": "N", "subcondition": null, "parent": 265}}, {"model": "template.logicnode", "pk": 262, "fields": {"state_transition": 56, "node_type": "S", "subcondition": 23, "parent": 261}}, {"model": "template.logicnode", "pk": 263, "fields": {"state_transition": 56, "node_type": "S", "subcondition": 11, "parent": 265}}, {"model": "template.logicnode", "pk": 264, "fields": {"state_transition": 56, "node_type": "S", "subcondition": 13, "parent": 265}}, {"model": "template.logicnode", "pk": 265, "fields": {"state_transition": 56, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 266, "fields": {"state_transition": 57, "node_type": "N", "subcondition": null, "parent": 271}}, {"model": "template.logicnode", "pk": 267, "fields": {"state_transition": 57, "node_type": "S", "subcondition": 23, "parent": 266}}, {"model": "template.logicnode", "pk": 268, "fields": {"state_transition": 57, "node_type": "S", "subcondition": 11, "parent": 271}}, {"model": "template.logicnode", "pk": 269, "fields": {"state_transition": 57, "node_type": "S", "subcondition": 17, "parent": 271}}, {"model": "template.logicnode", "pk": 270, "fields": {"state_transition": 57, "node_type": "S", "subcondition": 25, "parent": 271}}, {"model": "template.logicnode", "pk": 271, "fields": {"state_transition": 57, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 272, "fields": {"state_transition": 58, "node_type": "N", "subcondition": null, "parent": 276}}, {"model": "template.logicnode", "pk": 273, "fields": {"state_transition": 58, "node_type": "S", "subcondition": 23, "parent": 272}}, {"model": "template.logicnode", "pk": 274, "fields": {"state_transition": 58, "node_type": "S", "subcondition": 11, "parent": 276}}, {"model": "template.logicnode", "pk": 275, "fields": {"state_transition": 58, "node_type": "S", "subcondition": 17, "parent": 276}}, {"model": "template.logicnode", "pk": 276, "fields": {"state_transition": 58, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 277, "fields": {"state_transition": 59, "node_type": "N", "subcondition": null, "parent": 281}}, {"model": "template.logicnode", "pk": 278, "fields": {"state_transition": 59, "node_type": "S", "subcondition": 23, "parent": 277}}, {"model": "template.logicnode", "pk": 279, "fields": {"state_transition": 59, "node_type": "S", "subcondition": 11, "parent": 281}}, {"model": "template.logicnode", "pk": 280, "fields": {"state_transition": 59, "node_type": "S", "subcondition": 25, "parent": 281}}, {"model": "template.logicnode", "pk": 281, "fields": {"state_transition": 59, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 282, "fields": {"state_transition": 60, "node_type": "N", "subcondition": null, "parent": 285}}, {"model": "template.logicnode", "pk": 283, "fields": {"state_transition": 60, "node_type": "S", "subcondition": 23, "parent": 282}}, {"model": "template.logicnode", "pk": 284, "fields": {"state_transition": 60, "node_type": "S", "subcondition": 11, "parent": 285}}, {"model": "template.logicnode", "pk": 285, "fields": {"state_transition": 60, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 286, "fields": {"state_transition": 61, "node_type": "N", "subcondition": null, "parent": 291}}, {"model": "template.logicnode", "pk": 287, "fields": {"state_transition": 61, "node_type": "S", "subcondition": 23, "parent": 286}}, {"model": "template.logicnode", "pk": 288, "fields": {"state_transition": 61, "node_type": "S", "subcondition": 13, "parent": 291}}, {"model": "template.logicnode", "pk": 289, "fields": {"state_transition": 61, "node_type": "S", "subcondition": 17, "parent": 291}}, {"model": "template.logicnode", "pk": 290, "fields": {"state_transition": 61, "node_type": "S", "subcondition": 25, "parent": 291}}, {"model": "template.logicnode", "pk": 291, "fields": {"state_transition": 61, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 292, "fields": {"state_transition": 62, "node_type": "N", "subcondition": null, "parent": 296}}, {"model": "template.logicnode", "pk": 293, "fields": {"state_transition": 62, "node_type": "S", "subcondition": 23, "parent": 292}}, {"model": "template.logicnode", "pk": 294, "fields": {"state_transition": 62, "node_type": "S", "subcondition": 13, "parent": 296}}, {"model": "template.logicnode", "pk": 295, "fields": {"state_transition": 62, "node_type": "S", "subcondition": 17, "parent": 296}}, {"model": "template.logicnode", "pk": 296, "fields": {"state_transition": 62, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 297, "fields": {"state_transition": 63, "node_type": "N", "subcondition": null, "parent": 301}}, {"model": "template.logicnode", "pk": 298, "fields": {"state_transition": 63, "node_type": "S", "subcondition": 23, "parent": 297}}, {"model": "template.logicnode", "pk": 299, "fields": {"state_transition": 63, "node_type": "S", "subcondition": 13, "parent": 301}}, {"model": "template.logicnode", "pk": 300, "fields": {"state_transition": 63, "node_type": "S", "subcondition": 25, "parent": 301}}, {"model": "template.logicnode", "pk": 301, "fields": {"state_transition": 63, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 302, "fields": {"state_transition": 64, "node_type": "N", "subcondition": null, "parent": 305}}, {"model": "template.logicnode", "pk": 303, "fields": {"state_transition": 64, "node_type": "S", "subcondition": 23, "parent": 302}}, {"model": "template.logicnode", "pk": 304, "fields": {"state_transition": 64, "node_type": "S", "subcondition": 13, "parent": 305}}, {"model": "template.logicnode", "pk": 305, "fields": {"state_transition": 64, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 306, "fields": {"state_transition": 65, "node_type": "N", "subcondition": null, "parent": 310}}, {"model": "template.logicnode", "pk": 307, "fields": {"state_transition": 65, "node_type": "S", "subcondition": 23, "parent": 306}}, {"model": "template.logicnode", "pk": 308, "fields": {"state_transition": 65, "node_type": "S", "subcondition": 17, "parent": 310}}, {"model": "template.logicnode", "pk": 309, "fields": {"state_transition": 65, "node_type": "S", "subcondition": 25, "parent": 310}}, {"model": "template.logicnode", "pk": 310, "fields": {"state_transition": 65, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 311, "fields": {"state_transition": 66, "node_type": "N", "subcondition": null, "parent": 314}}, {"model": "template.logicnode", "pk": 312, "fields": {"state_transition": 66, "node_type": "S", "subcondition": 23, "parent": 311}}, {"model": "template.logicnode", "pk": 313, "fields": {"state_transition": 66, "node_type": "S", "subcondition": 17, "parent": 314}}, {"model": "template.logicnode", "pk": 314, "fields": {"state_transition": 66, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 315, "fields": {"state_transition": 67, "node_type": "N", "subcondition": null, "parent": 318}}, {"model": "template.logicnode", "pk": 316, "fields": {"state_transition": 67, "node_type": "S", "subcondition": 23, "parent": 315}}, {"model": "template.logicnode", "pk": 317, "fields": {"state_transition": 67, "node_type": "S", "subcondition": 25, "parent": 318}}, {"model": "template.logicnode", "pk": 318, "fields": {"state_transition": 67, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 319, "fields": {"state_transition": 68, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 320, "fields": {"state_transition": 68, "node_type": "S", "subcondition": 23, "parent": 319}}, {"model": "template.logicnode", "pk": 321, "fields": {"state_transition": 69, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 322, "fields": {"state_transition": 70, "node_type": "N", "subcondition": null, "parent": 328}}, {"model": "template.logicnode", "pk": 323, "fields": {"state_transition": 70, "node_type": "S", "subcondition": 23, "parent": 322}}, {"model": "template.logicnode", "pk": 324, "fields": {"state_transition": 70, "node_type": "S", "subcondition": 11, "parent": 328}}, {"model": "template.logicnode", "pk": 325, "fields": {"state_transition": 70, "node_type": "S", "subcondition": 13, "parent": 328}}, {"model": "template.logicnode", "pk": 326, "fields": {"state_transition": 70, "node_type": "S", "subcondition": 17, "parent": 328}}, {"model": "template.logicnode", "pk": 327, "fields": {"state_transition": 70, "node_type": "S", "subcondition": 25, "parent": 328}}, {"model": "template.logicnode", "pk": 328, "fields": {"state_transition": 70, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 329, "fields": {"state_transition": 71, "node_type": "N", "subcondition": null, "parent": 334}}, {"model": "template.logicnode", "pk": 330, "fields": {"state_transition": 71, "node_type": "S", "subcondition": 23, "parent": 329}}, {"model": "template.logicnode", "pk": 331, "fields": {"state_transition": 71, "node_type": "S", "subcondition": 11, "parent": 334}}, {"model": "template.logicnode", "pk": 332, "fields": {"state_transition": 71, "node_type": "S", "subcondition": 13, "parent": 334}}, {"model": "template.logicnode", "pk": 333, "fields": {"state_transition": 71, "node_type": "S", "subcondition": 17, "parent": 334}}, {"model": "template.logicnode", "pk": 334, "fields": {"state_transition": 71, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 335, "fields": {"state_transition": 72, "node_type": "N", "subcondition": null, "parent": 340}}, {"model": "template.logicnode", "pk": 336, "fields": {"state_transition": 72, "node_type": "S", "subcondition": 23, "parent": 335}}, {"model": "template.logicnode", "pk": 337, "fields": {"state_transition": 72, "node_type": "S", "subcondition": 11, "parent": 340}}, {"model": "template.logicnode", "pk": 338, "fields": {"state_transition": 72, "node_type": "S", "subcondition": 13, "parent": 340}}, {"model": "template.logicnode", "pk": 339, "fields": {"state_transition": 72, "node_type": "S", "subcondition": 25, "parent": 340}}, {"model": "template.logicnode", "pk": 340, "fields": {"state_transition": 72, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 341, "fields": {"state_transition": 73, "node_type": "N", "subcondition": null, "parent": 345}}, {"model": "template.logicnode", "pk": 342, "fields": {"state_transition": 73, "node_type": "S", "subcondition": 23, "parent": 341}}, {"model": "template.logicnode", "pk": 343, "fields": {"state_transition": 73, "node_type": "S", "subcondition": 11, "parent": 345}}, {"model": "template.logicnode", "pk": 344, "fields": {"state_transition": 73, "node_type": "S", "subcondition": 13, "parent": 345}}, {"model": "template.logicnode", "pk": 345, "fields": {"state_transition": 73, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 346, "fields": {"state_transition": 74, "node_type": "N", "subcondition": null, "parent": 351}}, {"model": "template.logicnode", "pk": 347, "fields": {"state_transition": 74, "node_type": "S", "subcondition": 23, "parent": 346}}, {"model": "template.logicnode", "pk": 348, "fields": {"state_transition": 74, "node_type": "S", "subcondition": 11, "parent": 351}}, {"model": "template.logicnode", "pk": 349, "fields": {"state_transition": 74, "node_type": "S", "subcondition": 17, "parent": 351}}, {"model": "template.logicnode", "pk": 350, "fields": {"state_transition": 74, "node_type": "S", "subcondition": 25, "parent": 351}}, {"model": "template.logicnode", "pk": 351, "fields": {"state_transition": 74, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 352, "fields": {"state_transition": 75, "node_type": "N", "subcondition": null, "parent": 356}}, {"model": "template.logicnode", "pk": 353, "fields": {"state_transition": 75, "node_type": "S", "subcondition": 23, "parent": 352}}, {"model": "template.logicnode", "pk": 354, "fields": {"state_transition": 75, "node_type": "S", "subcondition": 11, "parent": 356}}, {"model": "template.logicnode", "pk": 355, "fields": {"state_transition": 75, "node_type": "S", "subcondition": 17, "parent": 356}}, {"model": "template.logicnode", "pk": 356, "fields": {"state_transition": 75, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 357, "fields": {"state_transition": 76, "node_type": "N", "subcondition": null, "parent": 361}}, {"model": "template.logicnode", "pk": 358, "fields": {"state_transition": 76, "node_type": "S", "subcondition": 23, "parent": 357}}, {"model": "template.logicnode", "pk": 359, "fields": {"state_transition": 76, "node_type": "S", "subcondition": 11, "parent": 361}}, {"model": "template.logicnode", "pk": 360, "fields": {"state_transition": 76, "node_type": "S", "subcondition": 25, "parent": 361}}, {"model": "template.logicnode", "pk": 361, "fields": {"state_transition": 76, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 362, "fields": {"state_transition": 77, "node_type": "N", "subcondition": null, "parent": 365}}, {"model": "template.logicnode", "pk": 363, "fields": {"state_transition": 77, "node_type": "S", "subcondition": 23, "parent": 362}}, {"model": "template.logicnode", "pk": 364, "fields": {"state_transition": 77, "node_type": "S", "subcondition": 11, "parent": 365}}, {"model": "template.logicnode", "pk": 365, "fields": {"state_transition": 77, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 366, "fields": {"state_transition": 78, "node_type": "N", "subcondition": null, "parent": 371}}, {"model": "template.logicnode", "pk": 367, "fields": {"state_transition": 78, "node_type": "S", "subcondition": 23, "parent": 366}}, {"model": "template.logicnode", "pk": 368, "fields": {"state_transition": 78, "node_type": "S", "subcondition": 13, "parent": 371}}, {"model": "template.logicnode", "pk": 369, "fields": {"state_transition": 78, "node_type": "S", "subcondition": 17, "parent": 371}}, {"model": "template.logicnode", "pk": 370, "fields": {"state_transition": 78, "node_type": "S", "subcondition": 25, "parent": 371}}, {"model": "template.logicnode", "pk": 371, "fields": {"state_transition": 78, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 372, "fields": {"state_transition": 79, "node_type": "N", "subcondition": null, "parent": 376}}, {"model": "template.logicnode", "pk": 373, "fields": {"state_transition": 79, "node_type": "S", "subcondition": 23, "parent": 372}}, {"model": "template.logicnode", "pk": 374, "fields": {"state_transition": 79, "node_type": "S", "subcondition": 13, "parent": 376}}, {"model": "template.logicnode", "pk": 375, "fields": {"state_transition": 79, "node_type": "S", "subcondition": 17, "parent": 376}}, {"model": "template.logicnode", "pk": 376, "fields": {"state_transition": 79, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 377, "fields": {"state_transition": 80, "node_type": "N", "subcondition": null, "parent": 381}}, {"model": "template.logicnode", "pk": 378, "fields": {"state_transition": 80, "node_type": "S", "subcondition": 23, "parent": 377}}, {"model": "template.logicnode", "pk": 379, "fields": {"state_transition": 80, "node_type": "S", "subcondition": 13, "parent": 381}}, {"model": "template.logicnode", "pk": 380, "fields": {"state_transition": 80, "node_type": "S", "subcondition": 25, "parent": 381}}, {"model": "template.logicnode", "pk": 381, "fields": {"state_transition": 80, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 382, "fields": {"state_transition": 81, "node_type": "N", "subcondition": null, "parent": 385}}, {"model": "template.logicnode", "pk": 383, "fields": {"state_transition": 81, "node_type": "S", "subcondition": 23, "parent": 382}}, {"model": "template.logicnode", "pk": 384, "fields": {"state_transition": 81, "node_type": "S", "subcondition": 13, "parent": 385}}, {"model": "template.logicnode", "pk": 385, "fields": {"state_transition": 81, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 386, "fields": {"state_transition": 82, "node_type": "N", "subcondition": null, "parent": 390}}, {"model": "template.logicnode", "pk": 387, "fields": {"state_transition": 82, "node_type": "S", "subcondition": 23, "parent": 386}}, {"model": "template.logicnode", "pk": 388, "fields": {"state_transition": 82, "node_type": "S", "subcondition": 17, "parent": 390}}, {"model": "template.logicnode", "pk": 389, "fields": {"state_transition": 82, "node_type": "S", "subcondition": 25, "parent": 390}}, {"model": "template.logicnode", "pk": 390, "fields": {"state_transition": 82, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 391, "fields": {"state_transition": 83, "node_type": "N", "subcondition": null, "parent": 394}}, {"model": "template.logicnode", "pk": 392, "fields": {"state_transition": 83, "node_type": "S", "subcondition": 23, "parent": 391}}, {"model": "template.logicnode", "pk": 393, "fields": {"state_transition": 83, "node_type": "S", "subcondition": 17, "parent": 394}}, {"model": "template.logicnode", "pk": 394, "fields": {"state_transition": 83, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 395, "fields": {"state_transition": 84, "node_type": "N", "subcondition": null, "parent": 398}}, {"model": "template.logicnode", "pk": 396, "fields": {"state_transition": 84, "node_type": "S", "subcondition": 23, "parent": 395}}, {"model": "template.logicnode", "pk": 397, "fields": {"state_transition": 84, "node_type": "S", "subcondition": 25, "parent": 398}}, {"model": "template.logicnode", "pk": 398, "fields": {"state_transition": 84, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 399, "fields": {"state_transition": 85, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 400, "fields": {"state_transition": 85, "node_type": "S", "subcondition": 23, "parent": 399}}, {"model": "template.logicnode", "pk": 401, "fields": {"state_transition": 86, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 402, "fields": {"state_transition": 87, "node_type": "N", "subcondition": null, "parent": 408}}, {"model": "template.logicnode", "pk": 403, "fields": {"state_transition": 87, "node_type": "S", "subcondition": 23, "parent": 402}}, {"model": "template.logicnode", "pk": 404, "fields": {"state_transition": 87, "node_type": "S", "subcondition": 11, "parent": 408}}, {"model": "template.logicnode", "pk": 405, "fields": {"state_transition": 87, "node_type": "S", "subcondition": 13, "parent": 408}}, {"model": "template.logicnode", "pk": 406, "fields": {"state_transition": 87, "node_type": "S", "subcondition": 17, "parent": 408}}, {"model": "template.logicnode", "pk": 407, "fields": {"state_transition": 87, "node_type": "S", "subcondition": 25, "parent": 408}}, {"model": "template.logicnode", "pk": 408, "fields": {"state_transition": 87, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 409, "fields": {"state_transition": 88, "node_type": "N", "subcondition": null, "parent": 414}}, {"model": "template.logicnode", "pk": 410, "fields": {"state_transition": 88, "node_type": "S", "subcondition": 23, "parent": 409}}, {"model": "template.logicnode", "pk": 411, "fields": {"state_transition": 88, "node_type": "S", "subcondition": 11, "parent": 414}}, {"model": "template.logicnode", "pk": 412, "fields": {"state_transition": 88, "node_type": "S", "subcondition": 13, "parent": 414}}, {"model": "template.logicnode", "pk": 413, "fields": {"state_transition": 88, "node_type": "S", "subcondition": 17, "parent": 414}}, {"model": "template.logicnode", "pk": 414, "fields": {"state_transition": 88, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 415, "fields": {"state_transition": 89, "node_type": "N", "subcondition": null, "parent": 420}}, {"model": "template.logicnode", "pk": 416, "fields": {"state_transition": 89, "node_type": "S", "subcondition": 23, "parent": 415}}, {"model": "template.logicnode", "pk": 417, "fields": {"state_transition": 89, "node_type": "S", "subcondition": 11, "parent": 420}}, {"model": "template.logicnode", "pk": 418, "fields": {"state_transition": 89, "node_type": "S", "subcondition": 13, "parent": 420}}, {"model": "template.logicnode", "pk": 419, "fields": {"state_transition": 89, "node_type": "S", "subcondition": 25, "parent": 420}}, {"model": "template.logicnode", "pk": 420, "fields": {"state_transition": 89, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 421, "fields": {"state_transition": 90, "node_type": "N", "subcondition": null, "parent": 425}}, {"model": "template.logicnode", "pk": 422, "fields": {"state_transition": 90, "node_type": "S", "subcondition": 23, "parent": 421}}, {"model": "template.logicnode", "pk": 423, "fields": {"state_transition": 90, "node_type": "S", "subcondition": 11, "parent": 425}}, {"model": "template.logicnode", "pk": 424, "fields": {"state_transition": 90, "node_type": "S", "subcondition": 13, "parent": 425}}, {"model": "template.logicnode", "pk": 425, "fields": {"state_transition": 90, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 426, "fields": {"state_transition": 91, "node_type": "N", "subcondition": null, "parent": 431}}, {"model": "template.logicnode", "pk": 427, "fields": {"state_transition": 91, "node_type": "S", "subcondition": 23, "parent": 426}}, {"model": "template.logicnode", "pk": 428, "fields": {"state_transition": 91, "node_type": "S", "subcondition": 11, "parent": 431}}, {"model": "template.logicnode", "pk": 429, "fields": {"state_transition": 91, "node_type": "S", "subcondition": 17, "parent": 431}}, {"model": "template.logicnode", "pk": 430, "fields": {"state_transition": 91, "node_type": "S", "subcondition": 25, "parent": 431}}, {"model": "template.logicnode", "pk": 431, "fields": {"state_transition": 91, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 432, "fields": {"state_transition": 92, "node_type": "N", "subcondition": null, "parent": 436}}, {"model": "template.logicnode", "pk": 433, "fields": {"state_transition": 92, "node_type": "S", "subcondition": 23, "parent": 432}}, {"model": "template.logicnode", "pk": 434, "fields": {"state_transition": 92, "node_type": "S", "subcondition": 11, "parent": 436}}, {"model": "template.logicnode", "pk": 435, "fields": {"state_transition": 92, "node_type": "S", "subcondition": 17, "parent": 436}}, {"model": "template.logicnode", "pk": 436, "fields": {"state_transition": 92, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 437, "fields": {"state_transition": 93, "node_type": "N", "subcondition": null, "parent": 441}}, {"model": "template.logicnode", "pk": 438, "fields": {"state_transition": 93, "node_type": "S", "subcondition": 23, "parent": 437}}, {"model": "template.logicnode", "pk": 439, "fields": {"state_transition": 93, "node_type": "S", "subcondition": 11, "parent": 441}}, {"model": "template.logicnode", "pk": 440, "fields": {"state_transition": 93, "node_type": "S", "subcondition": 25, "parent": 441}}, {"model": "template.logicnode", "pk": 441, "fields": {"state_transition": 93, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 442, "fields": {"state_transition": 94, "node_type": "N", "subcondition": null, "parent": 445}}, {"model": "template.logicnode", "pk": 443, "fields": {"state_transition": 94, "node_type": "S", "subcondition": 23, "parent": 442}}, {"model": "template.logicnode", "pk": 444, "fields": {"state_transition": 94, "node_type": "S", "subcondition": 11, "parent": 445}}, {"model": "template.logicnode", "pk": 445, "fields": {"state_transition": 94, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 446, "fields": {"state_transition": 95, "node_type": "N", "subcondition": null, "parent": 451}}, {"model": "template.logicnode", "pk": 447, "fields": {"state_transition": 95, "node_type": "S", "subcondition": 23, "parent": 446}}, {"model": "template.logicnode", "pk": 448, "fields": {"state_transition": 95, "node_type": "S", "subcondition": 13, "parent": 451}}, {"model": "template.logicnode", "pk": 449, "fields": {"state_transition": 95, "node_type": "S", "subcondition": 17, "parent": 451}}, {"model": "template.logicnode", "pk": 450, "fields": {"state_transition": 95, "node_type": "S", "subcondition": 25, "parent": 451}}, {"model": "template.logicnode", "pk": 451, "fields": {"state_transition": 95, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 452, "fields": {"state_transition": 96, "node_type": "N", "subcondition": null, "parent": 456}}, {"model": "template.logicnode", "pk": 453, "fields": {"state_transition": 96, "node_type": "S", "subcondition": 23, "parent": 452}}, {"model": "template.logicnode", "pk": 454, "fields": {"state_transition": 96, "node_type": "S", "subcondition": 13, "parent": 456}}, {"model": "template.logicnode", "pk": 455, "fields": {"state_transition": 96, "node_type": "S", "subcondition": 17, "parent": 456}}, {"model": "template.logicnode", "pk": 456, "fields": {"state_transition": 96, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 457, "fields": {"state_transition": 97, "node_type": "N", "subcondition": null, "parent": 461}}, {"model": "template.logicnode", "pk": 458, "fields": {"state_transition": 97, "node_type": "S", "subcondition": 23, "parent": 457}}, {"model": "template.logicnode", "pk": 459, "fields": {"state_transition": 97, "node_type": "S", "subcondition": 13, "parent": 461}}, {"model": "template.logicnode", "pk": 460, "fields": {"state_transition": 97, "node_type": "S", "subcondition": 25, "parent": 461}}, {"model": "template.logicnode", "pk": 461, "fields": {"state_transition": 97, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 462, "fields": {"state_transition": 98, "node_type": "N", "subcondition": null, "parent": 465}}, {"model": "template.logicnode", "pk": 463, "fields": {"state_transition": 98, "node_type": "S", "subcondition": 23, "parent": 462}}, {"model": "template.logicnode", "pk": 464, "fields": {"state_transition": 98, "node_type": "S", "subcondition": 13, "parent": 465}}, {"model": "template.logicnode", "pk": 465, "fields": {"state_transition": 98, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 466, "fields": {"state_transition": 99, "node_type": "N", "subcondition": null, "parent": 470}}, {"model": "template.logicnode", "pk": 467, "fields": {"state_transition": 99, "node_type": "S", "subcondition": 23, "parent": 466}}, {"model": "template.logicnode", "pk": 468, "fields": {"state_transition": 99, "node_type": "S", "subcondition": 17, "parent": 470}}, {"model": "template.logicnode", "pk": 469, "fields": {"state_transition": 99, "node_type": "S", "subcondition": 25, "parent": 470}}, {"model": "template.logicnode", "pk": 470, "fields": {"state_transition": 99, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 471, "fields": {"state_transition": 100, "node_type": "N", "subcondition": null, "parent": 474}}, {"model": "template.logicnode", "pk": 472, "fields": {"state_transition": 100, "node_type": "S", "subcondition": 23, "parent": 471}}, {"model": "template.logicnode", "pk": 473, "fields": {"state_transition": 100, "node_type": "S", "subcondition": 17, "parent": 474}}, {"model": "template.logicnode", "pk": 474, "fields": {"state_transition": 100, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 475, "fields": {"state_transition": 101, "node_type": "N", "subcondition": null, "parent": 478}}, {"model": "template.logicnode", "pk": 476, "fields": {"state_transition": 101, "node_type": "S", "subcondition": 23, "parent": 475}}, {"model": "template.logicnode", "pk": 477, "fields": {"state_transition": 101, "node_type": "S", "subcondition": 25, "parent": 478}}, {"model": "template.logicnode", "pk": 478, "fields": {"state_transition": 101, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 479, "fields": {"state_transition": 102, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 480, "fields": {"state_transition": 102, "node_type": "S", "subcondition": 23, "parent": 479}}, {"model": "template.logicnode", "pk": 481, "fields": {"state_transition": 103, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 482, "fields": {"state_transition": 104, "node_type": "N", "subcondition": null, "parent": 488}}, {"model": "template.logicnode", "pk": 483, "fields": {"state_transition": 104, "node_type": "S", "subcondition": 23, "parent": 482}}, {"model": "template.logicnode", "pk": 484, "fields": {"state_transition": 104, "node_type": "S", "subcondition": 11, "parent": 488}}, {"model": "template.logicnode", "pk": 485, "fields": {"state_transition": 104, "node_type": "S", "subcondition": 13, "parent": 488}}, {"model": "template.logicnode", "pk": 486, "fields": {"state_transition": 104, "node_type": "S", "subcondition": 17, "parent": 488}}, {"model": "template.logicnode", "pk": 487, "fields": {"state_transition": 104, "node_type": "S", "subcondition": 25, "parent": 488}}, {"model": "template.logicnode", "pk": 488, "fields": {"state_transition": 104, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 489, "fields": {"state_transition": 105, "node_type": "N", "subcondition": null, "parent": 494}}, {"model": "template.logicnode", "pk": 490, "fields": {"state_transition": 105, "node_type": "S", "subcondition": 23, "parent": 489}}, {"model": "template.logicnode", "pk": 491, "fields": {"state_transition": 105, "node_type": "S", "subcondition": 11, "parent": 494}}, {"model": "template.logicnode", "pk": 492, "fields": {"state_transition": 105, "node_type": "S", "subcondition": 13, "parent": 494}}, {"model": "template.logicnode", "pk": 493, "fields": {"state_transition": 105, "node_type": "S", "subcondition": 17, "parent": 494}}, {"model": "template.logicnode", "pk": 494, "fields": {"state_transition": 105, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 495, "fields": {"state_transition": 106, "node_type": "N", "subcondition": null, "parent": 500}}, {"model": "template.logicnode", "pk": 496, "fields": {"state_transition": 106, "node_type": "S", "subcondition": 23, "parent": 495}}, {"model": "template.logicnode", "pk": 497, "fields": {"state_transition": 106, "node_type": "S", "subcondition": 11, "parent": 500}}, {"model": "template.logicnode", "pk": 498, "fields": {"state_transition": 106, "node_type": "S", "subcondition": 13, "parent": 500}}, {"model": "template.logicnode", "pk": 499, "fields": {"state_transition": 106, "node_type": "S", "subcondition": 25, "parent": 500}}, {"model": "template.logicnode", "pk": 500, "fields": {"state_transition": 106, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 501, "fields": {"state_transition": 107, "node_type": "N", "subcondition": null, "parent": 505}}, {"model": "template.logicnode", "pk": 502, "fields": {"state_transition": 107, "node_type": "S", "subcondition": 23, "parent": 501}}, {"model": "template.logicnode", "pk": 503, "fields": {"state_transition": 107, "node_type": "S", "subcondition": 11, "parent": 505}}, {"model": "template.logicnode", "pk": 504, "fields": {"state_transition": 107, "node_type": "S", "subcondition": 13, "parent": 505}}, {"model": "template.logicnode", "pk": 505, "fields": {"state_transition": 107, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 506, "fields": {"state_transition": 108, "node_type": "N", "subcondition": null, "parent": 511}}, {"model": "template.logicnode", "pk": 507, "fields": {"state_transition": 108, "node_type": "S", "subcondition": 23, "parent": 506}}, {"model": "template.logicnode", "pk": 508, "fields": {"state_transition": 108, "node_type": "S", "subcondition": 11, "parent": 511}}, {"model": "template.logicnode", "pk": 509, "fields": {"state_transition": 108, "node_type": "S", "subcondition": 17, "parent": 511}}, {"model": "template.logicnode", "pk": 510, "fields": {"state_transition": 108, "node_type": "S", "subcondition": 25, "parent": 511}}, {"model": "template.logicnode", "pk": 511, "fields": {"state_transition": 108, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 512, "fields": {"state_transition": 109, "node_type": "N", "subcondition": null, "parent": 516}}, {"model": "template.logicnode", "pk": 513, "fields": {"state_transition": 109, "node_type": "S", "subcondition": 23, "parent": 512}}, {"model": "template.logicnode", "pk": 514, "fields": {"state_transition": 109, "node_type": "S", "subcondition": 11, "parent": 516}}, {"model": "template.logicnode", "pk": 515, "fields": {"state_transition": 109, "node_type": "S", "subcondition": 17, "parent": 516}}, {"model": "template.logicnode", "pk": 516, "fields": {"state_transition": 109, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 517, "fields": {"state_transition": 110, "node_type": "N", "subcondition": null, "parent": 521}}, {"model": "template.logicnode", "pk": 518, "fields": {"state_transition": 110, "node_type": "S", "subcondition": 23, "parent": 517}}, {"model": "template.logicnode", "pk": 519, "fields": {"state_transition": 110, "node_type": "S", "subcondition": 11, "parent": 521}}, {"model": "template.logicnode", "pk": 520, "fields": {"state_transition": 110, "node_type": "S", "subcondition": 25, "parent": 521}}, {"model": "template.logicnode", "pk": 521, "fields": {"state_transition": 110, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 522, "fields": {"state_transition": 111, "node_type": "N", "subcondition": null, "parent": 525}}, {"model": "template.logicnode", "pk": 523, "fields": {"state_transition": 111, "node_type": "S", "subcondition": 23, "parent": 522}}, {"model": "template.logicnode", "pk": 524, "fields": {"state_transition": 111, "node_type": "S", "subcondition": 11, "parent": 525}}, {"model": "template.logicnode", "pk": 525, "fields": {"state_transition": 111, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 526, "fields": {"state_transition": 112, "node_type": "N", "subcondition": null, "parent": 531}}, {"model": "template.logicnode", "pk": 527, "fields": {"state_transition": 112, "node_type": "S", "subcondition": 23, "parent": 526}}, {"model": "template.logicnode", "pk": 528, "fields": {"state_transition": 112, "node_type": "S", "subcondition": 13, "parent": 531}}, {"model": "template.logicnode", "pk": 529, "fields": {"state_transition": 112, "node_type": "S", "subcondition": 17, "parent": 531}}, {"model": "template.logicnode", "pk": 530, "fields": {"state_transition": 112, "node_type": "S", "subcondition": 25, "parent": 531}}, {"model": "template.logicnode", "pk": 531, "fields": {"state_transition": 112, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 532, "fields": {"state_transition": 113, "node_type": "N", "subcondition": null, "parent": 536}}, {"model": "template.logicnode", "pk": 533, "fields": {"state_transition": 113, "node_type": "S", "subcondition": 23, "parent": 532}}, {"model": "template.logicnode", "pk": 534, "fields": {"state_transition": 113, "node_type": "S", "subcondition": 13, "parent": 536}}, {"model": "template.logicnode", "pk": 535, "fields": {"state_transition": 113, "node_type": "S", "subcondition": 17, "parent": 536}}, {"model": "template.logicnode", "pk": 536, "fields": {"state_transition": 113, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 537, "fields": {"state_transition": 114, "node_type": "N", "subcondition": null, "parent": 541}}, {"model": "template.logicnode", "pk": 538, "fields": {"state_transition": 114, "node_type": "S", "subcondition": 23, "parent": 537}}, {"model": "template.logicnode", "pk": 539, "fields": {"state_transition": 114, "node_type": "S", "subcondition": 13, "parent": 541}}, {"model": "template.logicnode", "pk": 540, "fields": {"state_transition": 114, "node_type": "S", "subcondition": 25, "parent": 541}}, {"model": "template.logicnode", "pk": 541, "fields": {"state_transition": 114, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 542, "fields": {"state_transition": 115, "node_type": "N", "subcondition": null, "parent": 545}}, {"model": "template.logicnode", "pk": 543, "fields": {"state_transition": 115, "node_type": "S", "subcondition": 23, "parent": 542}}, {"model": "template.logicnode", "pk": 544, "fields": {"state_transition": 115, "node_type": "S", "subcondition": 13, "parent": 545}}, {"model": "template.logicnode", "pk": 545, "fields": {"state_transition": 115, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 546, "fields": {"state_transition": 116, "node_type": "N", "subcondition": null, "parent": 550}}, {"model": "template.logicnode", "pk": 547, "fields": {"state_transition": 116, "node_type": "S", "subcondition": 23, "parent": 546}}, {"model": "template.logicnode", "pk": 548, "fields": {"state_transition": 116, "node_type": "S", "subcondition": 17, "parent": 550}}, {"model": "template.logicnode", "pk": 549, "fields": {"state_transition": 116, "node_type": "S", "subcondition": 25, "parent": 550}}, {"model": "template.logicnode", "pk": 550, "fields": {"state_transition": 116, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 551, "fields": {"state_transition": 117, "node_type": "N", "subcondition": null, "parent": 554}}, {"model": "template.logicnode", "pk": 552, "fields": {"state_transition": 117, "node_type": "S", "subcondition": 23, "parent": 551}}, {"model": "template.logicnode", "pk": 553, "fields": {"state_transition": 117, "node_type": "S", "subcondition": 17, "parent": 554}}, {"model": "template.logicnode", "pk": 554, "fields": {"state_transition": 117, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 555, "fields": {"state_transition": 118, "node_type": "N", "subcondition": null, "parent": 558}}, {"model": "template.logicnode", "pk": 556, "fields": {"state_transition": 118, "node_type": "S", "subcondition": 23, "parent": 555}}, {"model": "template.logicnode", "pk": 557, "fields": {"state_transition": 118, "node_type": "S", "subcondition": 25, "parent": 558}}, {"model": "template.logicnode", "pk": 558, "fields": {"state_transition": 118, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 559, "fields": {"state_transition": 119, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 560, "fields": {"state_transition": 119, "node_type": "S", "subcondition": 23, "parent": 559}}, {"model": "template.logicnode", "pk": 561, "fields": {"state_transition": 120, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 562, "fields": {"state_transition": 121, "node_type": "N", "subcondition": null, "parent": 568}}, {"model": "template.logicnode", "pk": 563, "fields": {"state_transition": 121, "node_type": "S", "subcondition": 23, "parent": 562}}, {"model": "template.logicnode", "pk": 564, "fields": {"state_transition": 121, "node_type": "S", "subcondition": 11, "parent": 568}}, {"model": "template.logicnode", "pk": 565, "fields": {"state_transition": 121, "node_type": "S", "subcondition": 13, "parent": 568}}, {"model": "template.logicnode", "pk": 566, "fields": {"state_transition": 121, "node_type": "S", "subcondition": 17, "parent": 568}}, {"model": "template.logicnode", "pk": 567, "fields": {"state_transition": 121, "node_type": "S", "subcondition": 25, "parent": 568}}, {"model": "template.logicnode", "pk": 568, "fields": {"state_transition": 121, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 569, "fields": {"state_transition": 122, "node_type": "N", "subcondition": null, "parent": 574}}, {"model": "template.logicnode", "pk": 570, "fields": {"state_transition": 122, "node_type": "S", "subcondition": 23, "parent": 569}}, {"model": "template.logicnode", "pk": 571, "fields": {"state_transition": 122, "node_type": "S", "subcondition": 11, "parent": 574}}, {"model": "template.logicnode", "pk": 572, "fields": {"state_transition": 122, "node_type": "S", "subcondition": 13, "parent": 574}}, {"model": "template.logicnode", "pk": 573, "fields": {"state_transition": 122, "node_type": "S", "subcondition": 17, "parent": 574}}, {"model": "template.logicnode", "pk": 574, "fields": {"state_transition": 122, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 575, "fields": {"state_transition": 123, "node_type": "N", "subcondition": null, "parent": 580}}, {"model": "template.logicnode", "pk": 576, "fields": {"state_transition": 123, "node_type": "S", "subcondition": 23, "parent": 575}}, {"model": "template.logicnode", "pk": 577, "fields": {"state_transition": 123, "node_type": "S", "subcondition": 11, "parent": 580}}, {"model": "template.logicnode", "pk": 578, "fields": {"state_transition": 123, "node_type": "S", "subcondition": 13, "parent": 580}}, {"model": "template.logicnode", "pk": 579, "fields": {"state_transition": 123, "node_type": "S", "subcondition": 25, "parent": 580}}, {"model": "template.logicnode", "pk": 580, "fields": {"state_transition": 123, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 581, "fields": {"state_transition": 124, "node_type": "N", "subcondition": null, "parent": 585}}, {"model": "template.logicnode", "pk": 582, "fields": {"state_transition": 124, "node_type": "S", "subcondition": 23, "parent": 581}}, {"model": "template.logicnode", "pk": 583, "fields": {"state_transition": 124, "node_type": "S", "subcondition": 11, "parent": 585}}, {"model": "template.logicnode", "pk": 584, "fields": {"state_transition": 124, "node_type": "S", "subcondition": 13, "parent": 585}}, {"model": "template.logicnode", "pk": 585, "fields": {"state_transition": 124, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 586, "fields": {"state_transition": 125, "node_type": "N", "subcondition": null, "parent": 591}}, {"model": "template.logicnode", "pk": 587, "fields": {"state_transition": 125, "node_type": "S", "subcondition": 23, "parent": 586}}, {"model": "template.logicnode", "pk": 588, "fields": {"state_transition": 125, "node_type": "S", "subcondition": 11, "parent": 591}}, {"model": "template.logicnode", "pk": 589, "fields": {"state_transition": 125, "node_type": "S", "subcondition": 17, "parent": 591}}, {"model": "template.logicnode", "pk": 590, "fields": {"state_transition": 125, "node_type": "S", "subcondition": 25, "parent": 591}}, {"model": "template.logicnode", "pk": 591, "fields": {"state_transition": 125, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 592, "fields": {"state_transition": 126, "node_type": "N", "subcondition": null, "parent": 596}}, {"model": "template.logicnode", "pk": 593, "fields": {"state_transition": 126, "node_type": "S", "subcondition": 23, "parent": 592}}, {"model": "template.logicnode", "pk": 594, "fields": {"state_transition": 126, "node_type": "S", "subcondition": 11, "parent": 596}}, {"model": "template.logicnode", "pk": 595, "fields": {"state_transition": 126, "node_type": "S", "subcondition": 17, "parent": 596}}, {"model": "template.logicnode", "pk": 596, "fields": {"state_transition": 126, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 597, "fields": {"state_transition": 127, "node_type": "N", "subcondition": null, "parent": 601}}, {"model": "template.logicnode", "pk": 598, "fields": {"state_transition": 127, "node_type": "S", "subcondition": 23, "parent": 597}}, {"model": "template.logicnode", "pk": 599, "fields": {"state_transition": 127, "node_type": "S", "subcondition": 11, "parent": 601}}, {"model": "template.logicnode", "pk": 600, "fields": {"state_transition": 127, "node_type": "S", "subcondition": 25, "parent": 601}}, {"model": "template.logicnode", "pk": 601, "fields": {"state_transition": 127, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 602, "fields": {"state_transition": 128, "node_type": "N", "subcondition": null, "parent": 605}}, {"model": "template.logicnode", "pk": 603, "fields": {"state_transition": 128, "node_type": "S", "subcondition": 23, "parent": 602}}, {"model": "template.logicnode", "pk": 604, "fields": {"state_transition": 128, "node_type": "S", "subcondition": 11, "parent": 605}}, {"model": "template.logicnode", "pk": 605, "fields": {"state_transition": 128, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 606, "fields": {"state_transition": 129, "node_type": "N", "subcondition": null, "parent": 611}}, {"model": "template.logicnode", "pk": 607, "fields": {"state_transition": 129, "node_type": "S", "subcondition": 23, "parent": 606}}, {"model": "template.logicnode", "pk": 608, "fields": {"state_transition": 129, "node_type": "S", "subcondition": 13, "parent": 611}}, {"model": "template.logicnode", "pk": 609, "fields": {"state_transition": 129, "node_type": "S", "subcondition": 17, "parent": 611}}, {"model": "template.logicnode", "pk": 610, "fields": {"state_transition": 129, "node_type": "S", "subcondition": 25, "parent": 611}}, {"model": "template.logicnode", "pk": 611, "fields": {"state_transition": 129, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 612, "fields": {"state_transition": 130, "node_type": "N", "subcondition": null, "parent": 616}}, {"model": "template.logicnode", "pk": 613, "fields": {"state_transition": 130, "node_type": "S", "subcondition": 23, "parent": 612}}, {"model": "template.logicnode", "pk": 614, "fields": {"state_transition": 130, "node_type": "S", "subcondition": 13, "parent": 616}}, {"model": "template.logicnode", "pk": 615, "fields": {"state_transition": 130, "node_type": "S", "subcondition": 17, "parent": 616}}, {"model": "template.logicnode", "pk": 616, "fields": {"state_transition": 130, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 617, "fields": {"state_transition": 131, "node_type": "N", "subcondition": null, "parent": 621}}, {"model": "template.logicnode", "pk": 618, "fields": {"state_transition": 131, "node_type": "S", "subcondition": 23, "parent": 617}}, {"model": "template.logicnode", "pk": 619, "fields": {"state_transition": 131, "node_type": "S", "subcondition": 13, "parent": 621}}, {"model": "template.logicnode", "pk": 620, "fields": {"state_transition": 131, "node_type": "S", "subcondition": 25, "parent": 621}}, {"model": "template.logicnode", "pk": 621, "fields": {"state_transition": 131, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 622, "fields": {"state_transition": 132, "node_type": "N", "subcondition": null, "parent": 625}}, {"model": "template.logicnode", "pk": 623, "fields": {"state_transition": 132, "node_type": "S", "subcondition": 23, "parent": 622}}, {"model": "template.logicnode", "pk": 624, "fields": {"state_transition": 132, "node_type": "S", "subcondition": 13, "parent": 625}}, {"model": "template.logicnode", "pk": 625, "fields": {"state_transition": 132, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 626, "fields": {"state_transition": 133, "node_type": "N", "subcondition": null, "parent": 630}}, {"model": "template.logicnode", "pk": 627, "fields": {"state_transition": 133, "node_type": "S", "subcondition": 23, "parent": 626}}, {"model": "template.logicnode", "pk": 628, "fields": {"state_transition": 133, "node_type": "S", "subcondition": 17, "parent": 630}}, {"model": "template.logicnode", "pk": 629, "fields": {"state_transition": 133, "node_type": "S", "subcondition": 25, "parent": 630}}, {"model": "template.logicnode", "pk": 630, "fields": {"state_transition": 133, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 631, "fields": {"state_transition": 134, "node_type": "N", "subcondition": null, "parent": 634}}, {"model": "template.logicnode", "pk": 632, "fields": {"state_transition": 134, "node_type": "S", "subcondition": 23, "parent": 631}}, {"model": "template.logicnode", "pk": 633, "fields": {"state_transition": 134, "node_type": "S", "subcondition": 17, "parent": 634}}, {"model": "template.logicnode", "pk": 634, "fields": {"state_transition": 134, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 635, "fields": {"state_transition": 135, "node_type": "N", "subcondition": null, "parent": 638}}, {"model": "template.logicnode", "pk": 636, "fields": {"state_transition": 135, "node_type": "S", "subcondition": 23, "parent": 635}}, {"model": "template.logicnode", "pk": 637, "fields": {"state_transition": 135, "node_type": "S", "subcondition": 25, "parent": 638}}, {"model": "template.logicnode", "pk": 638, "fields": {"state_transition": 135, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 639, "fields": {"state_transition": 136, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 640, "fields": {"state_transition": 136, "node_type": "S", "subcondition": 23, "parent": 639}}, {"model": "template.logicnode", "pk": 641, "fields": {"state_transition": 137, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 642, "fields": {"state_transition": 138, "node_type": "N", "subcondition": null, "parent": 648}}, {"model": "template.logicnode", "pk": 643, "fields": {"state_transition": 138, "node_type": "S", "subcondition": 23, "parent": 642}}, {"model": "template.logicnode", "pk": 644, "fields": {"state_transition": 138, "node_type": "S", "subcondition": 11, "parent": 648}}, {"model": "template.logicnode", "pk": 645, "fields": {"state_transition": 138, "node_type": "S", "subcondition": 13, "parent": 648}}, {"model": "template.logicnode", "pk": 646, "fields": {"state_transition": 138, "node_type": "S", "subcondition": 17, "parent": 648}}, {"model": "template.logicnode", "pk": 647, "fields": {"state_transition": 138, "node_type": "S", "subcondition": 25, "parent": 648}}, {"model": "template.logicnode", "pk": 648, "fields": {"state_transition": 138, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 649, "fields": {"state_transition": 139, "node_type": "N", "subcondition": null, "parent": 654}}, {"model": "template.logicnode", "pk": 650, "fields": {"state_transition": 139, "node_type": "S", "subcondition": 23, "parent": 649}}, {"model": "template.logicnode", "pk": 651, "fields": {"state_transition": 139, "node_type": "S", "subcondition": 11, "parent": 654}}, {"model": "template.logicnode", "pk": 652, "fields": {"state_transition": 139, "node_type": "S", "subcondition": 13, "parent": 654}}, {"model": "template.logicnode", "pk": 653, "fields": {"state_transition": 139, "node_type": "S", "subcondition": 17, "parent": 654}}, {"model": "template.logicnode", "pk": 654, "fields": {"state_transition": 139, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 655, "fields": {"state_transition": 140, "node_type": "N", "subcondition": null, "parent": 660}}, {"model": "template.logicnode", "pk": 656, "fields": {"state_transition": 140, "node_type": "S", "subcondition": 23, "parent": 655}}, {"model": "template.logicnode", "pk": 657, "fields": {"state_transition": 140, "node_type": "S", "subcondition": 11, "parent": 660}}, {"model": "template.logicnode", "pk": 658, "fields": {"state_transition": 140, "node_type": "S", "subcondition": 13, "parent": 660}}, {"model": "template.logicnode", "pk": 659, "fields": {"state_transition": 140, "node_type": "S", "subcondition": 25, "parent": 660}}, {"model": "template.logicnode", "pk": 660, "fields": {"state_transition": 140, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 661, "fields": {"state_transition": 141, "node_type": "N", "subcondition": null, "parent": 665}}, {"model": "template.logicnode", "pk": 662, "fields": {"state_transition": 141, "node_type": "S", "subcondition": 23, "parent": 661}}, {"model": "template.logicnode", "pk": 663, "fields": {"state_transition": 141, "node_type": "S", "subcondition": 11, "parent": 665}}, {"model": "template.logicnode", "pk": 664, "fields": {"state_transition": 141, "node_type": "S", "subcondition": 13, "parent": 665}}, {"model": "template.logicnode", "pk": 665, "fields": {"state_transition": 141, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 666, "fields": {"state_transition": 142, "node_type": "N", "subcondition": null, "parent": 671}}, {"model": "template.logicnode", "pk": 667, "fields": {"state_transition": 142, "node_type": "S", "subcondition": 23, "parent": 666}}, {"model": "template.logicnode", "pk": 668, "fields": {"state_transition": 142, "node_type": "S", "subcondition": 11, "parent": 671}}, {"model": "template.logicnode", "pk": 669, "fields": {"state_transition": 142, "node_type": "S", "subcondition": 17, "parent": 671}}, {"model": "template.logicnode", "pk": 670, "fields": {"state_transition": 142, "node_type": "S", "subcondition": 25, "parent": 671}}, {"model": "template.logicnode", "pk": 671, "fields": {"state_transition": 142, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 672, "fields": {"state_transition": 143, "node_type": "N", "subcondition": null, "parent": 676}}, {"model": "template.logicnode", "pk": 673, "fields": {"state_transition": 143, "node_type": "S", "subcondition": 23, "parent": 672}}, {"model": "template.logicnode", "pk": 674, "fields": {"state_transition": 143, "node_type": "S", "subcondition": 11, "parent": 676}}, {"model": "template.logicnode", "pk": 675, "fields": {"state_transition": 143, "node_type": "S", "subcondition": 17, "parent": 676}}, {"model": "template.logicnode", "pk": 676, "fields": {"state_transition": 143, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 677, "fields": {"state_transition": 144, "node_type": "N", "subcondition": null, "parent": 681}}, {"model": "template.logicnode", "pk": 678, "fields": {"state_transition": 144, "node_type": "S", "subcondition": 23, "parent": 677}}, {"model": "template.logicnode", "pk": 679, "fields": {"state_transition": 144, "node_type": "S", "subcondition": 11, "parent": 681}}, {"model": "template.logicnode", "pk": 680, "fields": {"state_transition": 144, "node_type": "S", "subcondition": 25, "parent": 681}}, {"model": "template.logicnode", "pk": 681, "fields": {"state_transition": 144, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 682, "fields": {"state_transition": 145, "node_type": "N", "subcondition": null, "parent": 685}}, {"model": "template.logicnode", "pk": 683, "fields": {"state_transition": 145, "node_type": "S", "subcondition": 23, "parent": 682}}, {"model": "template.logicnode", "pk": 684, "fields": {"state_transition": 145, "node_type": "S", "subcondition": 11, "parent": 685}}, {"model": "template.logicnode", "pk": 685, "fields": {"state_transition": 145, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 686, "fields": {"state_transition": 146, "node_type": "N", "subcondition": null, "parent": 691}}, {"model": "template.logicnode", "pk": 687, "fields": {"state_transition": 146, "node_type": "S", "subcondition": 23, "parent": 686}}, {"model": "template.logicnode", "pk": 688, "fields": {"state_transition": 146, "node_type": "S", "subcondition": 13, "parent": 691}}, {"model": "template.logicnode", "pk": 689, "fields": {"state_transition": 146, "node_type": "S", "subcondition": 17, "parent": 691}}, {"model": "template.logicnode", "pk": 690, "fields": {"state_transition": 146, "node_type": "S", "subcondition": 25, "parent": 691}}, {"model": "template.logicnode", "pk": 691, "fields": {"state_transition": 146, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 692, "fields": {"state_transition": 147, "node_type": "N", "subcondition": null, "parent": 696}}, {"model": "template.logicnode", "pk": 693, "fields": {"state_transition": 147, "node_type": "S", "subcondition": 23, "parent": 692}}, {"model": "template.logicnode", "pk": 694, "fields": {"state_transition": 147, "node_type": "S", "subcondition": 13, "parent": 696}}, {"model": "template.logicnode", "pk": 695, "fields": {"state_transition": 147, "node_type": "S", "subcondition": 17, "parent": 696}}, {"model": "template.logicnode", "pk": 696, "fields": {"state_transition": 147, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 697, "fields": {"state_transition": 148, "node_type": "N", "subcondition": null, "parent": 701}}, {"model": "template.logicnode", "pk": 698, "fields": {"state_transition": 148, "node_type": "S", "subcondition": 23, "parent": 697}}, {"model": "template.logicnode", "pk": 699, "fields": {"state_transition": 148, "node_type": "S", "subcondition": 13, "parent": 701}}, {"model": "template.logicnode", "pk": 700, "fields": {"state_transition": 148, "node_type": "S", "subcondition": 25, "parent": 701}}, {"model": "template.logicnode", "pk": 701, "fields": {"state_transition": 148, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 702, "fields": {"state_transition": 149, "node_type": "N", "subcondition": null, "parent": 705}}, {"model": "template.logicnode", "pk": 703, "fields": {"state_transition": 149, "node_type": "S", "subcondition": 23, "parent": 702}}, {"model": "template.logicnode", "pk": 704, "fields": {"state_transition": 149, "node_type": "S", "subcondition": 13, "parent": 705}}, {"model": "template.logicnode", "pk": 705, "fields": {"state_transition": 149, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 706, "fields": {"state_transition": 150, "node_type": "N", "subcondition": null, "parent": 710}}, {"model": "template.logicnode", "pk": 707, "fields": {"state_transition": 150, "node_type": "S", "subcondition": 23, "parent": 706}}, {"model": "template.logicnode", "pk": 708, "fields": {"state_transition": 150, "node_type": "S", "subcondition": 17, "parent": 710}}, {"model": "template.logicnode", "pk": 709, "fields": {"state_transition": 150, "node_type": "S", "subcondition": 25, "parent": 710}}, {"model": "template.logicnode", "pk": 710, "fields": {"state_transition": 150, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 711, "fields": {"state_transition": 151, "node_type": "N", "subcondition": null, "parent": 714}}, {"model": "template.logicnode", "pk": 712, "fields": {"state_transition": 151, "node_type": "S", "subcondition": 23, "parent": 711}}, {"model": "template.logicnode", "pk": 713, "fields": {"state_transition": 151, "node_type": "S", "subcondition": 17, "parent": 714}}, {"model": "template.logicnode", "pk": 714, "fields": {"state_transition": 151, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 715, "fields": {"state_transition": 152, "node_type": "N", "subcondition": null, "parent": 718}}, {"model": "template.logicnode", "pk": 716, "fields": {"state_transition": 152, "node_type": "S", "subcondition": 23, "parent": 715}}, {"model": "template.logicnode", "pk": 717, "fields": {"state_transition": 152, "node_type": "S", "subcondition": 25, "parent": 718}}, {"model": "template.logicnode", "pk": 718, "fields": {"state_transition": 152, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 719, "fields": {"state_transition": 153, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 720, "fields": {"state_transition": 153, "node_type": "S", "subcondition": 23, "parent": 719}}, {"model": "template.logicnode", "pk": 721, "fields": {"state_transition": 154, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 722, "fields": {"state_transition": 155, "node_type": "N", "subcondition": null, "parent": 728}}, {"model": "template.logicnode", "pk": 723, "fields": {"state_transition": 155, "node_type": "S", "subcondition": 23, "parent": 722}}, {"model": "template.logicnode", "pk": 724, "fields": {"state_transition": 155, "node_type": "S", "subcondition": 11, "parent": 728}}, {"model": "template.logicnode", "pk": 725, "fields": {"state_transition": 155, "node_type": "S", "subcondition": 10, "parent": 728}}, {"model": "template.logicnode", "pk": 726, "fields": {"state_transition": 155, "node_type": "S", "subcondition": 13, "parent": 728}}, {"model": "template.logicnode", "pk": 727, "fields": {"state_transition": 155, "node_type": "S", "subcondition": 1, "parent": 728}}, {"model": "template.logicnode", "pk": 728, "fields": {"state_transition": 155, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 729, "fields": {"state_transition": 156, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 730, "fields": {"state_transition": 156, "node_type": "S", "subcondition": 1, "parent": 729}}, {"model": "template.logicnode", "pk": 731, "fields": {"state_transition": 157, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 732, "fields": {"state_transition": 157, "node_type": "S", "subcondition": 1, "parent": 731}}, {"model": "template.logicnode", "pk": 733, "fields": {"state_transition": 158, "node_type": "N", "subcondition": null, "parent": 738}}, {"model": "template.logicnode", "pk": 734, "fields": {"state_transition": 158, "node_type": "S", "subcondition": 23, "parent": 733}}, {"model": "template.logicnode", "pk": 735, "fields": {"state_transition": 158, "node_type": "S", "subcondition": 11, "parent": 738}}, {"model": "template.logicnode", "pk": 736, "fields": {"state_transition": 158, "node_type": "S", "subcondition": 10, "parent": 738}}, {"model": "template.logicnode", "pk": 737, "fields": {"state_transition": 158, "node_type": "S", "subcondition": 13, "parent": 738}}, {"model": "template.logicnode", "pk": 738, "fields": {"state_transition": 158, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 739, "fields": {"state_transition": 159, "node_type": "N", "subcondition": null, "parent": 744}}, {"model": "template.logicnode", "pk": 740, "fields": {"state_transition": 159, "node_type": "S", "subcondition": 23, "parent": 739}}, {"model": "template.logicnode", "pk": 741, "fields": {"state_transition": 159, "node_type": "S", "subcondition": 11, "parent": 744}}, {"model": "template.logicnode", "pk": 742, "fields": {"state_transition": 159, "node_type": "S", "subcondition": 10, "parent": 744}}, {"model": "template.logicnode", "pk": 743, "fields": {"state_transition": 159, "node_type": "S", "subcondition": 1, "parent": 744}}, {"model": "template.logicnode", "pk": 744, "fields": {"state_transition": 159, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 745, "fields": {"state_transition": 160, "node_type": "N", "subcondition": null, "parent": 749}}, {"model": "template.logicnode", "pk": 746, "fields": {"state_transition": 160, "node_type": "S", "subcondition": 23, "parent": 745}}, {"model": "template.logicnode", "pk": 747, "fields": {"state_transition": 160, "node_type": "S", "subcondition": 11, "parent": 749}}, {"model": "template.logicnode", "pk": 748, "fields": {"state_transition": 160, "node_type": "S", "subcondition": 10, "parent": 749}}, {"model": "template.logicnode", "pk": 749, "fields": {"state_transition": 160, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 750, "fields": {"state_transition": 161, "node_type": "N", "subcondition": null, "parent": 755}}, {"model": "template.logicnode", "pk": 751, "fields": {"state_transition": 161, "node_type": "S", "subcondition": 23, "parent": 750}}, {"model": "template.logicnode", "pk": 752, "fields": {"state_transition": 161, "node_type": "S", "subcondition": 11, "parent": 755}}, {"model": "template.logicnode", "pk": 753, "fields": {"state_transition": 161, "node_type": "S", "subcondition": 13, "parent": 755}}, {"model": "template.logicnode", "pk": 754, "fields": {"state_transition": 161, "node_type": "S", "subcondition": 1, "parent": 755}}, {"model": "template.logicnode", "pk": 755, "fields": {"state_transition": 161, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 756, "fields": {"state_transition": 162, "node_type": "N", "subcondition": null, "parent": 760}}, {"model": "template.logicnode", "pk": 757, "fields": {"state_transition": 162, "node_type": "S", "subcondition": 23, "parent": 756}}, {"model": "template.logicnode", "pk": 758, "fields": {"state_transition": 162, "node_type": "S", "subcondition": 11, "parent": 760}}, {"model": "template.logicnode", "pk": 759, "fields": {"state_transition": 162, "node_type": "S", "subcondition": 13, "parent": 760}}, {"model": "template.logicnode", "pk": 760, "fields": {"state_transition": 162, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 761, "fields": {"state_transition": 163, "node_type": "N", "subcondition": null, "parent": 765}}, {"model": "template.logicnode", "pk": 762, "fields": {"state_transition": 163, "node_type": "S", "subcondition": 23, "parent": 761}}, {"model": "template.logicnode", "pk": 763, "fields": {"state_transition": 163, "node_type": "S", "subcondition": 11, "parent": 765}}, {"model": "template.logicnode", "pk": 764, "fields": {"state_transition": 163, "node_type": "S", "subcondition": 1, "parent": 765}}, {"model": "template.logicnode", "pk": 765, "fields": {"state_transition": 163, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 766, "fields": {"state_transition": 164, "node_type": "N", "subcondition": null, "parent": 769}}, {"model": "template.logicnode", "pk": 767, "fields": {"state_transition": 164, "node_type": "S", "subcondition": 23, "parent": 766}}, {"model": "template.logicnode", "pk": 768, "fields": {"state_transition": 164, "node_type": "S", "subcondition": 11, "parent": 769}}, {"model": "template.logicnode", "pk": 769, "fields": {"state_transition": 164, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 770, "fields": {"state_transition": 165, "node_type": "N", "subcondition": null, "parent": 775}}, {"model": "template.logicnode", "pk": 771, "fields": {"state_transition": 165, "node_type": "S", "subcondition": 23, "parent": 770}}, {"model": "template.logicnode", "pk": 772, "fields": {"state_transition": 165, "node_type": "S", "subcondition": 10, "parent": 775}}, {"model": "template.logicnode", "pk": 773, "fields": {"state_transition": 165, "node_type": "S", "subcondition": 13, "parent": 775}}, {"model": "template.logicnode", "pk": 774, "fields": {"state_transition": 165, "node_type": "S", "subcondition": 1, "parent": 775}}, {"model": "template.logicnode", "pk": 775, "fields": {"state_transition": 165, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 776, "fields": {"state_transition": 166, "node_type": "N", "subcondition": null, "parent": 780}}, {"model": "template.logicnode", "pk": 777, "fields": {"state_transition": 166, "node_type": "S", "subcondition": 23, "parent": 776}}, {"model": "template.logicnode", "pk": 778, "fields": {"state_transition": 166, "node_type": "S", "subcondition": 10, "parent": 780}}, {"model": "template.logicnode", "pk": 779, "fields": {"state_transition": 166, "node_type": "S", "subcondition": 13, "parent": 780}}, {"model": "template.logicnode", "pk": 780, "fields": {"state_transition": 166, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 781, "fields": {"state_transition": 167, "node_type": "N", "subcondition": null, "parent": 785}}, {"model": "template.logicnode", "pk": 782, "fields": {"state_transition": 167, "node_type": "S", "subcondition": 23, "parent": 781}}, {"model": "template.logicnode", "pk": 783, "fields": {"state_transition": 167, "node_type": "S", "subcondition": 10, "parent": 785}}, {"model": "template.logicnode", "pk": 784, "fields": {"state_transition": 167, "node_type": "S", "subcondition": 1, "parent": 785}}, {"model": "template.logicnode", "pk": 785, "fields": {"state_transition": 167, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 786, "fields": {"state_transition": 168, "node_type": "N", "subcondition": null, "parent": 789}}, {"model": "template.logicnode", "pk": 787, "fields": {"state_transition": 168, "node_type": "S", "subcondition": 23, "parent": 786}}, {"model": "template.logicnode", "pk": 788, "fields": {"state_transition": 168, "node_type": "S", "subcondition": 10, "parent": 789}}, {"model": "template.logicnode", "pk": 789, "fields": {"state_transition": 168, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 790, "fields": {"state_transition": 169, "node_type": "N", "subcondition": null, "parent": 794}}, {"model": "template.logicnode", "pk": 791, "fields": {"state_transition": 169, "node_type": "S", "subcondition": 23, "parent": 790}}, {"model": "template.logicnode", "pk": 792, "fields": {"state_transition": 169, "node_type": "S", "subcondition": 13, "parent": 794}}, {"model": "template.logicnode", "pk": 793, "fields": {"state_transition": 169, "node_type": "S", "subcondition": 1, "parent": 794}}, {"model": "template.logicnode", "pk": 794, "fields": {"state_transition": 169, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 795, "fields": {"state_transition": 170, "node_type": "N", "subcondition": null, "parent": 798}}, {"model": "template.logicnode", "pk": 796, "fields": {"state_transition": 170, "node_type": "S", "subcondition": 23, "parent": 795}}, {"model": "template.logicnode", "pk": 797, "fields": {"state_transition": 170, "node_type": "S", "subcondition": 13, "parent": 798}}, {"model": "template.logicnode", "pk": 798, "fields": {"state_transition": 170, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 799, "fields": {"state_transition": 171, "node_type": "N", "subcondition": null, "parent": 802}}, {"model": "template.logicnode", "pk": 800, "fields": {"state_transition": 171, "node_type": "S", "subcondition": 23, "parent": 799}}, {"model": "template.logicnode", "pk": 801, "fields": {"state_transition": 171, "node_type": "S", "subcondition": 1, "parent": 802}}, {"model": "template.logicnode", "pk": 802, "fields": {"state_transition": 171, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 803, "fields": {"state_transition": 172, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 804, "fields": {"state_transition": 172, "node_type": "S", "subcondition": 23, "parent": 803}}, {"model": "template.logicnode", "pk": 805, "fields": {"state_transition": 173, "node_type": "S", "subcondition": 23, "parent": 808}}, {"model": "template.logicnode", "pk": 806, "fields": {"state_transition": 173, "node_type": "S", "subcondition": 10, "parent": 808}}, {"model": "template.logicnode", "pk": 807, "fields": {"state_transition": 173, "node_type": "S", "subcondition": 1, "parent": 808}}, {"model": "template.logicnode", "pk": 808, "fields": {"state_transition": 173, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 809, "fields": {"state_transition": 174, "node_type": "S", "subcondition": 23, "parent": 811}}, {"model": "template.logicnode", "pk": 810, "fields": {"state_transition": 174, "node_type": "S", "subcondition": 10, "parent": 811}}, {"model": "template.logicnode", "pk": 811, "fields": {"state_transition": 174, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 812, "fields": {"state_transition": 175, "node_type": "S", "subcondition": 23, "parent": 814}}, {"model": "template.logicnode", "pk": 813, "fields": {"state_transition": 175, "node_type": "S", "subcondition": 1, "parent": 814}}, {"model": "template.logicnode", "pk": 814, "fields": {"state_transition": 175, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 815, "fields": {"state_transition": 176, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 816, "fields": {"state_transition": 177, "node_type": "N", "subcondition": null, "parent": 822}}, {"model": "template.logicnode", "pk": 817, "fields": {"state_transition": 177, "node_type": "S", "subcondition": 23, "parent": 816}}, {"model": "template.logicnode", "pk": 818, "fields": {"state_transition": 177, "node_type": "S", "subcondition": 11, "parent": 822}}, {"model": "template.logicnode", "pk": 819, "fields": {"state_transition": 177, "node_type": "S", "subcondition": 10, "parent": 822}}, {"model": "template.logicnode", "pk": 820, "fields": {"state_transition": 177, "node_type": "S", "subcondition": 13, "parent": 822}}, {"model": "template.logicnode", "pk": 821, "fields": {"state_transition": 177, "node_type": "S", "subcondition": 1, "parent": 822}}, {"model": "template.logicnode", "pk": 822, "fields": {"state_transition": 177, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 823, "fields": {"state_transition": 178, "node_type": "N", "subcondition": null, "parent": 828}}, {"model": "template.logicnode", "pk": 824, "fields": {"state_transition": 178, "node_type": "S", "subcondition": 23, "parent": 823}}, {"model": "template.logicnode", "pk": 825, "fields": {"state_transition": 178, "node_type": "S", "subcondition": 11, "parent": 828}}, {"model": "template.logicnode", "pk": 826, "fields": {"state_transition": 178, "node_type": "S", "subcondition": 10, "parent": 828}}, {"model": "template.logicnode", "pk": 827, "fields": {"state_transition": 178, "node_type": "S", "subcondition": 13, "parent": 828}}, {"model": "template.logicnode", "pk": 828, "fields": {"state_transition": 178, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 829, "fields": {"state_transition": 179, "node_type": "N", "subcondition": null, "parent": 834}}, {"model": "template.logicnode", "pk": 830, "fields": {"state_transition": 179, "node_type": "S", "subcondition": 23, "parent": 829}}, {"model": "template.logicnode", "pk": 831, "fields": {"state_transition": 179, "node_type": "S", "subcondition": 11, "parent": 834}}, {"model": "template.logicnode", "pk": 832, "fields": {"state_transition": 179, "node_type": "S", "subcondition": 10, "parent": 834}}, {"model": "template.logicnode", "pk": 833, "fields": {"state_transition": 179, "node_type": "S", "subcondition": 1, "parent": 834}}, {"model": "template.logicnode", "pk": 834, "fields": {"state_transition": 179, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 835, "fields": {"state_transition": 180, "node_type": "N", "subcondition": null, "parent": 839}}, {"model": "template.logicnode", "pk": 836, "fields": {"state_transition": 180, "node_type": "S", "subcondition": 23, "parent": 835}}, {"model": "template.logicnode", "pk": 837, "fields": {"state_transition": 180, "node_type": "S", "subcondition": 11, "parent": 839}}, {"model": "template.logicnode", "pk": 838, "fields": {"state_transition": 180, "node_type": "S", "subcondition": 10, "parent": 839}}, {"model": "template.logicnode", "pk": 839, "fields": {"state_transition": 180, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 840, "fields": {"state_transition": 181, "node_type": "N", "subcondition": null, "parent": 845}}, {"model": "template.logicnode", "pk": 841, "fields": {"state_transition": 181, "node_type": "S", "subcondition": 23, "parent": 840}}, {"model": "template.logicnode", "pk": 842, "fields": {"state_transition": 181, "node_type": "S", "subcondition": 11, "parent": 845}}, {"model": "template.logicnode", "pk": 843, "fields": {"state_transition": 181, "node_type": "S", "subcondition": 13, "parent": 845}}, {"model": "template.logicnode", "pk": 844, "fields": {"state_transition": 181, "node_type": "S", "subcondition": 1, "parent": 845}}, {"model": "template.logicnode", "pk": 845, "fields": {"state_transition": 181, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 846, "fields": {"state_transition": 182, "node_type": "N", "subcondition": null, "parent": 850}}, {"model": "template.logicnode", "pk": 847, "fields": {"state_transition": 182, "node_type": "S", "subcondition": 23, "parent": 846}}, {"model": "template.logicnode", "pk": 848, "fields": {"state_transition": 182, "node_type": "S", "subcondition": 11, "parent": 850}}, {"model": "template.logicnode", "pk": 849, "fields": {"state_transition": 182, "node_type": "S", "subcondition": 13, "parent": 850}}, {"model": "template.logicnode", "pk": 850, "fields": {"state_transition": 182, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 851, "fields": {"state_transition": 183, "node_type": "N", "subcondition": null, "parent": 855}}, {"model": "template.logicnode", "pk": 852, "fields": {"state_transition": 183, "node_type": "S", "subcondition": 23, "parent": 851}}, {"model": "template.logicnode", "pk": 853, "fields": {"state_transition": 183, "node_type": "S", "subcondition": 11, "parent": 855}}, {"model": "template.logicnode", "pk": 854, "fields": {"state_transition": 183, "node_type": "S", "subcondition": 1, "parent": 855}}, {"model": "template.logicnode", "pk": 855, "fields": {"state_transition": 183, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 856, "fields": {"state_transition": 184, "node_type": "N", "subcondition": null, "parent": 859}}, {"model": "template.logicnode", "pk": 857, "fields": {"state_transition": 184, "node_type": "S", "subcondition": 23, "parent": 856}}, {"model": "template.logicnode", "pk": 858, "fields": {"state_transition": 184, "node_type": "S", "subcondition": 11, "parent": 859}}, {"model": "template.logicnode", "pk": 859, "fields": {"state_transition": 184, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 860, "fields": {"state_transition": 185, "node_type": "N", "subcondition": null, "parent": 865}}, {"model": "template.logicnode", "pk": 861, "fields": {"state_transition": 185, "node_type": "S", "subcondition": 23, "parent": 860}}, {"model": "template.logicnode", "pk": 862, "fields": {"state_transition": 185, "node_type": "S", "subcondition": 10, "parent": 865}}, {"model": "template.logicnode", "pk": 863, "fields": {"state_transition": 185, "node_type": "S", "subcondition": 13, "parent": 865}}, {"model": "template.logicnode", "pk": 864, "fields": {"state_transition": 185, "node_type": "S", "subcondition": 1, "parent": 865}}, {"model": "template.logicnode", "pk": 865, "fields": {"state_transition": 185, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 866, "fields": {"state_transition": 186, "node_type": "N", "subcondition": null, "parent": 870}}, {"model": "template.logicnode", "pk": 867, "fields": {"state_transition": 186, "node_type": "S", "subcondition": 23, "parent": 866}}, {"model": "template.logicnode", "pk": 868, "fields": {"state_transition": 186, "node_type": "S", "subcondition": 10, "parent": 870}}, {"model": "template.logicnode", "pk": 869, "fields": {"state_transition": 186, "node_type": "S", "subcondition": 13, "parent": 870}}, {"model": "template.logicnode", "pk": 870, "fields": {"state_transition": 186, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 871, "fields": {"state_transition": 187, "node_type": "N", "subcondition": null, "parent": 875}}, {"model": "template.logicnode", "pk": 872, "fields": {"state_transition": 187, "node_type": "S", "subcondition": 23, "parent": 871}}, {"model": "template.logicnode", "pk": 873, "fields": {"state_transition": 187, "node_type": "S", "subcondition": 10, "parent": 875}}, {"model": "template.logicnode", "pk": 874, "fields": {"state_transition": 187, "node_type": "S", "subcondition": 1, "parent": 875}}, {"model": "template.logicnode", "pk": 875, "fields": {"state_transition": 187, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 876, "fields": {"state_transition": 188, "node_type": "N", "subcondition": null, "parent": 879}}, {"model": "template.logicnode", "pk": 877, "fields": {"state_transition": 188, "node_type": "S", "subcondition": 23, "parent": 876}}, {"model": "template.logicnode", "pk": 878, "fields": {"state_transition": 188, "node_type": "S", "subcondition": 10, "parent": 879}}, {"model": "template.logicnode", "pk": 879, "fields": {"state_transition": 188, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 880, "fields": {"state_transition": 189, "node_type": "N", "subcondition": null, "parent": 884}}, {"model": "template.logicnode", "pk": 881, "fields": {"state_transition": 189, "node_type": "S", "subcondition": 23, "parent": 880}}, {"model": "template.logicnode", "pk": 882, "fields": {"state_transition": 189, "node_type": "S", "subcondition": 13, "parent": 884}}, {"model": "template.logicnode", "pk": 883, "fields": {"state_transition": 189, "node_type": "S", "subcondition": 1, "parent": 884}}, {"model": "template.logicnode", "pk": 884, "fields": {"state_transition": 189, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 885, "fields": {"state_transition": 190, "node_type": "N", "subcondition": null, "parent": 888}}, {"model": "template.logicnode", "pk": 886, "fields": {"state_transition": 190, "node_type": "S", "subcondition": 23, "parent": 885}}, {"model": "template.logicnode", "pk": 887, "fields": {"state_transition": 190, "node_type": "S", "subcondition": 13, "parent": 888}}, {"model": "template.logicnode", "pk": 888, "fields": {"state_transition": 190, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 889, "fields": {"state_transition": 191, "node_type": "N", "subcondition": null, "parent": 892}}, {"model": "template.logicnode", "pk": 890, "fields": {"state_transition": 191, "node_type": "S", "subcondition": 23, "parent": 889}}, {"model": "template.logicnode", "pk": 891, "fields": {"state_transition": 191, "node_type": "S", "subcondition": 1, "parent": 892}}, {"model": "template.logicnode", "pk": 892, "fields": {"state_transition": 191, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 893, "fields": {"state_transition": 192, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 894, "fields": {"state_transition": 192, "node_type": "S", "subcondition": 23, "parent": 893}}, {"model": "template.logicnode", "pk": 895, "fields": {"state_transition": 193, "node_type": "S", "subcondition": 23, "parent": 898}}, {"model": "template.logicnode", "pk": 896, "fields": {"state_transition": 193, "node_type": "S", "subcondition": 10, "parent": 898}}, {"model": "template.logicnode", "pk": 897, "fields": {"state_transition": 193, "node_type": "S", "subcondition": 1, "parent": 898}}, {"model": "template.logicnode", "pk": 898, "fields": {"state_transition": 193, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 899, "fields": {"state_transition": 194, "node_type": "S", "subcondition": 23, "parent": 901}}, {"model": "template.logicnode", "pk": 900, "fields": {"state_transition": 194, "node_type": "S", "subcondition": 10, "parent": 901}}, {"model": "template.logicnode", "pk": 901, "fields": {"state_transition": 194, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 902, "fields": {"state_transition": 195, "node_type": "S", "subcondition": 23, "parent": 904}}, {"model": "template.logicnode", "pk": 903, "fields": {"state_transition": 195, "node_type": "S", "subcondition": 1, "parent": 904}}, {"model": "template.logicnode", "pk": 904, "fields": {"state_transition": 195, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 905, "fields": {"state_transition": 196, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 906, "fields": {"state_transition": 197, "node_type": "N", "subcondition": null, "parent": 912}}, {"model": "template.logicnode", "pk": 907, "fields": {"state_transition": 197, "node_type": "S", "subcondition": 23, "parent": 906}}, {"model": "template.logicnode", "pk": 908, "fields": {"state_transition": 197, "node_type": "S", "subcondition": 11, "parent": 912}}, {"model": "template.logicnode", "pk": 909, "fields": {"state_transition": 197, "node_type": "S", "subcondition": 10, "parent": 912}}, {"model": "template.logicnode", "pk": 910, "fields": {"state_transition": 197, "node_type": "S", "subcondition": 13, "parent": 912}}, {"model": "template.logicnode", "pk": 911, "fields": {"state_transition": 197, "node_type": "S", "subcondition": 1, "parent": 912}}, {"model": "template.logicnode", "pk": 912, "fields": {"state_transition": 197, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 913, "fields": {"state_transition": 198, "node_type": "N", "subcondition": null, "parent": 918}}, {"model": "template.logicnode", "pk": 914, "fields": {"state_transition": 198, "node_type": "S", "subcondition": 23, "parent": 913}}, {"model": "template.logicnode", "pk": 915, "fields": {"state_transition": 198, "node_type": "S", "subcondition": 11, "parent": 918}}, {"model": "template.logicnode", "pk": 916, "fields": {"state_transition": 198, "node_type": "S", "subcondition": 10, "parent": 918}}, {"model": "template.logicnode", "pk": 917, "fields": {"state_transition": 198, "node_type": "S", "subcondition": 13, "parent": 918}}, {"model": "template.logicnode", "pk": 918, "fields": {"state_transition": 198, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 919, "fields": {"state_transition": 199, "node_type": "N", "subcondition": null, "parent": 924}}, {"model": "template.logicnode", "pk": 920, "fields": {"state_transition": 199, "node_type": "S", "subcondition": 23, "parent": 919}}, {"model": "template.logicnode", "pk": 921, "fields": {"state_transition": 199, "node_type": "S", "subcondition": 11, "parent": 924}}, {"model": "template.logicnode", "pk": 922, "fields": {"state_transition": 199, "node_type": "S", "subcondition": 10, "parent": 924}}, {"model": "template.logicnode", "pk": 923, "fields": {"state_transition": 199, "node_type": "S", "subcondition": 1, "parent": 924}}, {"model": "template.logicnode", "pk": 924, "fields": {"state_transition": 199, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 925, "fields": {"state_transition": 200, "node_type": "N", "subcondition": null, "parent": 929}}, {"model": "template.logicnode", "pk": 926, "fields": {"state_transition": 200, "node_type": "S", "subcondition": 23, "parent": 925}}, {"model": "template.logicnode", "pk": 927, "fields": {"state_transition": 200, "node_type": "S", "subcondition": 11, "parent": 929}}, {"model": "template.logicnode", "pk": 928, "fields": {"state_transition": 200, "node_type": "S", "subcondition": 10, "parent": 929}}, {"model": "template.logicnode", "pk": 929, "fields": {"state_transition": 200, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 930, "fields": {"state_transition": 201, "node_type": "N", "subcondition": null, "parent": 935}}, {"model": "template.logicnode", "pk": 931, "fields": {"state_transition": 201, "node_type": "S", "subcondition": 23, "parent": 930}}, {"model": "template.logicnode", "pk": 932, "fields": {"state_transition": 201, "node_type": "S", "subcondition": 11, "parent": 935}}, {"model": "template.logicnode", "pk": 933, "fields": {"state_transition": 201, "node_type": "S", "subcondition": 13, "parent": 935}}, {"model": "template.logicnode", "pk": 934, "fields": {"state_transition": 201, "node_type": "S", "subcondition": 1, "parent": 935}}, {"model": "template.logicnode", "pk": 935, "fields": {"state_transition": 201, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 936, "fields": {"state_transition": 202, "node_type": "N", "subcondition": null, "parent": 940}}, {"model": "template.logicnode", "pk": 937, "fields": {"state_transition": 202, "node_type": "S", "subcondition": 23, "parent": 936}}, {"model": "template.logicnode", "pk": 938, "fields": {"state_transition": 202, "node_type": "S", "subcondition": 11, "parent": 940}}, {"model": "template.logicnode", "pk": 939, "fields": {"state_transition": 202, "node_type": "S", "subcondition": 13, "parent": 940}}, {"model": "template.logicnode", "pk": 940, "fields": {"state_transition": 202, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 941, "fields": {"state_transition": 203, "node_type": "N", "subcondition": null, "parent": 945}}, {"model": "template.logicnode", "pk": 942, "fields": {"state_transition": 203, "node_type": "S", "subcondition": 23, "parent": 941}}, {"model": "template.logicnode", "pk": 943, "fields": {"state_transition": 203, "node_type": "S", "subcondition": 11, "parent": 945}}, {"model": "template.logicnode", "pk": 944, "fields": {"state_transition": 203, "node_type": "S", "subcondition": 1, "parent": 945}}, {"model": "template.logicnode", "pk": 945, "fields": {"state_transition": 203, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 946, "fields": {"state_transition": 204, "node_type": "N", "subcondition": null, "parent": 949}}, {"model": "template.logicnode", "pk": 947, "fields": {"state_transition": 204, "node_type": "S", "subcondition": 23, "parent": 946}}, {"model": "template.logicnode", "pk": 948, "fields": {"state_transition": 204, "node_type": "S", "subcondition": 11, "parent": 949}}, {"model": "template.logicnode", "pk": 949, "fields": {"state_transition": 204, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 950, "fields": {"state_transition": 205, "node_type": "N", "subcondition": null, "parent": 955}}, {"model": "template.logicnode", "pk": 951, "fields": {"state_transition": 205, "node_type": "S", "subcondition": 23, "parent": 950}}, {"model": "template.logicnode", "pk": 952, "fields": {"state_transition": 205, "node_type": "S", "subcondition": 10, "parent": 955}}, {"model": "template.logicnode", "pk": 953, "fields": {"state_transition": 205, "node_type": "S", "subcondition": 13, "parent": 955}}, {"model": "template.logicnode", "pk": 954, "fields": {"state_transition": 205, "node_type": "S", "subcondition": 1, "parent": 955}}, {"model": "template.logicnode", "pk": 955, "fields": {"state_transition": 205, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 956, "fields": {"state_transition": 206, "node_type": "N", "subcondition": null, "parent": 960}}, {"model": "template.logicnode", "pk": 957, "fields": {"state_transition": 206, "node_type": "S", "subcondition": 23, "parent": 956}}, {"model": "template.logicnode", "pk": 958, "fields": {"state_transition": 206, "node_type": "S", "subcondition": 10, "parent": 960}}, {"model": "template.logicnode", "pk": 959, "fields": {"state_transition": 206, "node_type": "S", "subcondition": 13, "parent": 960}}, {"model": "template.logicnode", "pk": 960, "fields": {"state_transition": 206, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 961, "fields": {"state_transition": 207, "node_type": "N", "subcondition": null, "parent": 965}}, {"model": "template.logicnode", "pk": 962, "fields": {"state_transition": 207, "node_type": "S", "subcondition": 23, "parent": 961}}, {"model": "template.logicnode", "pk": 963, "fields": {"state_transition": 207, "node_type": "S", "subcondition": 10, "parent": 965}}, {"model": "template.logicnode", "pk": 964, "fields": {"state_transition": 207, "node_type": "S", "subcondition": 1, "parent": 965}}, {"model": "template.logicnode", "pk": 965, "fields": {"state_transition": 207, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 966, "fields": {"state_transition": 208, "node_type": "N", "subcondition": null, "parent": 969}}, {"model": "template.logicnode", "pk": 967, "fields": {"state_transition": 208, "node_type": "S", "subcondition": 23, "parent": 966}}, {"model": "template.logicnode", "pk": 968, "fields": {"state_transition": 208, "node_type": "S", "subcondition": 10, "parent": 969}}, {"model": "template.logicnode", "pk": 969, "fields": {"state_transition": 208, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 970, "fields": {"state_transition": 209, "node_type": "N", "subcondition": null, "parent": 974}}, {"model": "template.logicnode", "pk": 971, "fields": {"state_transition": 209, "node_type": "S", "subcondition": 23, "parent": 970}}, {"model": "template.logicnode", "pk": 972, "fields": {"state_transition": 209, "node_type": "S", "subcondition": 13, "parent": 974}}, {"model": "template.logicnode", "pk": 973, "fields": {"state_transition": 209, "node_type": "S", "subcondition": 1, "parent": 974}}, {"model": "template.logicnode", "pk": 974, "fields": {"state_transition": 209, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 975, "fields": {"state_transition": 210, "node_type": "N", "subcondition": null, "parent": 978}}, {"model": "template.logicnode", "pk": 976, "fields": {"state_transition": 210, "node_type": "S", "subcondition": 23, "parent": 975}}, {"model": "template.logicnode", "pk": 977, "fields": {"state_transition": 210, "node_type": "S", "subcondition": 13, "parent": 978}}, {"model": "template.logicnode", "pk": 978, "fields": {"state_transition": 210, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 979, "fields": {"state_transition": 211, "node_type": "N", "subcondition": null, "parent": 982}}, {"model": "template.logicnode", "pk": 980, "fields": {"state_transition": 211, "node_type": "S", "subcondition": 23, "parent": 979}}, {"model": "template.logicnode", "pk": 981, "fields": {"state_transition": 211, "node_type": "S", "subcondition": 1, "parent": 982}}, {"model": "template.logicnode", "pk": 982, "fields": {"state_transition": 211, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 983, "fields": {"state_transition": 212, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 984, "fields": {"state_transition": 212, "node_type": "S", "subcondition": 23, "parent": 983}}, {"model": "template.logicnode", "pk": 985, "fields": {"state_transition": 213, "node_type": "S", "subcondition": 23, "parent": 988}}, {"model": "template.logicnode", "pk": 986, "fields": {"state_transition": 213, "node_type": "S", "subcondition": 10, "parent": 988}}, {"model": "template.logicnode", "pk": 987, "fields": {"state_transition": 213, "node_type": "S", "subcondition": 1, "parent": 988}}, {"model": "template.logicnode", "pk": 988, "fields": {"state_transition": 213, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 989, "fields": {"state_transition": 214, "node_type": "S", "subcondition": 23, "parent": 991}}, {"model": "template.logicnode", "pk": 990, "fields": {"state_transition": 214, "node_type": "S", "subcondition": 10, "parent": 991}}, {"model": "template.logicnode", "pk": 991, "fields": {"state_transition": 214, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 992, "fields": {"state_transition": 215, "node_type": "S", "subcondition": 23, "parent": 994}}, {"model": "template.logicnode", "pk": 993, "fields": {"state_transition": 215, "node_type": "S", "subcondition": 1, "parent": 994}}, {"model": "template.logicnode", "pk": 994, "fields": {"state_transition": 215, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 995, "fields": {"state_transition": 216, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 996, "fields": {"state_transition": 217, "node_type": "N", "subcondition": null, "parent": 1002}}, {"model": "template.logicnode", "pk": 997, "fields": {"state_transition": 217, "node_type": "S", "subcondition": 23, "parent": 996}}, {"model": "template.logicnode", "pk": 998, "fields": {"state_transition": 217, "node_type": "S", "subcondition": 11, "parent": 1002}}, {"model": "template.logicnode", "pk": 999, "fields": {"state_transition": 217, "node_type": "S", "subcondition": 10, "parent": 1002}}, {"model": "template.logicnode", "pk": 1000, "fields": {"state_transition": 217, "node_type": "S", "subcondition": 13, "parent": 1002}}, {"model": "template.logicnode", "pk": 1001, "fields": {"state_transition": 217, "node_type": "S", "subcondition": 1, "parent": 1002}}, {"model": "template.logicnode", "pk": 1002, "fields": {"state_transition": 217, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1003, "fields": {"state_transition": 218, "node_type": "N", "subcondition": null, "parent": 1008}}, {"model": "template.logicnode", "pk": 1004, "fields": {"state_transition": 218, "node_type": "S", "subcondition": 23, "parent": 1003}}, {"model": "template.logicnode", "pk": 1005, "fields": {"state_transition": 218, "node_type": "S", "subcondition": 11, "parent": 1008}}, {"model": "template.logicnode", "pk": 1006, "fields": {"state_transition": 218, "node_type": "S", "subcondition": 10, "parent": 1008}}, {"model": "template.logicnode", "pk": 1007, "fields": {"state_transition": 218, "node_type": "S", "subcondition": 13, "parent": 1008}}, {"model": "template.logicnode", "pk": 1008, "fields": {"state_transition": 218, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1009, "fields": {"state_transition": 219, "node_type": "N", "subcondition": null, "parent": 1014}}, {"model": "template.logicnode", "pk": 1010, "fields": {"state_transition": 219, "node_type": "S", "subcondition": 23, "parent": 1009}}, {"model": "template.logicnode", "pk": 1011, "fields": {"state_transition": 219, "node_type": "S", "subcondition": 11, "parent": 1014}}, {"model": "template.logicnode", "pk": 1012, "fields": {"state_transition": 219, "node_type": "S", "subcondition": 10, "parent": 1014}}, {"model": "template.logicnode", "pk": 1013, "fields": {"state_transition": 219, "node_type": "S", "subcondition": 1, "parent": 1014}}, {"model": "template.logicnode", "pk": 1014, "fields": {"state_transition": 219, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1015, "fields": {"state_transition": 220, "node_type": "N", "subcondition": null, "parent": 1019}}, {"model": "template.logicnode", "pk": 1016, "fields": {"state_transition": 220, "node_type": "S", "subcondition": 23, "parent": 1015}}, {"model": "template.logicnode", "pk": 1017, "fields": {"state_transition": 220, "node_type": "S", "subcondition": 11, "parent": 1019}}, {"model": "template.logicnode", "pk": 1018, "fields": {"state_transition": 220, "node_type": "S", "subcondition": 10, "parent": 1019}}, {"model": "template.logicnode", "pk": 1019, "fields": {"state_transition": 220, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1020, "fields": {"state_transition": 221, "node_type": "N", "subcondition": null, "parent": 1025}}, {"model": "template.logicnode", "pk": 1021, "fields": {"state_transition": 221, "node_type": "S", "subcondition": 23, "parent": 1020}}, {"model": "template.logicnode", "pk": 1022, "fields": {"state_transition": 221, "node_type": "S", "subcondition": 11, "parent": 1025}}, {"model": "template.logicnode", "pk": 1023, "fields": {"state_transition": 221, "node_type": "S", "subcondition": 13, "parent": 1025}}, {"model": "template.logicnode", "pk": 1024, "fields": {"state_transition": 221, "node_type": "S", "subcondition": 1, "parent": 1025}}, {"model": "template.logicnode", "pk": 1025, "fields": {"state_transition": 221, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1026, "fields": {"state_transition": 222, "node_type": "N", "subcondition": null, "parent": 1030}}, {"model": "template.logicnode", "pk": 1027, "fields": {"state_transition": 222, "node_type": "S", "subcondition": 23, "parent": 1026}}, {"model": "template.logicnode", "pk": 1028, "fields": {"state_transition": 222, "node_type": "S", "subcondition": 11, "parent": 1030}}, {"model": "template.logicnode", "pk": 1029, "fields": {"state_transition": 222, "node_type": "S", "subcondition": 13, "parent": 1030}}, {"model": "template.logicnode", "pk": 1030, "fields": {"state_transition": 222, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1031, "fields": {"state_transition": 223, "node_type": "N", "subcondition": null, "parent": 1035}}, {"model": "template.logicnode", "pk": 1032, "fields": {"state_transition": 223, "node_type": "S", "subcondition": 23, "parent": 1031}}, {"model": "template.logicnode", "pk": 1033, "fields": {"state_transition": 223, "node_type": "S", "subcondition": 11, "parent": 1035}}, {"model": "template.logicnode", "pk": 1034, "fields": {"state_transition": 223, "node_type": "S", "subcondition": 1, "parent": 1035}}, {"model": "template.logicnode", "pk": 1035, "fields": {"state_transition": 223, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1036, "fields": {"state_transition": 224, "node_type": "N", "subcondition": null, "parent": 1039}}, {"model": "template.logicnode", "pk": 1037, "fields": {"state_transition": 224, "node_type": "S", "subcondition": 23, "parent": 1036}}, {"model": "template.logicnode", "pk": 1038, "fields": {"state_transition": 224, "node_type": "S", "subcondition": 11, "parent": 1039}}, {"model": "template.logicnode", "pk": 1039, "fields": {"state_transition": 224, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1040, "fields": {"state_transition": 225, "node_type": "N", "subcondition": null, "parent": 1045}}, {"model": "template.logicnode", "pk": 1041, "fields": {"state_transition": 225, "node_type": "S", "subcondition": 23, "parent": 1040}}, {"model": "template.logicnode", "pk": 1042, "fields": {"state_transition": 225, "node_type": "S", "subcondition": 10, "parent": 1045}}, {"model": "template.logicnode", "pk": 1043, "fields": {"state_transition": 225, "node_type": "S", "subcondition": 13, "parent": 1045}}, {"model": "template.logicnode", "pk": 1044, "fields": {"state_transition": 225, "node_type": "S", "subcondition": 1, "parent": 1045}}, {"model": "template.logicnode", "pk": 1045, "fields": {"state_transition": 225, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1046, "fields": {"state_transition": 226, "node_type": "N", "subcondition": null, "parent": 1050}}, {"model": "template.logicnode", "pk": 1047, "fields": {"state_transition": 226, "node_type": "S", "subcondition": 23, "parent": 1046}}, {"model": "template.logicnode", "pk": 1048, "fields": {"state_transition": 226, "node_type": "S", "subcondition": 10, "parent": 1050}}, {"model": "template.logicnode", "pk": 1049, "fields": {"state_transition": 226, "node_type": "S", "subcondition": 13, "parent": 1050}}, {"model": "template.logicnode", "pk": 1050, "fields": {"state_transition": 226, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1051, "fields": {"state_transition": 227, "node_type": "N", "subcondition": null, "parent": 1055}}, {"model": "template.logicnode", "pk": 1052, "fields": {"state_transition": 227, "node_type": "S", "subcondition": 23, "parent": 1051}}, {"model": "template.logicnode", "pk": 1053, "fields": {"state_transition": 227, "node_type": "S", "subcondition": 10, "parent": 1055}}, {"model": "template.logicnode", "pk": 1054, "fields": {"state_transition": 227, "node_type": "S", "subcondition": 1, "parent": 1055}}, {"model": "template.logicnode", "pk": 1055, "fields": {"state_transition": 227, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1056, "fields": {"state_transition": 228, "node_type": "N", "subcondition": null, "parent": 1059}}, {"model": "template.logicnode", "pk": 1057, "fields": {"state_transition": 228, "node_type": "S", "subcondition": 23, "parent": 1056}}, {"model": "template.logicnode", "pk": 1058, "fields": {"state_transition": 228, "node_type": "S", "subcondition": 10, "parent": 1059}}, {"model": "template.logicnode", "pk": 1059, "fields": {"state_transition": 228, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1060, "fields": {"state_transition": 229, "node_type": "N", "subcondition": null, "parent": 1064}}, {"model": "template.logicnode", "pk": 1061, "fields": {"state_transition": 229, "node_type": "S", "subcondition": 23, "parent": 1060}}, {"model": "template.logicnode", "pk": 1062, "fields": {"state_transition": 229, "node_type": "S", "subcondition": 13, "parent": 1064}}, {"model": "template.logicnode", "pk": 1063, "fields": {"state_transition": 229, "node_type": "S", "subcondition": 1, "parent": 1064}}, {"model": "template.logicnode", "pk": 1064, "fields": {"state_transition": 229, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1065, "fields": {"state_transition": 230, "node_type": "N", "subcondition": null, "parent": 1068}}, {"model": "template.logicnode", "pk": 1066, "fields": {"state_transition": 230, "node_type": "S", "subcondition": 23, "parent": 1065}}, {"model": "template.logicnode", "pk": 1067, "fields": {"state_transition": 230, "node_type": "S", "subcondition": 13, "parent": 1068}}, {"model": "template.logicnode", "pk": 1068, "fields": {"state_transition": 230, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1069, "fields": {"state_transition": 231, "node_type": "N", "subcondition": null, "parent": 1072}}, {"model": "template.logicnode", "pk": 1070, "fields": {"state_transition": 231, "node_type": "S", "subcondition": 23, "parent": 1069}}, {"model": "template.logicnode", "pk": 1071, "fields": {"state_transition": 231, "node_type": "S", "subcondition": 1, "parent": 1072}}, {"model": "template.logicnode", "pk": 1072, "fields": {"state_transition": 231, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1073, "fields": {"state_transition": 232, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1074, "fields": {"state_transition": 232, "node_type": "S", "subcondition": 23, "parent": 1073}}, {"model": "template.logicnode", "pk": 1075, "fields": {"state_transition": 233, "node_type": "S", "subcondition": 23, "parent": 1078}}, {"model": "template.logicnode", "pk": 1076, "fields": {"state_transition": 233, "node_type": "S", "subcondition": 10, "parent": 1078}}, {"model": "template.logicnode", "pk": 1077, "fields": {"state_transition": 233, "node_type": "S", "subcondition": 1, "parent": 1078}}, {"model": "template.logicnode", "pk": 1078, "fields": {"state_transition": 233, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1079, "fields": {"state_transition": 234, "node_type": "S", "subcondition": 23, "parent": 1081}}, {"model": "template.logicnode", "pk": 1080, "fields": {"state_transition": 234, "node_type": "S", "subcondition": 10, "parent": 1081}}, {"model": "template.logicnode", "pk": 1081, "fields": {"state_transition": 234, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1082, "fields": {"state_transition": 235, "node_type": "S", "subcondition": 23, "parent": 1084}}, {"model": "template.logicnode", "pk": 1083, "fields": {"state_transition": 235, "node_type": "S", "subcondition": 1, "parent": 1084}}, {"model": "template.logicnode", "pk": 1084, "fields": {"state_transition": 235, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1085, "fields": {"state_transition": 236, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1086, "fields": {"state_transition": 237, "node_type": "N", "subcondition": null, "parent": 1092}}, {"model": "template.logicnode", "pk": 1087, "fields": {"state_transition": 237, "node_type": "S", "subcondition": 23, "parent": 1086}}, {"model": "template.logicnode", "pk": 1088, "fields": {"state_transition": 237, "node_type": "S", "subcondition": 11, "parent": 1092}}, {"model": "template.logicnode", "pk": 1089, "fields": {"state_transition": 237, "node_type": "S", "subcondition": 10, "parent": 1092}}, {"model": "template.logicnode", "pk": 1090, "fields": {"state_transition": 237, "node_type": "S", "subcondition": 13, "parent": 1092}}, {"model": "template.logicnode", "pk": 1091, "fields": {"state_transition": 237, "node_type": "S", "subcondition": 1, "parent": 1092}}, {"model": "template.logicnode", "pk": 1092, "fields": {"state_transition": 237, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1093, "fields": {"state_transition": 238, "node_type": "N", "subcondition": null, "parent": 1098}}, {"model": "template.logicnode", "pk": 1094, "fields": {"state_transition": 238, "node_type": "S", "subcondition": 23, "parent": 1093}}, {"model": "template.logicnode", "pk": 1095, "fields": {"state_transition": 238, "node_type": "S", "subcondition": 11, "parent": 1098}}, {"model": "template.logicnode", "pk": 1096, "fields": {"state_transition": 238, "node_type": "S", "subcondition": 10, "parent": 1098}}, {"model": "template.logicnode", "pk": 1097, "fields": {"state_transition": 238, "node_type": "S", "subcondition": 13, "parent": 1098}}, {"model": "template.logicnode", "pk": 1098, "fields": {"state_transition": 238, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1099, "fields": {"state_transition": 239, "node_type": "N", "subcondition": null, "parent": 1104}}, {"model": "template.logicnode", "pk": 1100, "fields": {"state_transition": 239, "node_type": "S", "subcondition": 23, "parent": 1099}}, {"model": "template.logicnode", "pk": 1101, "fields": {"state_transition": 239, "node_type": "S", "subcondition": 11, "parent": 1104}}, {"model": "template.logicnode", "pk": 1102, "fields": {"state_transition": 239, "node_type": "S", "subcondition": 10, "parent": 1104}}, {"model": "template.logicnode", "pk": 1103, "fields": {"state_transition": 239, "node_type": "S", "subcondition": 1, "parent": 1104}}, {"model": "template.logicnode", "pk": 1104, "fields": {"state_transition": 239, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1105, "fields": {"state_transition": 240, "node_type": "N", "subcondition": null, "parent": 1109}}, {"model": "template.logicnode", "pk": 1106, "fields": {"state_transition": 240, "node_type": "S", "subcondition": 23, "parent": 1105}}, {"model": "template.logicnode", "pk": 1107, "fields": {"state_transition": 240, "node_type": "S", "subcondition": 11, "parent": 1109}}, {"model": "template.logicnode", "pk": 1108, "fields": {"state_transition": 240, "node_type": "S", "subcondition": 10, "parent": 1109}}, {"model": "template.logicnode", "pk": 1109, "fields": {"state_transition": 240, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1110, "fields": {"state_transition": 241, "node_type": "N", "subcondition": null, "parent": 1115}}, {"model": "template.logicnode", "pk": 1111, "fields": {"state_transition": 241, "node_type": "S", "subcondition": 23, "parent": 1110}}, {"model": "template.logicnode", "pk": 1112, "fields": {"state_transition": 241, "node_type": "S", "subcondition": 11, "parent": 1115}}, {"model": "template.logicnode", "pk": 1113, "fields": {"state_transition": 241, "node_type": "S", "subcondition": 13, "parent": 1115}}, {"model": "template.logicnode", "pk": 1114, "fields": {"state_transition": 241, "node_type": "S", "subcondition": 1, "parent": 1115}}, {"model": "template.logicnode", "pk": 1115, "fields": {"state_transition": 241, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1116, "fields": {"state_transition": 242, "node_type": "N", "subcondition": null, "parent": 1120}}, {"model": "template.logicnode", "pk": 1117, "fields": {"state_transition": 242, "node_type": "S", "subcondition": 23, "parent": 1116}}, {"model": "template.logicnode", "pk": 1118, "fields": {"state_transition": 242, "node_type": "S", "subcondition": 11, "parent": 1120}}, {"model": "template.logicnode", "pk": 1119, "fields": {"state_transition": 242, "node_type": "S", "subcondition": 13, "parent": 1120}}, {"model": "template.logicnode", "pk": 1120, "fields": {"state_transition": 242, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1121, "fields": {"state_transition": 243, "node_type": "N", "subcondition": null, "parent": 1125}}, {"model": "template.logicnode", "pk": 1122, "fields": {"state_transition": 243, "node_type": "S", "subcondition": 23, "parent": 1121}}, {"model": "template.logicnode", "pk": 1123, "fields": {"state_transition": 243, "node_type": "S", "subcondition": 11, "parent": 1125}}, {"model": "template.logicnode", "pk": 1124, "fields": {"state_transition": 243, "node_type": "S", "subcondition": 1, "parent": 1125}}, {"model": "template.logicnode", "pk": 1125, "fields": {"state_transition": 243, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1126, "fields": {"state_transition": 244, "node_type": "N", "subcondition": null, "parent": 1129}}, {"model": "template.logicnode", "pk": 1127, "fields": {"state_transition": 244, "node_type": "S", "subcondition": 23, "parent": 1126}}, {"model": "template.logicnode", "pk": 1128, "fields": {"state_transition": 244, "node_type": "S", "subcondition": 11, "parent": 1129}}, {"model": "template.logicnode", "pk": 1129, "fields": {"state_transition": 244, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1130, "fields": {"state_transition": 245, "node_type": "N", "subcondition": null, "parent": 1135}}, {"model": "template.logicnode", "pk": 1131, "fields": {"state_transition": 245, "node_type": "S", "subcondition": 23, "parent": 1130}}, {"model": "template.logicnode", "pk": 1132, "fields": {"state_transition": 245, "node_type": "S", "subcondition": 10, "parent": 1135}}, {"model": "template.logicnode", "pk": 1133, "fields": {"state_transition": 245, "node_type": "S", "subcondition": 13, "parent": 1135}}, {"model": "template.logicnode", "pk": 1134, "fields": {"state_transition": 245, "node_type": "S", "subcondition": 1, "parent": 1135}}, {"model": "template.logicnode", "pk": 1135, "fields": {"state_transition": 245, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1136, "fields": {"state_transition": 246, "node_type": "N", "subcondition": null, "parent": 1140}}, {"model": "template.logicnode", "pk": 1137, "fields": {"state_transition": 246, "node_type": "S", "subcondition": 23, "parent": 1136}}, {"model": "template.logicnode", "pk": 1138, "fields": {"state_transition": 246, "node_type": "S", "subcondition": 10, "parent": 1140}}, {"model": "template.logicnode", "pk": 1139, "fields": {"state_transition": 246, "node_type": "S", "subcondition": 13, "parent": 1140}}, {"model": "template.logicnode", "pk": 1140, "fields": {"state_transition": 246, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1141, "fields": {"state_transition": 247, "node_type": "N", "subcondition": null, "parent": 1145}}, {"model": "template.logicnode", "pk": 1142, "fields": {"state_transition": 247, "node_type": "S", "subcondition": 23, "parent": 1141}}, {"model": "template.logicnode", "pk": 1143, "fields": {"state_transition": 247, "node_type": "S", "subcondition": 10, "parent": 1145}}, {"model": "template.logicnode", "pk": 1144, "fields": {"state_transition": 247, "node_type": "S", "subcondition": 1, "parent": 1145}}, {"model": "template.logicnode", "pk": 1145, "fields": {"state_transition": 247, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1146, "fields": {"state_transition": 248, "node_type": "N", "subcondition": null, "parent": 1149}}, {"model": "template.logicnode", "pk": 1147, "fields": {"state_transition": 248, "node_type": "S", "subcondition": 23, "parent": 1146}}, {"model": "template.logicnode", "pk": 1148, "fields": {"state_transition": 248, "node_type": "S", "subcondition": 10, "parent": 1149}}, {"model": "template.logicnode", "pk": 1149, "fields": {"state_transition": 248, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1150, "fields": {"state_transition": 249, "node_type": "N", "subcondition": null, "parent": 1154}}, {"model": "template.logicnode", "pk": 1151, "fields": {"state_transition": 249, "node_type": "S", "subcondition": 23, "parent": 1150}}, {"model": "template.logicnode", "pk": 1152, "fields": {"state_transition": 249, "node_type": "S", "subcondition": 13, "parent": 1154}}, {"model": "template.logicnode", "pk": 1153, "fields": {"state_transition": 249, "node_type": "S", "subcondition": 1, "parent": 1154}}, {"model": "template.logicnode", "pk": 1154, "fields": {"state_transition": 249, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1155, "fields": {"state_transition": 250, "node_type": "N", "subcondition": null, "parent": 1158}}, {"model": "template.logicnode", "pk": 1156, "fields": {"state_transition": 250, "node_type": "S", "subcondition": 23, "parent": 1155}}, {"model": "template.logicnode", "pk": 1157, "fields": {"state_transition": 250, "node_type": "S", "subcondition": 13, "parent": 1158}}, {"model": "template.logicnode", "pk": 1158, "fields": {"state_transition": 250, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1159, "fields": {"state_transition": 251, "node_type": "N", "subcondition": null, "parent": 1162}}, {"model": "template.logicnode", "pk": 1160, "fields": {"state_transition": 251, "node_type": "S", "subcondition": 23, "parent": 1159}}, {"model": "template.logicnode", "pk": 1161, "fields": {"state_transition": 251, "node_type": "S", "subcondition": 1, "parent": 1162}}, {"model": "template.logicnode", "pk": 1162, "fields": {"state_transition": 251, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1163, "fields": {"state_transition": 252, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1164, "fields": {"state_transition": 252, "node_type": "S", "subcondition": 23, "parent": 1163}}, {"model": "template.logicnode", "pk": 1165, "fields": {"state_transition": 253, "node_type": "S", "subcondition": 23, "parent": 1168}}, {"model": "template.logicnode", "pk": 1166, "fields": {"state_transition": 253, "node_type": "S", "subcondition": 10, "parent": 1168}}, {"model": "template.logicnode", "pk": 1167, "fields": {"state_transition": 253, "node_type": "S", "subcondition": 1, "parent": 1168}}, {"model": "template.logicnode", "pk": 1168, "fields": {"state_transition": 253, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1169, "fields": {"state_transition": 254, "node_type": "S", "subcondition": 23, "parent": 1171}}, {"model": "template.logicnode", "pk": 1170, "fields": {"state_transition": 254, "node_type": "S", "subcondition": 10, "parent": 1171}}, {"model": "template.logicnode", "pk": 1171, "fields": {"state_transition": 254, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1172, "fields": {"state_transition": 255, "node_type": "S", "subcondition": 23, "parent": 1174}}, {"model": "template.logicnode", "pk": 1173, "fields": {"state_transition": 255, "node_type": "S", "subcondition": 1, "parent": 1174}}, {"model": "template.logicnode", "pk": 1174, "fields": {"state_transition": 255, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1175, "fields": {"state_transition": 256, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1176, "fields": {"state_transition": 257, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1177, "fields": {"state_transition": 258, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1178, "fields": {"state_transition": 259, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1179, "fields": {"state_transition": 260, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1180, "fields": {"state_transition": 261, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1181, "fields": {"state_transition": 262, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1182, "fields": {"state_transition": 263, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1183, "fields": {"state_transition": 264, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1184, "fields": {"state_transition": 265, "node_type": "N", "subcondition": null, "parent": 1188}}, {"model": "template.logicnode", "pk": 1185, "fields": {"state_transition": 265, "node_type": "S", "subcondition": 23, "parent": 1184}}, {"model": "template.logicnode", "pk": 1186, "fields": {"state_transition": 265, "node_type": "S", "subcondition": 11, "parent": 1188}}, {"model": "template.logicnode", "pk": 1187, "fields": {"state_transition": 265, "node_type": "S", "subcondition": 17, "parent": 1188}}, {"model": "template.logicnode", "pk": 1188, "fields": {"state_transition": 265, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1189, "fields": {"state_transition": 266, "node_type": "N", "subcondition": null, "parent": 1192}}, {"model": "template.logicnode", "pk": 1190, "fields": {"state_transition": 266, "node_type": "S", "subcondition": 23, "parent": 1189}}, {"model": "template.logicnode", "pk": 1191, "fields": {"state_transition": 266, "node_type": "S", "subcondition": 11, "parent": 1192}}, {"model": "template.logicnode", "pk": 1192, "fields": {"state_transition": 266, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1193, "fields": {"state_transition": 267, "node_type": "N", "subcondition": null, "parent": 1196}}, {"model": "template.logicnode", "pk": 1194, "fields": {"state_transition": 267, "node_type": "S", "subcondition": 23, "parent": 1193}}, {"model": "template.logicnode", "pk": 1195, "fields": {"state_transition": 267, "node_type": "S", "subcondition": 17, "parent": 1196}}, {"model": "template.logicnode", "pk": 1196, "fields": {"state_transition": 267, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1197, "fields": {"state_transition": 268, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1198, "fields": {"state_transition": 268, "node_type": "S", "subcondition": 23, "parent": 1197}}, {"model": "template.logicnode", "pk": 1199, "fields": {"state_transition": 269, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1200, "fields": {"state_transition": 270, "node_type": "N", "subcondition": null, "parent": 1204}}, {"model": "template.logicnode", "pk": 1201, "fields": {"state_transition": 270, "node_type": "S", "subcondition": 23, "parent": 1200}}, {"model": "template.logicnode", "pk": 1202, "fields": {"state_transition": 270, "node_type": "S", "subcondition": 11, "parent": 1204}}, {"model": "template.logicnode", "pk": 1203, "fields": {"state_transition": 270, "node_type": "S", "subcondition": 17, "parent": 1204}}, {"model": "template.logicnode", "pk": 1204, "fields": {"state_transition": 270, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1205, "fields": {"state_transition": 271, "node_type": "N", "subcondition": null, "parent": 1208}}, {"model": "template.logicnode", "pk": 1206, "fields": {"state_transition": 271, "node_type": "S", "subcondition": 23, "parent": 1205}}, {"model": "template.logicnode", "pk": 1207, "fields": {"state_transition": 271, "node_type": "S", "subcondition": 11, "parent": 1208}}, {"model": "template.logicnode", "pk": 1208, "fields": {"state_transition": 271, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1209, "fields": {"state_transition": 272, "node_type": "N", "subcondition": null, "parent": 1212}}, {"model": "template.logicnode", "pk": 1210, "fields": {"state_transition": 272, "node_type": "S", "subcondition": 23, "parent": 1209}}, {"model": "template.logicnode", "pk": 1211, "fields": {"state_transition": 272, "node_type": "S", "subcondition": 17, "parent": 1212}}, {"model": "template.logicnode", "pk": 1212, "fields": {"state_transition": 272, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1213, "fields": {"state_transition": 273, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1214, "fields": {"state_transition": 273, "node_type": "S", "subcondition": 23, "parent": 1213}}, {"model": "template.logicnode", "pk": 1215, "fields": {"state_transition": 274, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1216, "fields": {"state_transition": 275, "node_type": "N", "subcondition": null, "parent": 1220}}, {"model": "template.logicnode", "pk": 1217, "fields": {"state_transition": 275, "node_type": "S", "subcondition": 23, "parent": 1216}}, {"model": "template.logicnode", "pk": 1218, "fields": {"state_transition": 275, "node_type": "S", "subcondition": 11, "parent": 1220}}, {"model": "template.logicnode", "pk": 1219, "fields": {"state_transition": 275, "node_type": "S", "subcondition": 17, "parent": 1220}}, {"model": "template.logicnode", "pk": 1220, "fields": {"state_transition": 275, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1221, "fields": {"state_transition": 276, "node_type": "N", "subcondition": null, "parent": 1224}}, {"model": "template.logicnode", "pk": 1222, "fields": {"state_transition": 276, "node_type": "S", "subcondition": 23, "parent": 1221}}, {"model": "template.logicnode", "pk": 1223, "fields": {"state_transition": 276, "node_type": "S", "subcondition": 11, "parent": 1224}}, {"model": "template.logicnode", "pk": 1224, "fields": {"state_transition": 276, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1225, "fields": {"state_transition": 277, "node_type": "N", "subcondition": null, "parent": 1228}}, {"model": "template.logicnode", "pk": 1226, "fields": {"state_transition": 277, "node_type": "S", "subcondition": 23, "parent": 1225}}, {"model": "template.logicnode", "pk": 1227, "fields": {"state_transition": 277, "node_type": "S", "subcondition": 17, "parent": 1228}}, {"model": "template.logicnode", "pk": 1228, "fields": {"state_transition": 277, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1229, "fields": {"state_transition": 278, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1230, "fields": {"state_transition": 278, "node_type": "S", "subcondition": 23, "parent": 1229}}, {"model": "template.logicnode", "pk": 1231, "fields": {"state_transition": 279, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1232, "fields": {"state_transition": 280, "node_type": "N", "subcondition": null, "parent": 1236}}, {"model": "template.logicnode", "pk": 1233, "fields": {"state_transition": 280, "node_type": "S", "subcondition": 23, "parent": 1232}}, {"model": "template.logicnode", "pk": 1234, "fields": {"state_transition": 280, "node_type": "S", "subcondition": 11, "parent": 1236}}, {"model": "template.logicnode", "pk": 1235, "fields": {"state_transition": 280, "node_type": "S", "subcondition": 17, "parent": 1236}}, {"model": "template.logicnode", "pk": 1236, "fields": {"state_transition": 280, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1237, "fields": {"state_transition": 281, "node_type": "N", "subcondition": null, "parent": 1240}}, {"model": "template.logicnode", "pk": 1238, "fields": {"state_transition": 281, "node_type": "S", "subcondition": 23, "parent": 1237}}, {"model": "template.logicnode", "pk": 1239, "fields": {"state_transition": 281, "node_type": "S", "subcondition": 11, "parent": 1240}}, {"model": "template.logicnode", "pk": 1240, "fields": {"state_transition": 281, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1241, "fields": {"state_transition": 282, "node_type": "N", "subcondition": null, "parent": 1244}}, {"model": "template.logicnode", "pk": 1242, "fields": {"state_transition": 282, "node_type": "S", "subcondition": 23, "parent": 1241}}, {"model": "template.logicnode", "pk": 1243, "fields": {"state_transition": 282, "node_type": "S", "subcondition": 17, "parent": 1244}}, {"model": "template.logicnode", "pk": 1244, "fields": {"state_transition": 282, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1245, "fields": {"state_transition": 283, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1246, "fields": {"state_transition": 283, "node_type": "S", "subcondition": 23, "parent": 1245}}, {"model": "template.logicnode", "pk": 1247, "fields": {"state_transition": 284, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1248, "fields": {"state_transition": 285, "node_type": "N", "subcondition": null, "parent": 1252}}, {"model": "template.logicnode", "pk": 1249, "fields": {"state_transition": 285, "node_type": "S", "subcondition": 23, "parent": 1248}}, {"model": "template.logicnode", "pk": 1250, "fields": {"state_transition": 285, "node_type": "S", "subcondition": 11, "parent": 1252}}, {"model": "template.logicnode", "pk": 1251, "fields": {"state_transition": 285, "node_type": "S", "subcondition": 17, "parent": 1252}}, {"model": "template.logicnode", "pk": 1252, "fields": {"state_transition": 285, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1253, "fields": {"state_transition": 286, "node_type": "N", "subcondition": null, "parent": 1256}}, {"model": "template.logicnode", "pk": 1254, "fields": {"state_transition": 286, "node_type": "S", "subcondition": 23, "parent": 1253}}, {"model": "template.logicnode", "pk": 1255, "fields": {"state_transition": 286, "node_type": "S", "subcondition": 11, "parent": 1256}}, {"model": "template.logicnode", "pk": 1256, "fields": {"state_transition": 286, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1257, "fields": {"state_transition": 287, "node_type": "N", "subcondition": null, "parent": 1260}}, {"model": "template.logicnode", "pk": 1258, "fields": {"state_transition": 287, "node_type": "S", "subcondition": 23, "parent": 1257}}, {"model": "template.logicnode", "pk": 1259, "fields": {"state_transition": 287, "node_type": "S", "subcondition": 17, "parent": 1260}}, {"model": "template.logicnode", "pk": 1260, "fields": {"state_transition": 287, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1261, "fields": {"state_transition": 288, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1262, "fields": {"state_transition": 288, "node_type": "S", "subcondition": 23, "parent": 1261}}, {"model": "template.logicnode", "pk": 1263, "fields": {"state_transition": 289, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1264, "fields": {"state_transition": 290, "node_type": "N", "subcondition": null, "parent": 1268}}, {"model": "template.logicnode", "pk": 1265, "fields": {"state_transition": 290, "node_type": "S", "subcondition": 23, "parent": 1264}}, {"model": "template.logicnode", "pk": 1266, "fields": {"state_transition": 290, "node_type": "S", "subcondition": 11, "parent": 1268}}, {"model": "template.logicnode", "pk": 1267, "fields": {"state_transition": 290, "node_type": "S", "subcondition": 17, "parent": 1268}}, {"model": "template.logicnode", "pk": 1268, "fields": {"state_transition": 290, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1269, "fields": {"state_transition": 291, "node_type": "N", "subcondition": null, "parent": 1272}}, {"model": "template.logicnode", "pk": 1270, "fields": {"state_transition": 291, "node_type": "S", "subcondition": 23, "parent": 1269}}, {"model": "template.logicnode", "pk": 1271, "fields": {"state_transition": 291, "node_type": "S", "subcondition": 11, "parent": 1272}}, {"model": "template.logicnode", "pk": 1272, "fields": {"state_transition": 291, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1273, "fields": {"state_transition": 292, "node_type": "N", "subcondition": null, "parent": 1276}}, {"model": "template.logicnode", "pk": 1274, "fields": {"state_transition": 292, "node_type": "S", "subcondition": 23, "parent": 1273}}, {"model": "template.logicnode", "pk": 1275, "fields": {"state_transition": 292, "node_type": "S", "subcondition": 17, "parent": 1276}}, {"model": "template.logicnode", "pk": 1276, "fields": {"state_transition": 292, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1277, "fields": {"state_transition": 293, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1278, "fields": {"state_transition": 293, "node_type": "S", "subcondition": 23, "parent": 1277}}, {"model": "template.logicnode", "pk": 1279, "fields": {"state_transition": 294, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1280, "fields": {"state_transition": 295, "node_type": "N", "subcondition": null, "parent": 1284}}, {"model": "template.logicnode", "pk": 1281, "fields": {"state_transition": 295, "node_type": "S", "subcondition": 23, "parent": 1280}}, {"model": "template.logicnode", "pk": 1282, "fields": {"state_transition": 295, "node_type": "S", "subcondition": 11, "parent": 1284}}, {"model": "template.logicnode", "pk": 1283, "fields": {"state_transition": 295, "node_type": "S", "subcondition": 17, "parent": 1284}}, {"model": "template.logicnode", "pk": 1284, "fields": {"state_transition": 295, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1285, "fields": {"state_transition": 296, "node_type": "N", "subcondition": null, "parent": 1288}}, {"model": "template.logicnode", "pk": 1286, "fields": {"state_transition": 296, "node_type": "S", "subcondition": 23, "parent": 1285}}, {"model": "template.logicnode", "pk": 1287, "fields": {"state_transition": 296, "node_type": "S", "subcondition": 11, "parent": 1288}}, {"model": "template.logicnode", "pk": 1288, "fields": {"state_transition": 296, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1289, "fields": {"state_transition": 297, "node_type": "N", "subcondition": null, "parent": 1292}}, {"model": "template.logicnode", "pk": 1290, "fields": {"state_transition": 297, "node_type": "S", "subcondition": 23, "parent": 1289}}, {"model": "template.logicnode", "pk": 1291, "fields": {"state_transition": 297, "node_type": "S", "subcondition": 17, "parent": 1292}}, {"model": "template.logicnode", "pk": 1292, "fields": {"state_transition": 297, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1293, "fields": {"state_transition": 298, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1294, "fields": {"state_transition": 298, "node_type": "S", "subcondition": 23, "parent": 1293}}, {"model": "template.logicnode", "pk": 1295, "fields": {"state_transition": 299, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1296, "fields": {"state_transition": 300, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1297, "fields": {"state_transition": 301, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1298, "fields": {"state_transition": 302, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1299, "fields": {"state_transition": 303, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1300, "fields": {"state_transition": 304, "node_type": "N", "subcondition": null, "parent": 1304}}, {"model": "template.logicnode", "pk": 1301, "fields": {"state_transition": 304, "node_type": "S", "subcondition": 23, "parent": 1300}}, {"model": "template.logicnode", "pk": 1302, "fields": {"state_transition": 304, "node_type": "S", "subcondition": 11, "parent": 1304}}, {"model": "template.logicnode", "pk": 1303, "fields": {"state_transition": 304, "node_type": "S", "subcondition": 17, "parent": 1304}}, {"model": "template.logicnode", "pk": 1304, "fields": {"state_transition": 304, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1305, "fields": {"state_transition": 305, "node_type": "N", "subcondition": null, "parent": 1308}}, {"model": "template.logicnode", "pk": 1306, "fields": {"state_transition": 305, "node_type": "S", "subcondition": 23, "parent": 1305}}, {"model": "template.logicnode", "pk": 1307, "fields": {"state_transition": 305, "node_type": "S", "subcondition": 11, "parent": 1308}}, {"model": "template.logicnode", "pk": 1308, "fields": {"state_transition": 305, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1309, "fields": {"state_transition": 306, "node_type": "N", "subcondition": null, "parent": 1312}}, {"model": "template.logicnode", "pk": 1310, "fields": {"state_transition": 306, "node_type": "S", "subcondition": 23, "parent": 1309}}, {"model": "template.logicnode", "pk": 1311, "fields": {"state_transition": 306, "node_type": "S", "subcondition": 17, "parent": 1312}}, {"model": "template.logicnode", "pk": 1312, "fields": {"state_transition": 306, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1313, "fields": {"state_transition": 307, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1314, "fields": {"state_transition": 307, "node_type": "S", "subcondition": 23, "parent": 1313}}, {"model": "template.logicnode", "pk": 1315, "fields": {"state_transition": 308, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1316, "fields": {"state_transition": 309, "node_type": "N", "subcondition": null, "parent": 1320}}, {"model": "template.logicnode", "pk": 1317, "fields": {"state_transition": 309, "node_type": "S", "subcondition": 23, "parent": 1316}}, {"model": "template.logicnode", "pk": 1318, "fields": {"state_transition": 309, "node_type": "S", "subcondition": 11, "parent": 1320}}, {"model": "template.logicnode", "pk": 1319, "fields": {"state_transition": 309, "node_type": "S", "subcondition": 17, "parent": 1320}}, {"model": "template.logicnode", "pk": 1320, "fields": {"state_transition": 309, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1321, "fields": {"state_transition": 310, "node_type": "N", "subcondition": null, "parent": 1324}}, {"model": "template.logicnode", "pk": 1322, "fields": {"state_transition": 310, "node_type": "S", "subcondition": 23, "parent": 1321}}, {"model": "template.logicnode", "pk": 1323, "fields": {"state_transition": 310, "node_type": "S", "subcondition": 11, "parent": 1324}}, {"model": "template.logicnode", "pk": 1324, "fields": {"state_transition": 310, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1325, "fields": {"state_transition": 311, "node_type": "N", "subcondition": null, "parent": 1328}}, {"model": "template.logicnode", "pk": 1326, "fields": {"state_transition": 311, "node_type": "S", "subcondition": 23, "parent": 1325}}, {"model": "template.logicnode", "pk": 1327, "fields": {"state_transition": 311, "node_type": "S", "subcondition": 17, "parent": 1328}}, {"model": "template.logicnode", "pk": 1328, "fields": {"state_transition": 311, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1329, "fields": {"state_transition": 312, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1330, "fields": {"state_transition": 312, "node_type": "S", "subcondition": 23, "parent": 1329}}, {"model": "template.logicnode", "pk": 1331, "fields": {"state_transition": 313, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1332, "fields": {"state_transition": 314, "node_type": "N", "subcondition": null, "parent": 1336}}, {"model": "template.logicnode", "pk": 1333, "fields": {"state_transition": 314, "node_type": "S", "subcondition": 23, "parent": 1332}}, {"model": "template.logicnode", "pk": 1334, "fields": {"state_transition": 314, "node_type": "S", "subcondition": 11, "parent": 1336}}, {"model": "template.logicnode", "pk": 1335, "fields": {"state_transition": 314, "node_type": "S", "subcondition": 17, "parent": 1336}}, {"model": "template.logicnode", "pk": 1336, "fields": {"state_transition": 314, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1337, "fields": {"state_transition": 315, "node_type": "N", "subcondition": null, "parent": 1340}}, {"model": "template.logicnode", "pk": 1338, "fields": {"state_transition": 315, "node_type": "S", "subcondition": 23, "parent": 1337}}, {"model": "template.logicnode", "pk": 1339, "fields": {"state_transition": 315, "node_type": "S", "subcondition": 11, "parent": 1340}}, {"model": "template.logicnode", "pk": 1340, "fields": {"state_transition": 315, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1341, "fields": {"state_transition": 316, "node_type": "N", "subcondition": null, "parent": 1344}}, {"model": "template.logicnode", "pk": 1342, "fields": {"state_transition": 316, "node_type": "S", "subcondition": 23, "parent": 1341}}, {"model": "template.logicnode", "pk": 1343, "fields": {"state_transition": 316, "node_type": "S", "subcondition": 17, "parent": 1344}}, {"model": "template.logicnode", "pk": 1344, "fields": {"state_transition": 316, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1345, "fields": {"state_transition": 317, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1346, "fields": {"state_transition": 317, "node_type": "S", "subcondition": 23, "parent": 1345}}, {"model": "template.logicnode", "pk": 1347, "fields": {"state_transition": 318, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1348, "fields": {"state_transition": 319, "node_type": "N", "subcondition": null, "parent": 1352}}, {"model": "template.logicnode", "pk": 1349, "fields": {"state_transition": 319, "node_type": "S", "subcondition": 23, "parent": 1348}}, {"model": "template.logicnode", "pk": 1350, "fields": {"state_transition": 319, "node_type": "S", "subcondition": 11, "parent": 1352}}, {"model": "template.logicnode", "pk": 1351, "fields": {"state_transition": 319, "node_type": "S", "subcondition": 17, "parent": 1352}}, {"model": "template.logicnode", "pk": 1352, "fields": {"state_transition": 319, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1353, "fields": {"state_transition": 320, "node_type": "N", "subcondition": null, "parent": 1356}}, {"model": "template.logicnode", "pk": 1354, "fields": {"state_transition": 320, "node_type": "S", "subcondition": 23, "parent": 1353}}, {"model": "template.logicnode", "pk": 1355, "fields": {"state_transition": 320, "node_type": "S", "subcondition": 11, "parent": 1356}}, {"model": "template.logicnode", "pk": 1356, "fields": {"state_transition": 320, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1357, "fields": {"state_transition": 321, "node_type": "N", "subcondition": null, "parent": 1360}}, {"model": "template.logicnode", "pk": 1358, "fields": {"state_transition": 321, "node_type": "S", "subcondition": 23, "parent": 1357}}, {"model": "template.logicnode", "pk": 1359, "fields": {"state_transition": 321, "node_type": "S", "subcondition": 17, "parent": 1360}}, {"model": "template.logicnode", "pk": 1360, "fields": {"state_transition": 321, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1361, "fields": {"state_transition": 322, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1362, "fields": {"state_transition": 322, "node_type": "S", "subcondition": 23, "parent": 1361}}, {"model": "template.logicnode", "pk": 1363, "fields": {"state_transition": 323, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1364, "fields": {"state_transition": 324, "node_type": "N", "subcondition": null, "parent": 1368}}, {"model": "template.logicnode", "pk": 1365, "fields": {"state_transition": 324, "node_type": "S", "subcondition": 23, "parent": 1364}}, {"model": "template.logicnode", "pk": 1366, "fields": {"state_transition": 324, "node_type": "S", "subcondition": 11, "parent": 1368}}, {"model": "template.logicnode", "pk": 1367, "fields": {"state_transition": 324, "node_type": "S", "subcondition": 17, "parent": 1368}}, {"model": "template.logicnode", "pk": 1368, "fields": {"state_transition": 324, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1369, "fields": {"state_transition": 325, "node_type": "N", "subcondition": null, "parent": 1372}}, {"model": "template.logicnode", "pk": 1370, "fields": {"state_transition": 325, "node_type": "S", "subcondition": 23, "parent": 1369}}, {"model": "template.logicnode", "pk": 1371, "fields": {"state_transition": 325, "node_type": "S", "subcondition": 11, "parent": 1372}}, {"model": "template.logicnode", "pk": 1372, "fields": {"state_transition": 325, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1373, "fields": {"state_transition": 326, "node_type": "N", "subcondition": null, "parent": 1376}}, {"model": "template.logicnode", "pk": 1374, "fields": {"state_transition": 326, "node_type": "S", "subcondition": 23, "parent": 1373}}, {"model": "template.logicnode", "pk": 1375, "fields": {"state_transition": 326, "node_type": "S", "subcondition": 17, "parent": 1376}}, {"model": "template.logicnode", "pk": 1376, "fields": {"state_transition": 326, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1377, "fields": {"state_transition": 327, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1378, "fields": {"state_transition": 327, "node_type": "S", "subcondition": 23, "parent": 1377}}, {"model": "template.logicnode", "pk": 1379, "fields": {"state_transition": 328, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1380, "fields": {"state_transition": 329, "node_type": "N", "subcondition": null, "parent": 1384}}, {"model": "template.logicnode", "pk": 1381, "fields": {"state_transition": 329, "node_type": "S", "subcondition": 23, "parent": 1380}}, {"model": "template.logicnode", "pk": 1382, "fields": {"state_transition": 329, "node_type": "S", "subcondition": 11, "parent": 1384}}, {"model": "template.logicnode", "pk": 1383, "fields": {"state_transition": 329, "node_type": "S", "subcondition": 17, "parent": 1384}}, {"model": "template.logicnode", "pk": 1384, "fields": {"state_transition": 329, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1385, "fields": {"state_transition": 330, "node_type": "N", "subcondition": null, "parent": 1388}}, {"model": "template.logicnode", "pk": 1386, "fields": {"state_transition": 330, "node_type": "S", "subcondition": 23, "parent": 1385}}, {"model": "template.logicnode", "pk": 1387, "fields": {"state_transition": 330, "node_type": "S", "subcondition": 11, "parent": 1388}}, {"model": "template.logicnode", "pk": 1388, "fields": {"state_transition": 330, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1389, "fields": {"state_transition": 331, "node_type": "N", "subcondition": null, "parent": 1392}}, {"model": "template.logicnode", "pk": 1390, "fields": {"state_transition": 331, "node_type": "S", "subcondition": 23, "parent": 1389}}, {"model": "template.logicnode", "pk": 1391, "fields": {"state_transition": 331, "node_type": "S", "subcondition": 17, "parent": 1392}}, {"model": "template.logicnode", "pk": 1392, "fields": {"state_transition": 331, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1393, "fields": {"state_transition": 332, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1394, "fields": {"state_transition": 332, "node_type": "S", "subcondition": 23, "parent": 1393}}, {"model": "template.logicnode", "pk": 1395, "fields": {"state_transition": 333, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 1396, "fields": {"state_transition": 334, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1397, "fields": {"state_transition": 335, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1398, "fields": {"state_transition": 336, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1399, "fields": {"state_transition": 337, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1400, "fields": {"state_transition": 338, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1401, "fields": {"state_transition": 339, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1402, "fields": {"state_transition": 340, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1403, "fields": {"state_transition": 340, "node_type": "S", "subcondition": 24, "parent": 1402}}, {"model": "template.logicnode", "pk": 1404, "fields": {"state_transition": 341, "node_type": "N", "subcondition": null, "parent": 1408}}, {"model": "template.logicnode", "pk": 1405, "fields": {"state_transition": 341, "node_type": "S", "subcondition": 23, "parent": 1404}}, {"model": "template.logicnode", "pk": 1406, "fields": {"state_transition": 341, "node_type": "S", "subcondition": 3, "parent": 1408}}, {"model": "template.logicnode", "pk": 1407, "fields": {"state_transition": 341, "node_type": "S", "subcondition": 19, "parent": 1408}}, {"model": "template.logicnode", "pk": 1408, "fields": {"state_transition": 341, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1409, "fields": {"state_transition": 342, "node_type": "N", "subcondition": null, "parent": 1413}}, {"model": "template.logicnode", "pk": 1410, "fields": {"state_transition": 342, "node_type": "S", "subcondition": 23, "parent": 1409}}, {"model": "template.logicnode", "pk": 1411, "fields": {"state_transition": 342, "node_type": "S", "subcondition": 3, "parent": 1413}}, {"model": "template.logicnode", "pk": 1412, "fields": {"state_transition": 342, "node_type": "S", "subcondition": 20, "parent": 1413}}, {"model": "template.logicnode", "pk": 1413, "fields": {"state_transition": 342, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1414, "fields": {"state_transition": 343, "node_type": "N", "subcondition": null, "parent": 1418}}, {"model": "template.logicnode", "pk": 1415, "fields": {"state_transition": 343, "node_type": "S", "subcondition": 23, "parent": 1414}}, {"model": "template.logicnode", "pk": 1416, "fields": {"state_transition": 343, "node_type": "S", "subcondition": 3, "parent": 1418}}, {"model": "template.logicnode", "pk": 1417, "fields": {"state_transition": 343, "node_type": "S", "subcondition": 21, "parent": 1418}}, {"model": "template.logicnode", "pk": 1418, "fields": {"state_transition": 343, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1419, "fields": {"state_transition": 344, "node_type": "N", "subcondition": null, "parent": 1423}}, {"model": "template.logicnode", "pk": 1420, "fields": {"state_transition": 344, "node_type": "S", "subcondition": 23, "parent": 1419}}, {"model": "template.logicnode", "pk": 1421, "fields": {"state_transition": 344, "node_type": "S", "subcondition": 3, "parent": 1423}}, {"model": "template.logicnode", "pk": 1422, "fields": {"state_transition": 344, "node_type": "S", "subcondition": 22, "parent": 1423}}, {"model": "template.logicnode", "pk": 1423, "fields": {"state_transition": 344, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1424, "fields": {"state_transition": 345, "node_type": "N", "subcondition": null, "parent": 1428}}, {"model": "template.logicnode", "pk": 1425, "fields": {"state_transition": 345, "node_type": "S", "subcondition": 23, "parent": 1424}}, {"model": "template.logicnode", "pk": 1426, "fields": {"state_transition": 345, "node_type": "S", "subcondition": 4, "parent": 1428}}, {"model": "template.logicnode", "pk": 1427, "fields": {"state_transition": 345, "node_type": "S", "subcondition": 19, "parent": 1428}}, {"model": "template.logicnode", "pk": 1428, "fields": {"state_transition": 345, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1429, "fields": {"state_transition": 346, "node_type": "N", "subcondition": null, "parent": 1433}}, {"model": "template.logicnode", "pk": 1430, "fields": {"state_transition": 346, "node_type": "S", "subcondition": 23, "parent": 1429}}, {"model": "template.logicnode", "pk": 1431, "fields": {"state_transition": 346, "node_type": "S", "subcondition": 4, "parent": 1433}}, {"model": "template.logicnode", "pk": 1432, "fields": {"state_transition": 346, "node_type": "S", "subcondition": 20, "parent": 1433}}, {"model": "template.logicnode", "pk": 1433, "fields": {"state_transition": 346, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1434, "fields": {"state_transition": 347, "node_type": "N", "subcondition": null, "parent": 1438}}, {"model": "template.logicnode", "pk": 1435, "fields": {"state_transition": 347, "node_type": "S", "subcondition": 23, "parent": 1434}}, {"model": "template.logicnode", "pk": 1436, "fields": {"state_transition": 347, "node_type": "S", "subcondition": 4, "parent": 1438}}, {"model": "template.logicnode", "pk": 1437, "fields": {"state_transition": 347, "node_type": "S", "subcondition": 21, "parent": 1438}}, {"model": "template.logicnode", "pk": 1438, "fields": {"state_transition": 347, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1439, "fields": {"state_transition": 348, "node_type": "N", "subcondition": null, "parent": 1443}}, {"model": "template.logicnode", "pk": 1440, "fields": {"state_transition": 348, "node_type": "S", "subcondition": 23, "parent": 1439}}, {"model": "template.logicnode", "pk": 1441, "fields": {"state_transition": 348, "node_type": "S", "subcondition": 4, "parent": 1443}}, {"model": "template.logicnode", "pk": 1442, "fields": {"state_transition": 348, "node_type": "S", "subcondition": 22, "parent": 1443}}, {"model": "template.logicnode", "pk": 1443, "fields": {"state_transition": 348, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1444, "fields": {"state_transition": 349, "node_type": "N", "subcondition": null, "parent": 1448}}, {"model": "template.logicnode", "pk": 1445, "fields": {"state_transition": 349, "node_type": "S", "subcondition": 23, "parent": 1444}}, {"model": "template.logicnode", "pk": 1446, "fields": {"state_transition": 349, "node_type": "S", "subcondition": 5, "parent": 1448}}, {"model": "template.logicnode", "pk": 1447, "fields": {"state_transition": 349, "node_type": "S", "subcondition": 19, "parent": 1448}}, {"model": "template.logicnode", "pk": 1448, "fields": {"state_transition": 349, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1449, "fields": {"state_transition": 350, "node_type": "N", "subcondition": null, "parent": 1453}}, {"model": "template.logicnode", "pk": 1450, "fields": {"state_transition": 350, "node_type": "S", "subcondition": 23, "parent": 1449}}, {"model": "template.logicnode", "pk": 1451, "fields": {"state_transition": 350, "node_type": "S", "subcondition": 5, "parent": 1453}}, {"model": "template.logicnode", "pk": 1452, "fields": {"state_transition": 350, "node_type": "S", "subcondition": 20, "parent": 1453}}, {"model": "template.logicnode", "pk": 1453, "fields": {"state_transition": 350, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1454, "fields": {"state_transition": 351, "node_type": "N", "subcondition": null, "parent": 1458}}, {"model": "template.logicnode", "pk": 1455, "fields": {"state_transition": 351, "node_type": "S", "subcondition": 23, "parent": 1454}}, {"model": "template.logicnode", "pk": 1456, "fields": {"state_transition": 351, "node_type": "S", "subcondition": 5, "parent": 1458}}, {"model": "template.logicnode", "pk": 1457, "fields": {"state_transition": 351, "node_type": "S", "subcondition": 21, "parent": 1458}}, {"model": "template.logicnode", "pk": 1458, "fields": {"state_transition": 351, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1459, "fields": {"state_transition": 352, "node_type": "N", "subcondition": null, "parent": 1463}}, {"model": "template.logicnode", "pk": 1460, "fields": {"state_transition": 352, "node_type": "S", "subcondition": 23, "parent": 1459}}, {"model": "template.logicnode", "pk": 1461, "fields": {"state_transition": 352, "node_type": "S", "subcondition": 5, "parent": 1463}}, {"model": "template.logicnode", "pk": 1462, "fields": {"state_transition": 352, "node_type": "S", "subcondition": 22, "parent": 1463}}, {"model": "template.logicnode", "pk": 1463, "fields": {"state_transition": 352, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1464, "fields": {"state_transition": 353, "node_type": "N", "subcondition": null, "parent": 1468}}, {"model": "template.logicnode", "pk": 1465, "fields": {"state_transition": 353, "node_type": "S", "subcondition": 23, "parent": 1464}}, {"model": "template.logicnode", "pk": 1466, "fields": {"state_transition": 353, "node_type": "S", "subcondition": 6, "parent": 1468}}, {"model": "template.logicnode", "pk": 1467, "fields": {"state_transition": 353, "node_type": "S", "subcondition": 19, "parent": 1468}}, {"model": "template.logicnode", "pk": 1468, "fields": {"state_transition": 353, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1469, "fields": {"state_transition": 354, "node_type": "N", "subcondition": null, "parent": 1473}}, {"model": "template.logicnode", "pk": 1470, "fields": {"state_transition": 354, "node_type": "S", "subcondition": 23, "parent": 1469}}, {"model": "template.logicnode", "pk": 1471, "fields": {"state_transition": 354, "node_type": "S", "subcondition": 6, "parent": 1473}}, {"model": "template.logicnode", "pk": 1472, "fields": {"state_transition": 354, "node_type": "S", "subcondition": 20, "parent": 1473}}, {"model": "template.logicnode", "pk": 1473, "fields": {"state_transition": 354, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1474, "fields": {"state_transition": 355, "node_type": "N", "subcondition": null, "parent": 1478}}, {"model": "template.logicnode", "pk": 1475, "fields": {"state_transition": 355, "node_type": "S", "subcondition": 23, "parent": 1474}}, {"model": "template.logicnode", "pk": 1476, "fields": {"state_transition": 355, "node_type": "S", "subcondition": 6, "parent": 1478}}, {"model": "template.logicnode", "pk": 1477, "fields": {"state_transition": 355, "node_type": "S", "subcondition": 21, "parent": 1478}}, {"model": "template.logicnode", "pk": 1478, "fields": {"state_transition": 355, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1479, "fields": {"state_transition": 356, "node_type": "N", "subcondition": null, "parent": 1483}}, {"model": "template.logicnode", "pk": 1480, "fields": {"state_transition": 356, "node_type": "S", "subcondition": 23, "parent": 1479}}, {"model": "template.logicnode", "pk": 1481, "fields": {"state_transition": 356, "node_type": "S", "subcondition": 6, "parent": 1483}}, {"model": "template.logicnode", "pk": 1482, "fields": {"state_transition": 356, "node_type": "S", "subcondition": 22, "parent": 1483}}, {"model": "template.logicnode", "pk": 1483, "fields": {"state_transition": 356, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1484, "fields": {"state_transition": 357, "node_type": "S", "subcondition": 23, "parent": 1487}}, {"model": "template.logicnode", "pk": 1485, "fields": {"state_transition": 357, "node_type": "S", "subcondition": 3, "parent": 1487}}, {"model": "template.logicnode", "pk": 1486, "fields": {"state_transition": 357, "node_type": "S", "subcondition": 19, "parent": 1487}}, {"model": "template.logicnode", "pk": 1487, "fields": {"state_transition": 357, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1488, "fields": {"state_transition": 358, "node_type": "S", "subcondition": 23, "parent": 1491}}, {"model": "template.logicnode", "pk": 1489, "fields": {"state_transition": 358, "node_type": "S", "subcondition": 3, "parent": 1491}}, {"model": "template.logicnode", "pk": 1490, "fields": {"state_transition": 358, "node_type": "S", "subcondition": 20, "parent": 1491}}, {"model": "template.logicnode", "pk": 1491, "fields": {"state_transition": 358, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1492, "fields": {"state_transition": 359, "node_type": "S", "subcondition": 23, "parent": 1495}}, {"model": "template.logicnode", "pk": 1493, "fields": {"state_transition": 359, "node_type": "S", "subcondition": 3, "parent": 1495}}, {"model": "template.logicnode", "pk": 1494, "fields": {"state_transition": 359, "node_type": "S", "subcondition": 21, "parent": 1495}}, {"model": "template.logicnode", "pk": 1495, "fields": {"state_transition": 359, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1496, "fields": {"state_transition": 360, "node_type": "S", "subcondition": 23, "parent": 1499}}, {"model": "template.logicnode", "pk": 1497, "fields": {"state_transition": 360, "node_type": "S", "subcondition": 3, "parent": 1499}}, {"model": "template.logicnode", "pk": 1498, "fields": {"state_transition": 360, "node_type": "S", "subcondition": 22, "parent": 1499}}, {"model": "template.logicnode", "pk": 1499, "fields": {"state_transition": 360, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1500, "fields": {"state_transition": 361, "node_type": "S", "subcondition": 23, "parent": 1503}}, {"model": "template.logicnode", "pk": 1501, "fields": {"state_transition": 361, "node_type": "S", "subcondition": 4, "parent": 1503}}, {"model": "template.logicnode", "pk": 1502, "fields": {"state_transition": 361, "node_type": "S", "subcondition": 19, "parent": 1503}}, {"model": "template.logicnode", "pk": 1503, "fields": {"state_transition": 361, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1504, "fields": {"state_transition": 362, "node_type": "S", "subcondition": 23, "parent": 1507}}, {"model": "template.logicnode", "pk": 1505, "fields": {"state_transition": 362, "node_type": "S", "subcondition": 4, "parent": 1507}}, {"model": "template.logicnode", "pk": 1506, "fields": {"state_transition": 362, "node_type": "S", "subcondition": 20, "parent": 1507}}, {"model": "template.logicnode", "pk": 1507, "fields": {"state_transition": 362, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1508, "fields": {"state_transition": 363, "node_type": "S", "subcondition": 23, "parent": 1511}}, {"model": "template.logicnode", "pk": 1509, "fields": {"state_transition": 363, "node_type": "S", "subcondition": 4, "parent": 1511}}, {"model": "template.logicnode", "pk": 1510, "fields": {"state_transition": 363, "node_type": "S", "subcondition": 21, "parent": 1511}}, {"model": "template.logicnode", "pk": 1511, "fields": {"state_transition": 363, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1512, "fields": {"state_transition": 364, "node_type": "S", "subcondition": 23, "parent": 1515}}, {"model": "template.logicnode", "pk": 1513, "fields": {"state_transition": 364, "node_type": "S", "subcondition": 4, "parent": 1515}}, {"model": "template.logicnode", "pk": 1514, "fields": {"state_transition": 364, "node_type": "S", "subcondition": 22, "parent": 1515}}, {"model": "template.logicnode", "pk": 1515, "fields": {"state_transition": 364, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1516, "fields": {"state_transition": 365, "node_type": "S", "subcondition": 23, "parent": 1519}}, {"model": "template.logicnode", "pk": 1517, "fields": {"state_transition": 365, "node_type": "S", "subcondition": 5, "parent": 1519}}, {"model": "template.logicnode", "pk": 1518, "fields": {"state_transition": 365, "node_type": "S", "subcondition": 19, "parent": 1519}}, {"model": "template.logicnode", "pk": 1519, "fields": {"state_transition": 365, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1520, "fields": {"state_transition": 366, "node_type": "S", "subcondition": 23, "parent": 1523}}, {"model": "template.logicnode", "pk": 1521, "fields": {"state_transition": 366, "node_type": "S", "subcondition": 5, "parent": 1523}}, {"model": "template.logicnode", "pk": 1522, "fields": {"state_transition": 366, "node_type": "S", "subcondition": 20, "parent": 1523}}, {"model": "template.logicnode", "pk": 1523, "fields": {"state_transition": 366, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1524, "fields": {"state_transition": 367, "node_type": "S", "subcondition": 23, "parent": 1527}}, {"model": "template.logicnode", "pk": 1525, "fields": {"state_transition": 367, "node_type": "S", "subcondition": 5, "parent": 1527}}, {"model": "template.logicnode", "pk": 1526, "fields": {"state_transition": 367, "node_type": "S", "subcondition": 21, "parent": 1527}}, {"model": "template.logicnode", "pk": 1527, "fields": {"state_transition": 367, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1528, "fields": {"state_transition": 368, "node_type": "S", "subcondition": 23, "parent": 1531}}, {"model": "template.logicnode", "pk": 1529, "fields": {"state_transition": 368, "node_type": "S", "subcondition": 5, "parent": 1531}}, {"model": "template.logicnode", "pk": 1530, "fields": {"state_transition": 368, "node_type": "S", "subcondition": 22, "parent": 1531}}, {"model": "template.logicnode", "pk": 1531, "fields": {"state_transition": 368, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1532, "fields": {"state_transition": 369, "node_type": "S", "subcondition": 23, "parent": 1535}}, {"model": "template.logicnode", "pk": 1533, "fields": {"state_transition": 369, "node_type": "S", "subcondition": 6, "parent": 1535}}, {"model": "template.logicnode", "pk": 1534, "fields": {"state_transition": 369, "node_type": "S", "subcondition": 19, "parent": 1535}}, {"model": "template.logicnode", "pk": 1535, "fields": {"state_transition": 369, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1536, "fields": {"state_transition": 370, "node_type": "S", "subcondition": 23, "parent": 1539}}, {"model": "template.logicnode", "pk": 1537, "fields": {"state_transition": 370, "node_type": "S", "subcondition": 6, "parent": 1539}}, {"model": "template.logicnode", "pk": 1538, "fields": {"state_transition": 370, "node_type": "S", "subcondition": 20, "parent": 1539}}, {"model": "template.logicnode", "pk": 1539, "fields": {"state_transition": 370, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1540, "fields": {"state_transition": 371, "node_type": "S", "subcondition": 23, "parent": 1543}}, {"model": "template.logicnode", "pk": 1541, "fields": {"state_transition": 371, "node_type": "S", "subcondition": 6, "parent": 1543}}, {"model": "template.logicnode", "pk": 1542, "fields": {"state_transition": 371, "node_type": "S", "subcondition": 21, "parent": 1543}}, {"model": "template.logicnode", "pk": 1543, "fields": {"state_transition": 371, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1544, "fields": {"state_transition": 372, "node_type": "S", "subcondition": 23, "parent": 1547}}, {"model": "template.logicnode", "pk": 1545, "fields": {"state_transition": 372, "node_type": "S", "subcondition": 6, "parent": 1547}}, {"model": "template.logicnode", "pk": 1546, "fields": {"state_transition": 372, "node_type": "S", "subcondition": 22, "parent": 1547}}, {"model": "template.logicnode", "pk": 1547, "fields": {"state_transition": 372, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1548, "fields": {"state_transition": 373, "node_type": "N", "subcondition": null, "parent": 1552}}, {"model": "template.logicnode", "pk": 1549, "fields": {"state_transition": 373, "node_type": "S", "subcondition": 23, "parent": 1548}}, {"model": "template.logicnode", "pk": 1550, "fields": {"state_transition": 373, "node_type": "S", "subcondition": 3, "parent": 1552}}, {"model": "template.logicnode", "pk": 1551, "fields": {"state_transition": 373, "node_type": "S", "subcondition": 19, "parent": 1552}}, {"model": "template.logicnode", "pk": 1552, "fields": {"state_transition": 373, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1553, "fields": {"state_transition": 374, "node_type": "N", "subcondition": null, "parent": 1557}}, {"model": "template.logicnode", "pk": 1554, "fields": {"state_transition": 374, "node_type": "S", "subcondition": 23, "parent": 1553}}, {"model": "template.logicnode", "pk": 1555, "fields": {"state_transition": 374, "node_type": "S", "subcondition": 3, "parent": 1557}}, {"model": "template.logicnode", "pk": 1556, "fields": {"state_transition": 374, "node_type": "S", "subcondition": 20, "parent": 1557}}, {"model": "template.logicnode", "pk": 1557, "fields": {"state_transition": 374, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1558, "fields": {"state_transition": 375, "node_type": "N", "subcondition": null, "parent": 1562}}, {"model": "template.logicnode", "pk": 1559, "fields": {"state_transition": 375, "node_type": "S", "subcondition": 23, "parent": 1558}}, {"model": "template.logicnode", "pk": 1560, "fields": {"state_transition": 375, "node_type": "S", "subcondition": 3, "parent": 1562}}, {"model": "template.logicnode", "pk": 1561, "fields": {"state_transition": 375, "node_type": "S", "subcondition": 21, "parent": 1562}}, {"model": "template.logicnode", "pk": 1562, "fields": {"state_transition": 375, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1563, "fields": {"state_transition": 376, "node_type": "N", "subcondition": null, "parent": 1567}}, {"model": "template.logicnode", "pk": 1564, "fields": {"state_transition": 376, "node_type": "S", "subcondition": 23, "parent": 1563}}, {"model": "template.logicnode", "pk": 1565, "fields": {"state_transition": 376, "node_type": "S", "subcondition": 3, "parent": 1567}}, {"model": "template.logicnode", "pk": 1566, "fields": {"state_transition": 376, "node_type": "S", "subcondition": 22, "parent": 1567}}, {"model": "template.logicnode", "pk": 1567, "fields": {"state_transition": 376, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1568, "fields": {"state_transition": 377, "node_type": "N", "subcondition": null, "parent": 1572}}, {"model": "template.logicnode", "pk": 1569, "fields": {"state_transition": 377, "node_type": "S", "subcondition": 23, "parent": 1568}}, {"model": "template.logicnode", "pk": 1570, "fields": {"state_transition": 377, "node_type": "S", "subcondition": 4, "parent": 1572}}, {"model": "template.logicnode", "pk": 1571, "fields": {"state_transition": 377, "node_type": "S", "subcondition": 19, "parent": 1572}}, {"model": "template.logicnode", "pk": 1572, "fields": {"state_transition": 377, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1573, "fields": {"state_transition": 378, "node_type": "N", "subcondition": null, "parent": 1577}}, {"model": "template.logicnode", "pk": 1574, "fields": {"state_transition": 378, "node_type": "S", "subcondition": 23, "parent": 1573}}, {"model": "template.logicnode", "pk": 1575, "fields": {"state_transition": 378, "node_type": "S", "subcondition": 4, "parent": 1577}}, {"model": "template.logicnode", "pk": 1576, "fields": {"state_transition": 378, "node_type": "S", "subcondition": 20, "parent": 1577}}, {"model": "template.logicnode", "pk": 1577, "fields": {"state_transition": 378, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1578, "fields": {"state_transition": 379, "node_type": "N", "subcondition": null, "parent": 1582}}, {"model": "template.logicnode", "pk": 1579, "fields": {"state_transition": 379, "node_type": "S", "subcondition": 23, "parent": 1578}}, {"model": "template.logicnode", "pk": 1580, "fields": {"state_transition": 379, "node_type": "S", "subcondition": 4, "parent": 1582}}, {"model": "template.logicnode", "pk": 1581, "fields": {"state_transition": 379, "node_type": "S", "subcondition": 21, "parent": 1582}}, {"model": "template.logicnode", "pk": 1582, "fields": {"state_transition": 379, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1583, "fields": {"state_transition": 380, "node_type": "N", "subcondition": null, "parent": 1587}}, {"model": "template.logicnode", "pk": 1584, "fields": {"state_transition": 380, "node_type": "S", "subcondition": 23, "parent": 1583}}, {"model": "template.logicnode", "pk": 1585, "fields": {"state_transition": 380, "node_type": "S", "subcondition": 4, "parent": 1587}}, {"model": "template.logicnode", "pk": 1586, "fields": {"state_transition": 380, "node_type": "S", "subcondition": 22, "parent": 1587}}, {"model": "template.logicnode", "pk": 1587, "fields": {"state_transition": 380, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1588, "fields": {"state_transition": 381, "node_type": "N", "subcondition": null, "parent": 1592}}, {"model": "template.logicnode", "pk": 1589, "fields": {"state_transition": 381, "node_type": "S", "subcondition": 23, "parent": 1588}}, {"model": "template.logicnode", "pk": 1590, "fields": {"state_transition": 381, "node_type": "S", "subcondition": 5, "parent": 1592}}, {"model": "template.logicnode", "pk": 1591, "fields": {"state_transition": 381, "node_type": "S", "subcondition": 19, "parent": 1592}}, {"model": "template.logicnode", "pk": 1592, "fields": {"state_transition": 381, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1593, "fields": {"state_transition": 382, "node_type": "N", "subcondition": null, "parent": 1597}}, {"model": "template.logicnode", "pk": 1594, "fields": {"state_transition": 382, "node_type": "S", "subcondition": 23, "parent": 1593}}, {"model": "template.logicnode", "pk": 1595, "fields": {"state_transition": 382, "node_type": "S", "subcondition": 5, "parent": 1597}}, {"model": "template.logicnode", "pk": 1596, "fields": {"state_transition": 382, "node_type": "S", "subcondition": 20, "parent": 1597}}, {"model": "template.logicnode", "pk": 1597, "fields": {"state_transition": 382, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1598, "fields": {"state_transition": 383, "node_type": "N", "subcondition": null, "parent": 1602}}, {"model": "template.logicnode", "pk": 1599, "fields": {"state_transition": 383, "node_type": "S", "subcondition": 23, "parent": 1598}}, {"model": "template.logicnode", "pk": 1600, "fields": {"state_transition": 383, "node_type": "S", "subcondition": 5, "parent": 1602}}, {"model": "template.logicnode", "pk": 1601, "fields": {"state_transition": 383, "node_type": "S", "subcondition": 21, "parent": 1602}}, {"model": "template.logicnode", "pk": 1602, "fields": {"state_transition": 383, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1603, "fields": {"state_transition": 384, "node_type": "N", "subcondition": null, "parent": 1607}}, {"model": "template.logicnode", "pk": 1604, "fields": {"state_transition": 384, "node_type": "S", "subcondition": 23, "parent": 1603}}, {"model": "template.logicnode", "pk": 1605, "fields": {"state_transition": 384, "node_type": "S", "subcondition": 5, "parent": 1607}}, {"model": "template.logicnode", "pk": 1606, "fields": {"state_transition": 384, "node_type": "S", "subcondition": 22, "parent": 1607}}, {"model": "template.logicnode", "pk": 1607, "fields": {"state_transition": 384, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1608, "fields": {"state_transition": 385, "node_type": "N", "subcondition": null, "parent": 1612}}, {"model": "template.logicnode", "pk": 1609, "fields": {"state_transition": 385, "node_type": "S", "subcondition": 23, "parent": 1608}}, {"model": "template.logicnode", "pk": 1610, "fields": {"state_transition": 385, "node_type": "S", "subcondition": 6, "parent": 1612}}, {"model": "template.logicnode", "pk": 1611, "fields": {"state_transition": 385, "node_type": "S", "subcondition": 19, "parent": 1612}}, {"model": "template.logicnode", "pk": 1612, "fields": {"state_transition": 385, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1613, "fields": {"state_transition": 386, "node_type": "N", "subcondition": null, "parent": 1617}}, {"model": "template.logicnode", "pk": 1614, "fields": {"state_transition": 386, "node_type": "S", "subcondition": 23, "parent": 1613}}, {"model": "template.logicnode", "pk": 1615, "fields": {"state_transition": 386, "node_type": "S", "subcondition": 6, "parent": 1617}}, {"model": "template.logicnode", "pk": 1616, "fields": {"state_transition": 386, "node_type": "S", "subcondition": 20, "parent": 1617}}, {"model": "template.logicnode", "pk": 1617, "fields": {"state_transition": 386, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1618, "fields": {"state_transition": 387, "node_type": "N", "subcondition": null, "parent": 1622}}, {"model": "template.logicnode", "pk": 1619, "fields": {"state_transition": 387, "node_type": "S", "subcondition": 23, "parent": 1618}}, {"model": "template.logicnode", "pk": 1620, "fields": {"state_transition": 387, "node_type": "S", "subcondition": 6, "parent": 1622}}, {"model": "template.logicnode", "pk": 1621, "fields": {"state_transition": 387, "node_type": "S", "subcondition": 21, "parent": 1622}}, {"model": "template.logicnode", "pk": 1622, "fields": {"state_transition": 387, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1623, "fields": {"state_transition": 388, "node_type": "N", "subcondition": null, "parent": 1627}}, {"model": "template.logicnode", "pk": 1624, "fields": {"state_transition": 388, "node_type": "S", "subcondition": 23, "parent": 1623}}, {"model": "template.logicnode", "pk": 1625, "fields": {"state_transition": 388, "node_type": "S", "subcondition": 6, "parent": 1627}}, {"model": "template.logicnode", "pk": 1626, "fields": {"state_transition": 388, "node_type": "S", "subcondition": 22, "parent": 1627}}, {"model": "template.logicnode", "pk": 1627, "fields": {"state_transition": 388, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1628, "fields": {"state_transition": 389, "node_type": "S", "subcondition": 23, "parent": 1631}}, {"model": "template.logicnode", "pk": 1629, "fields": {"state_transition": 389, "node_type": "S", "subcondition": 3, "parent": 1631}}, {"model": "template.logicnode", "pk": 1630, "fields": {"state_transition": 389, "node_type": "S", "subcondition": 19, "parent": 1631}}, {"model": "template.logicnode", "pk": 1631, "fields": {"state_transition": 389, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1632, "fields": {"state_transition": 390, "node_type": "S", "subcondition": 23, "parent": 1635}}, {"model": "template.logicnode", "pk": 1633, "fields": {"state_transition": 390, "node_type": "S", "subcondition": 3, "parent": 1635}}, {"model": "template.logicnode", "pk": 1634, "fields": {"state_transition": 390, "node_type": "S", "subcondition": 20, "parent": 1635}}, {"model": "template.logicnode", "pk": 1635, "fields": {"state_transition": 390, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1636, "fields": {"state_transition": 391, "node_type": "S", "subcondition": 23, "parent": 1639}}, {"model": "template.logicnode", "pk": 1637, "fields": {"state_transition": 391, "node_type": "S", "subcondition": 3, "parent": 1639}}, {"model": "template.logicnode", "pk": 1638, "fields": {"state_transition": 391, "node_type": "S", "subcondition": 21, "parent": 1639}}, {"model": "template.logicnode", "pk": 1639, "fields": {"state_transition": 391, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1640, "fields": {"state_transition": 392, "node_type": "S", "subcondition": 23, "parent": 1643}}, {"model": "template.logicnode", "pk": 1641, "fields": {"state_transition": 392, "node_type": "S", "subcondition": 3, "parent": 1643}}, {"model": "template.logicnode", "pk": 1642, "fields": {"state_transition": 392, "node_type": "S", "subcondition": 22, "parent": 1643}}, {"model": "template.logicnode", "pk": 1643, "fields": {"state_transition": 392, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1644, "fields": {"state_transition": 393, "node_type": "S", "subcondition": 23, "parent": 1647}}, {"model": "template.logicnode", "pk": 1645, "fields": {"state_transition": 393, "node_type": "S", "subcondition": 4, "parent": 1647}}, {"model": "template.logicnode", "pk": 1646, "fields": {"state_transition": 393, "node_type": "S", "subcondition": 19, "parent": 1647}}, {"model": "template.logicnode", "pk": 1647, "fields": {"state_transition": 393, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1648, "fields": {"state_transition": 394, "node_type": "S", "subcondition": 23, "parent": 1651}}, {"model": "template.logicnode", "pk": 1649, "fields": {"state_transition": 394, "node_type": "S", "subcondition": 4, "parent": 1651}}, {"model": "template.logicnode", "pk": 1650, "fields": {"state_transition": 394, "node_type": "S", "subcondition": 20, "parent": 1651}}, {"model": "template.logicnode", "pk": 1651, "fields": {"state_transition": 394, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1652, "fields": {"state_transition": 395, "node_type": "S", "subcondition": 23, "parent": 1655}}, {"model": "template.logicnode", "pk": 1653, "fields": {"state_transition": 395, "node_type": "S", "subcondition": 4, "parent": 1655}}, {"model": "template.logicnode", "pk": 1654, "fields": {"state_transition": 395, "node_type": "S", "subcondition": 21, "parent": 1655}}, {"model": "template.logicnode", "pk": 1655, "fields": {"state_transition": 395, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1656, "fields": {"state_transition": 396, "node_type": "S", "subcondition": 23, "parent": 1659}}, {"model": "template.logicnode", "pk": 1657, "fields": {"state_transition": 396, "node_type": "S", "subcondition": 4, "parent": 1659}}, {"model": "template.logicnode", "pk": 1658, "fields": {"state_transition": 396, "node_type": "S", "subcondition": 22, "parent": 1659}}, {"model": "template.logicnode", "pk": 1659, "fields": {"state_transition": 396, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1660, "fields": {"state_transition": 397, "node_type": "S", "subcondition": 23, "parent": 1663}}, {"model": "template.logicnode", "pk": 1661, "fields": {"state_transition": 397, "node_type": "S", "subcondition": 5, "parent": 1663}}, {"model": "template.logicnode", "pk": 1662, "fields": {"state_transition": 397, "node_type": "S", "subcondition": 19, "parent": 1663}}, {"model": "template.logicnode", "pk": 1663, "fields": {"state_transition": 397, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1664, "fields": {"state_transition": 398, "node_type": "S", "subcondition": 23, "parent": 1667}}, {"model": "template.logicnode", "pk": 1665, "fields": {"state_transition": 398, "node_type": "S", "subcondition": 5, "parent": 1667}}, {"model": "template.logicnode", "pk": 1666, "fields": {"state_transition": 398, "node_type": "S", "subcondition": 20, "parent": 1667}}, {"model": "template.logicnode", "pk": 1667, "fields": {"state_transition": 398, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1668, "fields": {"state_transition": 399, "node_type": "S", "subcondition": 23, "parent": 1671}}, {"model": "template.logicnode", "pk": 1669, "fields": {"state_transition": 399, "node_type": "S", "subcondition": 5, "parent": 1671}}, {"model": "template.logicnode", "pk": 1670, "fields": {"state_transition": 399, "node_type": "S", "subcondition": 21, "parent": 1671}}, {"model": "template.logicnode", "pk": 1671, "fields": {"state_transition": 399, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1672, "fields": {"state_transition": 400, "node_type": "S", "subcondition": 23, "parent": 1675}}, {"model": "template.logicnode", "pk": 1673, "fields": {"state_transition": 400, "node_type": "S", "subcondition": 5, "parent": 1675}}, {"model": "template.logicnode", "pk": 1674, "fields": {"state_transition": 400, "node_type": "S", "subcondition": 22, "parent": 1675}}, {"model": "template.logicnode", "pk": 1675, "fields": {"state_transition": 400, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1676, "fields": {"state_transition": 401, "node_type": "S", "subcondition": 23, "parent": 1679}}, {"model": "template.logicnode", "pk": 1677, "fields": {"state_transition": 401, "node_type": "S", "subcondition": 6, "parent": 1679}}, {"model": "template.logicnode", "pk": 1678, "fields": {"state_transition": 401, "node_type": "S", "subcondition": 19, "parent": 1679}}, {"model": "template.logicnode", "pk": 1679, "fields": {"state_transition": 401, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1680, "fields": {"state_transition": 402, "node_type": "S", "subcondition": 23, "parent": 1683}}, {"model": "template.logicnode", "pk": 1681, "fields": {"state_transition": 402, "node_type": "S", "subcondition": 6, "parent": 1683}}, {"model": "template.logicnode", "pk": 1682, "fields": {"state_transition": 402, "node_type": "S", "subcondition": 20, "parent": 1683}}, {"model": "template.logicnode", "pk": 1683, "fields": {"state_transition": 402, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1684, "fields": {"state_transition": 403, "node_type": "S", "subcondition": 23, "parent": 1687}}, {"model": "template.logicnode", "pk": 1685, "fields": {"state_transition": 403, "node_type": "S", "subcondition": 6, "parent": 1687}}, {"model": "template.logicnode", "pk": 1686, "fields": {"state_transition": 403, "node_type": "S", "subcondition": 21, "parent": 1687}}, {"model": "template.logicnode", "pk": 1687, "fields": {"state_transition": 403, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1688, "fields": {"state_transition": 404, "node_type": "S", "subcondition": 23, "parent": 1691}}, {"model": "template.logicnode", "pk": 1689, "fields": {"state_transition": 404, "node_type": "S", "subcondition": 6, "parent": 1691}}, {"model": "template.logicnode", "pk": 1690, "fields": {"state_transition": 404, "node_type": "S", "subcondition": 22, "parent": 1691}}, {"model": "template.logicnode", "pk": 1691, "fields": {"state_transition": 404, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1692, "fields": {"state_transition": 405, "node_type": "N", "subcondition": null, "parent": 1696}}, {"model": "template.logicnode", "pk": 1693, "fields": {"state_transition": 405, "node_type": "S", "subcondition": 23, "parent": 1692}}, {"model": "template.logicnode", "pk": 1694, "fields": {"state_transition": 405, "node_type": "S", "subcondition": 3, "parent": 1696}}, {"model": "template.logicnode", "pk": 1695, "fields": {"state_transition": 405, "node_type": "S", "subcondition": 19, "parent": 1696}}, {"model": "template.logicnode", "pk": 1696, "fields": {"state_transition": 405, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1697, "fields": {"state_transition": 406, "node_type": "N", "subcondition": null, "parent": 1701}}, {"model": "template.logicnode", "pk": 1698, "fields": {"state_transition": 406, "node_type": "S", "subcondition": 23, "parent": 1697}}, {"model": "template.logicnode", "pk": 1699, "fields": {"state_transition": 406, "node_type": "S", "subcondition": 3, "parent": 1701}}, {"model": "template.logicnode", "pk": 1700, "fields": {"state_transition": 406, "node_type": "S", "subcondition": 20, "parent": 1701}}, {"model": "template.logicnode", "pk": 1701, "fields": {"state_transition": 406, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1702, "fields": {"state_transition": 407, "node_type": "N", "subcondition": null, "parent": 1706}}, {"model": "template.logicnode", "pk": 1703, "fields": {"state_transition": 407, "node_type": "S", "subcondition": 23, "parent": 1702}}, {"model": "template.logicnode", "pk": 1704, "fields": {"state_transition": 407, "node_type": "S", "subcondition": 3, "parent": 1706}}, {"model": "template.logicnode", "pk": 1705, "fields": {"state_transition": 407, "node_type": "S", "subcondition": 21, "parent": 1706}}, {"model": "template.logicnode", "pk": 1706, "fields": {"state_transition": 407, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1707, "fields": {"state_transition": 408, "node_type": "N", "subcondition": null, "parent": 1711}}, {"model": "template.logicnode", "pk": 1708, "fields": {"state_transition": 408, "node_type": "S", "subcondition": 23, "parent": 1707}}, {"model": "template.logicnode", "pk": 1709, "fields": {"state_transition": 408, "node_type": "S", "subcondition": 3, "parent": 1711}}, {"model": "template.logicnode", "pk": 1710, "fields": {"state_transition": 408, "node_type": "S", "subcondition": 22, "parent": 1711}}, {"model": "template.logicnode", "pk": 1711, "fields": {"state_transition": 408, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1712, "fields": {"state_transition": 409, "node_type": "N", "subcondition": null, "parent": 1716}}, {"model": "template.logicnode", "pk": 1713, "fields": {"state_transition": 409, "node_type": "S", "subcondition": 23, "parent": 1712}}, {"model": "template.logicnode", "pk": 1714, "fields": {"state_transition": 409, "node_type": "S", "subcondition": 4, "parent": 1716}}, {"model": "template.logicnode", "pk": 1715, "fields": {"state_transition": 409, "node_type": "S", "subcondition": 19, "parent": 1716}}, {"model": "template.logicnode", "pk": 1716, "fields": {"state_transition": 409, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1717, "fields": {"state_transition": 410, "node_type": "N", "subcondition": null, "parent": 1721}}, {"model": "template.logicnode", "pk": 1718, "fields": {"state_transition": 410, "node_type": "S", "subcondition": 23, "parent": 1717}}, {"model": "template.logicnode", "pk": 1719, "fields": {"state_transition": 410, "node_type": "S", "subcondition": 4, "parent": 1721}}, {"model": "template.logicnode", "pk": 1720, "fields": {"state_transition": 410, "node_type": "S", "subcondition": 20, "parent": 1721}}, {"model": "template.logicnode", "pk": 1721, "fields": {"state_transition": 410, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1722, "fields": {"state_transition": 411, "node_type": "N", "subcondition": null, "parent": 1726}}, {"model": "template.logicnode", "pk": 1723, "fields": {"state_transition": 411, "node_type": "S", "subcondition": 23, "parent": 1722}}, {"model": "template.logicnode", "pk": 1724, "fields": {"state_transition": 411, "node_type": "S", "subcondition": 4, "parent": 1726}}, {"model": "template.logicnode", "pk": 1725, "fields": {"state_transition": 411, "node_type": "S", "subcondition": 21, "parent": 1726}}, {"model": "template.logicnode", "pk": 1726, "fields": {"state_transition": 411, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1727, "fields": {"state_transition": 412, "node_type": "N", "subcondition": null, "parent": 1731}}, {"model": "template.logicnode", "pk": 1728, "fields": {"state_transition": 412, "node_type": "S", "subcondition": 23, "parent": 1727}}, {"model": "template.logicnode", "pk": 1729, "fields": {"state_transition": 412, "node_type": "S", "subcondition": 4, "parent": 1731}}, {"model": "template.logicnode", "pk": 1730, "fields": {"state_transition": 412, "node_type": "S", "subcondition": 22, "parent": 1731}}, {"model": "template.logicnode", "pk": 1731, "fields": {"state_transition": 412, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1732, "fields": {"state_transition": 413, "node_type": "N", "subcondition": null, "parent": 1736}}, {"model": "template.logicnode", "pk": 1733, "fields": {"state_transition": 413, "node_type": "S", "subcondition": 23, "parent": 1732}}, {"model": "template.logicnode", "pk": 1734, "fields": {"state_transition": 413, "node_type": "S", "subcondition": 5, "parent": 1736}}, {"model": "template.logicnode", "pk": 1735, "fields": {"state_transition": 413, "node_type": "S", "subcondition": 19, "parent": 1736}}, {"model": "template.logicnode", "pk": 1736, "fields": {"state_transition": 413, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1737, "fields": {"state_transition": 414, "node_type": "N", "subcondition": null, "parent": 1741}}, {"model": "template.logicnode", "pk": 1738, "fields": {"state_transition": 414, "node_type": "S", "subcondition": 23, "parent": 1737}}, {"model": "template.logicnode", "pk": 1739, "fields": {"state_transition": 414, "node_type": "S", "subcondition": 5, "parent": 1741}}, {"model": "template.logicnode", "pk": 1740, "fields": {"state_transition": 414, "node_type": "S", "subcondition": 20, "parent": 1741}}, {"model": "template.logicnode", "pk": 1741, "fields": {"state_transition": 414, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1742, "fields": {"state_transition": 415, "node_type": "N", "subcondition": null, "parent": 1746}}, {"model": "template.logicnode", "pk": 1743, "fields": {"state_transition": 415, "node_type": "S", "subcondition": 23, "parent": 1742}}, {"model": "template.logicnode", "pk": 1744, "fields": {"state_transition": 415, "node_type": "S", "subcondition": 5, "parent": 1746}}, {"model": "template.logicnode", "pk": 1745, "fields": {"state_transition": 415, "node_type": "S", "subcondition": 21, "parent": 1746}}, {"model": "template.logicnode", "pk": 1746, "fields": {"state_transition": 415, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1747, "fields": {"state_transition": 416, "node_type": "N", "subcondition": null, "parent": 1751}}, {"model": "template.logicnode", "pk": 1748, "fields": {"state_transition": 416, "node_type": "S", "subcondition": 23, "parent": 1747}}, {"model": "template.logicnode", "pk": 1749, "fields": {"state_transition": 416, "node_type": "S", "subcondition": 5, "parent": 1751}}, {"model": "template.logicnode", "pk": 1750, "fields": {"state_transition": 416, "node_type": "S", "subcondition": 22, "parent": 1751}}, {"model": "template.logicnode", "pk": 1751, "fields": {"state_transition": 416, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1752, "fields": {"state_transition": 417, "node_type": "N", "subcondition": null, "parent": 1756}}, {"model": "template.logicnode", "pk": 1753, "fields": {"state_transition": 417, "node_type": "S", "subcondition": 23, "parent": 1752}}, {"model": "template.logicnode", "pk": 1754, "fields": {"state_transition": 417, "node_type": "S", "subcondition": 6, "parent": 1756}}, {"model": "template.logicnode", "pk": 1755, "fields": {"state_transition": 417, "node_type": "S", "subcondition": 19, "parent": 1756}}, {"model": "template.logicnode", "pk": 1756, "fields": {"state_transition": 417, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1757, "fields": {"state_transition": 418, "node_type": "N", "subcondition": null, "parent": 1761}}, {"model": "template.logicnode", "pk": 1758, "fields": {"state_transition": 418, "node_type": "S", "subcondition": 23, "parent": 1757}}, {"model": "template.logicnode", "pk": 1759, "fields": {"state_transition": 418, "node_type": "S", "subcondition": 6, "parent": 1761}}, {"model": "template.logicnode", "pk": 1760, "fields": {"state_transition": 418, "node_type": "S", "subcondition": 20, "parent": 1761}}, {"model": "template.logicnode", "pk": 1761, "fields": {"state_transition": 418, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1762, "fields": {"state_transition": 419, "node_type": "N", "subcondition": null, "parent": 1766}}, {"model": "template.logicnode", "pk": 1763, "fields": {"state_transition": 419, "node_type": "S", "subcondition": 23, "parent": 1762}}, {"model": "template.logicnode", "pk": 1764, "fields": {"state_transition": 419, "node_type": "S", "subcondition": 6, "parent": 1766}}, {"model": "template.logicnode", "pk": 1765, "fields": {"state_transition": 419, "node_type": "S", "subcondition": 21, "parent": 1766}}, {"model": "template.logicnode", "pk": 1766, "fields": {"state_transition": 419, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1767, "fields": {"state_transition": 420, "node_type": "N", "subcondition": null, "parent": 1771}}, {"model": "template.logicnode", "pk": 1768, "fields": {"state_transition": 420, "node_type": "S", "subcondition": 23, "parent": 1767}}, {"model": "template.logicnode", "pk": 1769, "fields": {"state_transition": 420, "node_type": "S", "subcondition": 6, "parent": 1771}}, {"model": "template.logicnode", "pk": 1770, "fields": {"state_transition": 420, "node_type": "S", "subcondition": 22, "parent": 1771}}, {"model": "template.logicnode", "pk": 1771, "fields": {"state_transition": 420, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1772, "fields": {"state_transition": 421, "node_type": "S", "subcondition": 23, "parent": 1775}}, {"model": "template.logicnode", "pk": 1773, "fields": {"state_transition": 421, "node_type": "S", "subcondition": 3, "parent": 1775}}, {"model": "template.logicnode", "pk": 1774, "fields": {"state_transition": 421, "node_type": "S", "subcondition": 19, "parent": 1775}}, {"model": "template.logicnode", "pk": 1775, "fields": {"state_transition": 421, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1776, "fields": {"state_transition": 422, "node_type": "S", "subcondition": 23, "parent": 1779}}, {"model": "template.logicnode", "pk": 1777, "fields": {"state_transition": 422, "node_type": "S", "subcondition": 3, "parent": 1779}}, {"model": "template.logicnode", "pk": 1778, "fields": {"state_transition": 422, "node_type": "S", "subcondition": 20, "parent": 1779}}, {"model": "template.logicnode", "pk": 1779, "fields": {"state_transition": 422, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1780, "fields": {"state_transition": 423, "node_type": "S", "subcondition": 23, "parent": 1783}}, {"model": "template.logicnode", "pk": 1781, "fields": {"state_transition": 423, "node_type": "S", "subcondition": 3, "parent": 1783}}, {"model": "template.logicnode", "pk": 1782, "fields": {"state_transition": 423, "node_type": "S", "subcondition": 21, "parent": 1783}}, {"model": "template.logicnode", "pk": 1783, "fields": {"state_transition": 423, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1784, "fields": {"state_transition": 424, "node_type": "S", "subcondition": 23, "parent": 1787}}, {"model": "template.logicnode", "pk": 1785, "fields": {"state_transition": 424, "node_type": "S", "subcondition": 3, "parent": 1787}}, {"model": "template.logicnode", "pk": 1786, "fields": {"state_transition": 424, "node_type": "S", "subcondition": 22, "parent": 1787}}, {"model": "template.logicnode", "pk": 1787, "fields": {"state_transition": 424, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1788, "fields": {"state_transition": 425, "node_type": "S", "subcondition": 23, "parent": 1791}}, {"model": "template.logicnode", "pk": 1789, "fields": {"state_transition": 425, "node_type": "S", "subcondition": 4, "parent": 1791}}, {"model": "template.logicnode", "pk": 1790, "fields": {"state_transition": 425, "node_type": "S", "subcondition": 19, "parent": 1791}}, {"model": "template.logicnode", "pk": 1791, "fields": {"state_transition": 425, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1792, "fields": {"state_transition": 426, "node_type": "S", "subcondition": 23, "parent": 1795}}, {"model": "template.logicnode", "pk": 1793, "fields": {"state_transition": 426, "node_type": "S", "subcondition": 4, "parent": 1795}}, {"model": "template.logicnode", "pk": 1794, "fields": {"state_transition": 426, "node_type": "S", "subcondition": 20, "parent": 1795}}, {"model": "template.logicnode", "pk": 1795, "fields": {"state_transition": 426, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1796, "fields": {"state_transition": 427, "node_type": "S", "subcondition": 23, "parent": 1799}}, {"model": "template.logicnode", "pk": 1797, "fields": {"state_transition": 427, "node_type": "S", "subcondition": 4, "parent": 1799}}, {"model": "template.logicnode", "pk": 1798, "fields": {"state_transition": 427, "node_type": "S", "subcondition": 21, "parent": 1799}}, {"model": "template.logicnode", "pk": 1799, "fields": {"state_transition": 427, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1800, "fields": {"state_transition": 428, "node_type": "S", "subcondition": 23, "parent": 1803}}, {"model": "template.logicnode", "pk": 1801, "fields": {"state_transition": 428, "node_type": "S", "subcondition": 4, "parent": 1803}}, {"model": "template.logicnode", "pk": 1802, "fields": {"state_transition": 428, "node_type": "S", "subcondition": 22, "parent": 1803}}, {"model": "template.logicnode", "pk": 1803, "fields": {"state_transition": 428, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1804, "fields": {"state_transition": 429, "node_type": "S", "subcondition": 23, "parent": 1807}}, {"model": "template.logicnode", "pk": 1805, "fields": {"state_transition": 429, "node_type": "S", "subcondition": 5, "parent": 1807}}, {"model": "template.logicnode", "pk": 1806, "fields": {"state_transition": 429, "node_type": "S", "subcondition": 19, "parent": 1807}}, {"model": "template.logicnode", "pk": 1807, "fields": {"state_transition": 429, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1808, "fields": {"state_transition": 430, "node_type": "S", "subcondition": 23, "parent": 1811}}, {"model": "template.logicnode", "pk": 1809, "fields": {"state_transition": 430, "node_type": "S", "subcondition": 5, "parent": 1811}}, {"model": "template.logicnode", "pk": 1810, "fields": {"state_transition": 430, "node_type": "S", "subcondition": 20, "parent": 1811}}, {"model": "template.logicnode", "pk": 1811, "fields": {"state_transition": 430, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1812, "fields": {"state_transition": 431, "node_type": "S", "subcondition": 23, "parent": 1815}}, {"model": "template.logicnode", "pk": 1813, "fields": {"state_transition": 431, "node_type": "S", "subcondition": 5, "parent": 1815}}, {"model": "template.logicnode", "pk": 1814, "fields": {"state_transition": 431, "node_type": "S", "subcondition": 21, "parent": 1815}}, {"model": "template.logicnode", "pk": 1815, "fields": {"state_transition": 431, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1816, "fields": {"state_transition": 432, "node_type": "S", "subcondition": 23, "parent": 1819}}, {"model": "template.logicnode", "pk": 1817, "fields": {"state_transition": 432, "node_type": "S", "subcondition": 5, "parent": 1819}}, {"model": "template.logicnode", "pk": 1818, "fields": {"state_transition": 432, "node_type": "S", "subcondition": 22, "parent": 1819}}, {"model": "template.logicnode", "pk": 1819, "fields": {"state_transition": 432, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1820, "fields": {"state_transition": 433, "node_type": "S", "subcondition": 23, "parent": 1823}}, {"model": "template.logicnode", "pk": 1821, "fields": {"state_transition": 433, "node_type": "S", "subcondition": 6, "parent": 1823}}, {"model": "template.logicnode", "pk": 1822, "fields": {"state_transition": 433, "node_type": "S", "subcondition": 19, "parent": 1823}}, {"model": "template.logicnode", "pk": 1823, "fields": {"state_transition": 433, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1824, "fields": {"state_transition": 434, "node_type": "S", "subcondition": 23, "parent": 1827}}, {"model": "template.logicnode", "pk": 1825, "fields": {"state_transition": 434, "node_type": "S", "subcondition": 6, "parent": 1827}}, {"model": "template.logicnode", "pk": 1826, "fields": {"state_transition": 434, "node_type": "S", "subcondition": 20, "parent": 1827}}, {"model": "template.logicnode", "pk": 1827, "fields": {"state_transition": 434, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1828, "fields": {"state_transition": 435, "node_type": "S", "subcondition": 23, "parent": 1831}}, {"model": "template.logicnode", "pk": 1829, "fields": {"state_transition": 435, "node_type": "S", "subcondition": 6, "parent": 1831}}, {"model": "template.logicnode", "pk": 1830, "fields": {"state_transition": 435, "node_type": "S", "subcondition": 21, "parent": 1831}}, {"model": "template.logicnode", "pk": 1831, "fields": {"state_transition": 435, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1832, "fields": {"state_transition": 436, "node_type": "S", "subcondition": 23, "parent": 1835}}, {"model": "template.logicnode", "pk": 1833, "fields": {"state_transition": 436, "node_type": "S", "subcondition": 6, "parent": 1835}}, {"model": "template.logicnode", "pk": 1834, "fields": {"state_transition": 436, "node_type": "S", "subcondition": 22, "parent": 1835}}, {"model": "template.logicnode", "pk": 1835, "fields": {"state_transition": 436, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1836, "fields": {"state_transition": 437, "node_type": "N", "subcondition": null, "parent": 1840}}, {"model": "template.logicnode", "pk": 1837, "fields": {"state_transition": 437, "node_type": "S", "subcondition": 23, "parent": 1836}}, {"model": "template.logicnode", "pk": 1838, "fields": {"state_transition": 437, "node_type": "S", "subcondition": 3, "parent": 1840}}, {"model": "template.logicnode", "pk": 1839, "fields": {"state_transition": 437, "node_type": "S", "subcondition": 19, "parent": 1840}}, {"model": "template.logicnode", "pk": 1840, "fields": {"state_transition": 437, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1841, "fields": {"state_transition": 438, "node_type": "N", "subcondition": null, "parent": 1845}}, {"model": "template.logicnode", "pk": 1842, "fields": {"state_transition": 438, "node_type": "S", "subcondition": 23, "parent": 1841}}, {"model": "template.logicnode", "pk": 1843, "fields": {"state_transition": 438, "node_type": "S", "subcondition": 3, "parent": 1845}}, {"model": "template.logicnode", "pk": 1844, "fields": {"state_transition": 438, "node_type": "S", "subcondition": 20, "parent": 1845}}, {"model": "template.logicnode", "pk": 1845, "fields": {"state_transition": 438, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1846, "fields": {"state_transition": 439, "node_type": "N", "subcondition": null, "parent": 1850}}, {"model": "template.logicnode", "pk": 1847, "fields": {"state_transition": 439, "node_type": "S", "subcondition": 23, "parent": 1846}}, {"model": "template.logicnode", "pk": 1848, "fields": {"state_transition": 439, "node_type": "S", "subcondition": 3, "parent": 1850}}, {"model": "template.logicnode", "pk": 1849, "fields": {"state_transition": 439, "node_type": "S", "subcondition": 21, "parent": 1850}}, {"model": "template.logicnode", "pk": 1850, "fields": {"state_transition": 439, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1851, "fields": {"state_transition": 440, "node_type": "N", "subcondition": null, "parent": 1855}}, {"model": "template.logicnode", "pk": 1852, "fields": {"state_transition": 440, "node_type": "S", "subcondition": 23, "parent": 1851}}, {"model": "template.logicnode", "pk": 1853, "fields": {"state_transition": 440, "node_type": "S", "subcondition": 3, "parent": 1855}}, {"model": "template.logicnode", "pk": 1854, "fields": {"state_transition": 440, "node_type": "S", "subcondition": 22, "parent": 1855}}, {"model": "template.logicnode", "pk": 1855, "fields": {"state_transition": 440, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1856, "fields": {"state_transition": 441, "node_type": "N", "subcondition": null, "parent": 1860}}, {"model": "template.logicnode", "pk": 1857, "fields": {"state_transition": 441, "node_type": "S", "subcondition": 23, "parent": 1856}}, {"model": "template.logicnode", "pk": 1858, "fields": {"state_transition": 441, "node_type": "S", "subcondition": 4, "parent": 1860}}, {"model": "template.logicnode", "pk": 1859, "fields": {"state_transition": 441, "node_type": "S", "subcondition": 19, "parent": 1860}}, {"model": "template.logicnode", "pk": 1860, "fields": {"state_transition": 441, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1861, "fields": {"state_transition": 442, "node_type": "N", "subcondition": null, "parent": 1865}}, {"model": "template.logicnode", "pk": 1862, "fields": {"state_transition": 442, "node_type": "S", "subcondition": 23, "parent": 1861}}, {"model": "template.logicnode", "pk": 1863, "fields": {"state_transition": 442, "node_type": "S", "subcondition": 4, "parent": 1865}}, {"model": "template.logicnode", "pk": 1864, "fields": {"state_transition": 442, "node_type": "S", "subcondition": 20, "parent": 1865}}, {"model": "template.logicnode", "pk": 1865, "fields": {"state_transition": 442, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1866, "fields": {"state_transition": 443, "node_type": "N", "subcondition": null, "parent": 1870}}, {"model": "template.logicnode", "pk": 1867, "fields": {"state_transition": 443, "node_type": "S", "subcondition": 23, "parent": 1866}}, {"model": "template.logicnode", "pk": 1868, "fields": {"state_transition": 443, "node_type": "S", "subcondition": 4, "parent": 1870}}, {"model": "template.logicnode", "pk": 1869, "fields": {"state_transition": 443, "node_type": "S", "subcondition": 21, "parent": 1870}}, {"model": "template.logicnode", "pk": 1870, "fields": {"state_transition": 443, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1871, "fields": {"state_transition": 444, "node_type": "N", "subcondition": null, "parent": 1875}}, {"model": "template.logicnode", "pk": 1872, "fields": {"state_transition": 444, "node_type": "S", "subcondition": 23, "parent": 1871}}, {"model": "template.logicnode", "pk": 1873, "fields": {"state_transition": 444, "node_type": "S", "subcondition": 4, "parent": 1875}}, {"model": "template.logicnode", "pk": 1874, "fields": {"state_transition": 444, "node_type": "S", "subcondition": 22, "parent": 1875}}, {"model": "template.logicnode", "pk": 1875, "fields": {"state_transition": 444, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1876, "fields": {"state_transition": 445, "node_type": "N", "subcondition": null, "parent": 1880}}, {"model": "template.logicnode", "pk": 1877, "fields": {"state_transition": 445, "node_type": "S", "subcondition": 23, "parent": 1876}}, {"model": "template.logicnode", "pk": 1878, "fields": {"state_transition": 445, "node_type": "S", "subcondition": 5, "parent": 1880}}, {"model": "template.logicnode", "pk": 1879, "fields": {"state_transition": 445, "node_type": "S", "subcondition": 19, "parent": 1880}}, {"model": "template.logicnode", "pk": 1880, "fields": {"state_transition": 445, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1881, "fields": {"state_transition": 446, "node_type": "N", "subcondition": null, "parent": 1885}}, {"model": "template.logicnode", "pk": 1882, "fields": {"state_transition": 446, "node_type": "S", "subcondition": 23, "parent": 1881}}, {"model": "template.logicnode", "pk": 1883, "fields": {"state_transition": 446, "node_type": "S", "subcondition": 5, "parent": 1885}}, {"model": "template.logicnode", "pk": 1884, "fields": {"state_transition": 446, "node_type": "S", "subcondition": 20, "parent": 1885}}, {"model": "template.logicnode", "pk": 1885, "fields": {"state_transition": 446, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1886, "fields": {"state_transition": 447, "node_type": "N", "subcondition": null, "parent": 1890}}, {"model": "template.logicnode", "pk": 1887, "fields": {"state_transition": 447, "node_type": "S", "subcondition": 23, "parent": 1886}}, {"model": "template.logicnode", "pk": 1888, "fields": {"state_transition": 447, "node_type": "S", "subcondition": 5, "parent": 1890}}, {"model": "template.logicnode", "pk": 1889, "fields": {"state_transition": 447, "node_type": "S", "subcondition": 21, "parent": 1890}}, {"model": "template.logicnode", "pk": 1890, "fields": {"state_transition": 447, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1891, "fields": {"state_transition": 448, "node_type": "N", "subcondition": null, "parent": 1895}}, {"model": "template.logicnode", "pk": 1892, "fields": {"state_transition": 448, "node_type": "S", "subcondition": 23, "parent": 1891}}, {"model": "template.logicnode", "pk": 1893, "fields": {"state_transition": 448, "node_type": "S", "subcondition": 5, "parent": 1895}}, {"model": "template.logicnode", "pk": 1894, "fields": {"state_transition": 448, "node_type": "S", "subcondition": 22, "parent": 1895}}, {"model": "template.logicnode", "pk": 1895, "fields": {"state_transition": 448, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1896, "fields": {"state_transition": 449, "node_type": "N", "subcondition": null, "parent": 1900}}, {"model": "template.logicnode", "pk": 1897, "fields": {"state_transition": 449, "node_type": "S", "subcondition": 23, "parent": 1896}}, {"model": "template.logicnode", "pk": 1898, "fields": {"state_transition": 449, "node_type": "S", "subcondition": 6, "parent": 1900}}, {"model": "template.logicnode", "pk": 1899, "fields": {"state_transition": 449, "node_type": "S", "subcondition": 19, "parent": 1900}}, {"model": "template.logicnode", "pk": 1900, "fields": {"state_transition": 449, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1901, "fields": {"state_transition": 450, "node_type": "N", "subcondition": null, "parent": 1905}}, {"model": "template.logicnode", "pk": 1902, "fields": {"state_transition": 450, "node_type": "S", "subcondition": 23, "parent": 1901}}, {"model": "template.logicnode", "pk": 1903, "fields": {"state_transition": 450, "node_type": "S", "subcondition": 6, "parent": 1905}}, {"model": "template.logicnode", "pk": 1904, "fields": {"state_transition": 450, "node_type": "S", "subcondition": 20, "parent": 1905}}, {"model": "template.logicnode", "pk": 1905, "fields": {"state_transition": 450, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1906, "fields": {"state_transition": 451, "node_type": "N", "subcondition": null, "parent": 1910}}, {"model": "template.logicnode", "pk": 1907, "fields": {"state_transition": 451, "node_type": "S", "subcondition": 23, "parent": 1906}}, {"model": "template.logicnode", "pk": 1908, "fields": {"state_transition": 451, "node_type": "S", "subcondition": 6, "parent": 1910}}, {"model": "template.logicnode", "pk": 1909, "fields": {"state_transition": 451, "node_type": "S", "subcondition": 21, "parent": 1910}}, {"model": "template.logicnode", "pk": 1910, "fields": {"state_transition": 451, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1911, "fields": {"state_transition": 452, "node_type": "N", "subcondition": null, "parent": 1915}}, {"model": "template.logicnode", "pk": 1912, "fields": {"state_transition": 452, "node_type": "S", "subcondition": 23, "parent": 1911}}, {"model": "template.logicnode", "pk": 1913, "fields": {"state_transition": 452, "node_type": "S", "subcondition": 6, "parent": 1915}}, {"model": "template.logicnode", "pk": 1914, "fields": {"state_transition": 452, "node_type": "S", "subcondition": 22, "parent": 1915}}, {"model": "template.logicnode", "pk": 1915, "fields": {"state_transition": 452, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1916, "fields": {"state_transition": 453, "node_type": "S", "subcondition": 23, "parent": 1919}}, {"model": "template.logicnode", "pk": 1917, "fields": {"state_transition": 453, "node_type": "S", "subcondition": 3, "parent": 1919}}, {"model": "template.logicnode", "pk": 1918, "fields": {"state_transition": 453, "node_type": "S", "subcondition": 19, "parent": 1919}}, {"model": "template.logicnode", "pk": 1919, "fields": {"state_transition": 453, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1920, "fields": {"state_transition": 454, "node_type": "S", "subcondition": 23, "parent": 1923}}, {"model": "template.logicnode", "pk": 1921, "fields": {"state_transition": 454, "node_type": "S", "subcondition": 3, "parent": 1923}}, {"model": "template.logicnode", "pk": 1922, "fields": {"state_transition": 454, "node_type": "S", "subcondition": 20, "parent": 1923}}, {"model": "template.logicnode", "pk": 1923, "fields": {"state_transition": 454, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1924, "fields": {"state_transition": 455, "node_type": "S", "subcondition": 23, "parent": 1927}}, {"model": "template.logicnode", "pk": 1925, "fields": {"state_transition": 455, "node_type": "S", "subcondition": 3, "parent": 1927}}, {"model": "template.logicnode", "pk": 1926, "fields": {"state_transition": 455, "node_type": "S", "subcondition": 21, "parent": 1927}}, {"model": "template.logicnode", "pk": 1927, "fields": {"state_transition": 455, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1928, "fields": {"state_transition": 456, "node_type": "S", "subcondition": 23, "parent": 1931}}, {"model": "template.logicnode", "pk": 1929, "fields": {"state_transition": 456, "node_type": "S", "subcondition": 3, "parent": 1931}}, {"model": "template.logicnode", "pk": 1930, "fields": {"state_transition": 456, "node_type": "S", "subcondition": 22, "parent": 1931}}, {"model": "template.logicnode", "pk": 1931, "fields": {"state_transition": 456, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1932, "fields": {"state_transition": 457, "node_type": "S", "subcondition": 23, "parent": 1935}}, {"model": "template.logicnode", "pk": 1933, "fields": {"state_transition": 457, "node_type": "S", "subcondition": 4, "parent": 1935}}, {"model": "template.logicnode", "pk": 1934, "fields": {"state_transition": 457, "node_type": "S", "subcondition": 19, "parent": 1935}}, {"model": "template.logicnode", "pk": 1935, "fields": {"state_transition": 457, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1936, "fields": {"state_transition": 458, "node_type": "S", "subcondition": 23, "parent": 1939}}, {"model": "template.logicnode", "pk": 1937, "fields": {"state_transition": 458, "node_type": "S", "subcondition": 4, "parent": 1939}}, {"model": "template.logicnode", "pk": 1938, "fields": {"state_transition": 458, "node_type": "S", "subcondition": 20, "parent": 1939}}, {"model": "template.logicnode", "pk": 1939, "fields": {"state_transition": 458, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1940, "fields": {"state_transition": 459, "node_type": "S", "subcondition": 23, "parent": 1943}}, {"model": "template.logicnode", "pk": 1941, "fields": {"state_transition": 459, "node_type": "S", "subcondition": 4, "parent": 1943}}, {"model": "template.logicnode", "pk": 1942, "fields": {"state_transition": 459, "node_type": "S", "subcondition": 21, "parent": 1943}}, {"model": "template.logicnode", "pk": 1943, "fields": {"state_transition": 459, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1944, "fields": {"state_transition": 460, "node_type": "S", "subcondition": 23, "parent": 1947}}, {"model": "template.logicnode", "pk": 1945, "fields": {"state_transition": 460, "node_type": "S", "subcondition": 4, "parent": 1947}}, {"model": "template.logicnode", "pk": 1946, "fields": {"state_transition": 460, "node_type": "S", "subcondition": 22, "parent": 1947}}, {"model": "template.logicnode", "pk": 1947, "fields": {"state_transition": 460, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1948, "fields": {"state_transition": 461, "node_type": "S", "subcondition": 23, "parent": 1951}}, {"model": "template.logicnode", "pk": 1949, "fields": {"state_transition": 461, "node_type": "S", "subcondition": 5, "parent": 1951}}, {"model": "template.logicnode", "pk": 1950, "fields": {"state_transition": 461, "node_type": "S", "subcondition": 19, "parent": 1951}}, {"model": "template.logicnode", "pk": 1951, "fields": {"state_transition": 461, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1952, "fields": {"state_transition": 462, "node_type": "S", "subcondition": 23, "parent": 1955}}, {"model": "template.logicnode", "pk": 1953, "fields": {"state_transition": 462, "node_type": "S", "subcondition": 5, "parent": 1955}}, {"model": "template.logicnode", "pk": 1954, "fields": {"state_transition": 462, "node_type": "S", "subcondition": 20, "parent": 1955}}, {"model": "template.logicnode", "pk": 1955, "fields": {"state_transition": 462, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1956, "fields": {"state_transition": 463, "node_type": "S", "subcondition": 23, "parent": 1959}}, {"model": "template.logicnode", "pk": 1957, "fields": {"state_transition": 463, "node_type": "S", "subcondition": 5, "parent": 1959}}, {"model": "template.logicnode", "pk": 1958, "fields": {"state_transition": 463, "node_type": "S", "subcondition": 21, "parent": 1959}}, {"model": "template.logicnode", "pk": 1959, "fields": {"state_transition": 463, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1960, "fields": {"state_transition": 464, "node_type": "S", "subcondition": 23, "parent": 1963}}, {"model": "template.logicnode", "pk": 1961, "fields": {"state_transition": 464, "node_type": "S", "subcondition": 5, "parent": 1963}}, {"model": "template.logicnode", "pk": 1962, "fields": {"state_transition": 464, "node_type": "S", "subcondition": 22, "parent": 1963}}, {"model": "template.logicnode", "pk": 1963, "fields": {"state_transition": 464, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1964, "fields": {"state_transition": 465, "node_type": "S", "subcondition": 23, "parent": 1967}}, {"model": "template.logicnode", "pk": 1965, "fields": {"state_transition": 465, "node_type": "S", "subcondition": 6, "parent": 1967}}, {"model": "template.logicnode", "pk": 1966, "fields": {"state_transition": 465, "node_type": "S", "subcondition": 19, "parent": 1967}}, {"model": "template.logicnode", "pk": 1967, "fields": {"state_transition": 465, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1968, "fields": {"state_transition": 466, "node_type": "S", "subcondition": 23, "parent": 1971}}, {"model": "template.logicnode", "pk": 1969, "fields": {"state_transition": 466, "node_type": "S", "subcondition": 6, "parent": 1971}}, {"model": "template.logicnode", "pk": 1970, "fields": {"state_transition": 466, "node_type": "S", "subcondition": 20, "parent": 1971}}, {"model": "template.logicnode", "pk": 1971, "fields": {"state_transition": 466, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1972, "fields": {"state_transition": 467, "node_type": "S", "subcondition": 23, "parent": 1975}}, {"model": "template.logicnode", "pk": 1973, "fields": {"state_transition": 467, "node_type": "S", "subcondition": 6, "parent": 1975}}, {"model": "template.logicnode", "pk": 1974, "fields": {"state_transition": 467, "node_type": "S", "subcondition": 21, "parent": 1975}}, {"model": "template.logicnode", "pk": 1975, "fields": {"state_transition": 467, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1976, "fields": {"state_transition": 468, "node_type": "S", "subcondition": 23, "parent": 1979}}, {"model": "template.logicnode", "pk": 1977, "fields": {"state_transition": 468, "node_type": "S", "subcondition": 6, "parent": 1979}}, {"model": "template.logicnode", "pk": 1978, "fields": {"state_transition": 468, "node_type": "S", "subcondition": 22, "parent": 1979}}, {"model": "template.logicnode", "pk": 1979, "fields": {"state_transition": 468, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1980, "fields": {"state_transition": 469, "node_type": "N", "subcondition": null, "parent": 1984}}, {"model": "template.logicnode", "pk": 1981, "fields": {"state_transition": 469, "node_type": "S", "subcondition": 23, "parent": 1980}}, {"model": "template.logicnode", "pk": 1982, "fields": {"state_transition": 469, "node_type": "S", "subcondition": 3, "parent": 1984}}, {"model": "template.logicnode", "pk": 1983, "fields": {"state_transition": 469, "node_type": "S", "subcondition": 19, "parent": 1984}}, {"model": "template.logicnode", "pk": 1984, "fields": {"state_transition": 469, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1985, "fields": {"state_transition": 470, "node_type": "N", "subcondition": null, "parent": 1989}}, {"model": "template.logicnode", "pk": 1986, "fields": {"state_transition": 470, "node_type": "S", "subcondition": 23, "parent": 1985}}, {"model": "template.logicnode", "pk": 1987, "fields": {"state_transition": 470, "node_type": "S", "subcondition": 3, "parent": 1989}}, {"model": "template.logicnode", "pk": 1988, "fields": {"state_transition": 470, "node_type": "S", "subcondition": 20, "parent": 1989}}, {"model": "template.logicnode", "pk": 1989, "fields": {"state_transition": 470, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1990, "fields": {"state_transition": 471, "node_type": "N", "subcondition": null, "parent": 1994}}, {"model": "template.logicnode", "pk": 1991, "fields": {"state_transition": 471, "node_type": "S", "subcondition": 23, "parent": 1990}}, {"model": "template.logicnode", "pk": 1992, "fields": {"state_transition": 471, "node_type": "S", "subcondition": 3, "parent": 1994}}, {"model": "template.logicnode", "pk": 1993, "fields": {"state_transition": 471, "node_type": "S", "subcondition": 21, "parent": 1994}}, {"model": "template.logicnode", "pk": 1994, "fields": {"state_transition": 471, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 1995, "fields": {"state_transition": 472, "node_type": "N", "subcondition": null, "parent": 1999}}, {"model": "template.logicnode", "pk": 1996, "fields": {"state_transition": 472, "node_type": "S", "subcondition": 23, "parent": 1995}}, {"model": "template.logicnode", "pk": 1997, "fields": {"state_transition": 472, "node_type": "S", "subcondition": 3, "parent": 1999}}, {"model": "template.logicnode", "pk": 1998, "fields": {"state_transition": 472, "node_type": "S", "subcondition": 22, "parent": 1999}}, {"model": "template.logicnode", "pk": 1999, "fields": {"state_transition": 472, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2000, "fields": {"state_transition": 473, "node_type": "N", "subcondition": null, "parent": 2004}}, {"model": "template.logicnode", "pk": 2001, "fields": {"state_transition": 473, "node_type": "S", "subcondition": 23, "parent": 2000}}, {"model": "template.logicnode", "pk": 2002, "fields": {"state_transition": 473, "node_type": "S", "subcondition": 4, "parent": 2004}}, {"model": "template.logicnode", "pk": 2003, "fields": {"state_transition": 473, "node_type": "S", "subcondition": 19, "parent": 2004}}, {"model": "template.logicnode", "pk": 2004, "fields": {"state_transition": 473, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2005, "fields": {"state_transition": 474, "node_type": "N", "subcondition": null, "parent": 2009}}, {"model": "template.logicnode", "pk": 2006, "fields": {"state_transition": 474, "node_type": "S", "subcondition": 23, "parent": 2005}}, {"model": "template.logicnode", "pk": 2007, "fields": {"state_transition": 474, "node_type": "S", "subcondition": 4, "parent": 2009}}, {"model": "template.logicnode", "pk": 2008, "fields": {"state_transition": 474, "node_type": "S", "subcondition": 20, "parent": 2009}}, {"model": "template.logicnode", "pk": 2009, "fields": {"state_transition": 474, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2010, "fields": {"state_transition": 475, "node_type": "N", "subcondition": null, "parent": 2014}}, {"model": "template.logicnode", "pk": 2011, "fields": {"state_transition": 475, "node_type": "S", "subcondition": 23, "parent": 2010}}, {"model": "template.logicnode", "pk": 2012, "fields": {"state_transition": 475, "node_type": "S", "subcondition": 4, "parent": 2014}}, {"model": "template.logicnode", "pk": 2013, "fields": {"state_transition": 475, "node_type": "S", "subcondition": 21, "parent": 2014}}, {"model": "template.logicnode", "pk": 2014, "fields": {"state_transition": 475, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2015, "fields": {"state_transition": 476, "node_type": "N", "subcondition": null, "parent": 2019}}, {"model": "template.logicnode", "pk": 2016, "fields": {"state_transition": 476, "node_type": "S", "subcondition": 23, "parent": 2015}}, {"model": "template.logicnode", "pk": 2017, "fields": {"state_transition": 476, "node_type": "S", "subcondition": 4, "parent": 2019}}, {"model": "template.logicnode", "pk": 2018, "fields": {"state_transition": 476, "node_type": "S", "subcondition": 22, "parent": 2019}}, {"model": "template.logicnode", "pk": 2019, "fields": {"state_transition": 476, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2020, "fields": {"state_transition": 477, "node_type": "N", "subcondition": null, "parent": 2024}}, {"model": "template.logicnode", "pk": 2021, "fields": {"state_transition": 477, "node_type": "S", "subcondition": 23, "parent": 2020}}, {"model": "template.logicnode", "pk": 2022, "fields": {"state_transition": 477, "node_type": "S", "subcondition": 5, "parent": 2024}}, {"model": "template.logicnode", "pk": 2023, "fields": {"state_transition": 477, "node_type": "S", "subcondition": 19, "parent": 2024}}, {"model": "template.logicnode", "pk": 2024, "fields": {"state_transition": 477, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2025, "fields": {"state_transition": 478, "node_type": "N", "subcondition": null, "parent": 2029}}, {"model": "template.logicnode", "pk": 2026, "fields": {"state_transition": 478, "node_type": "S", "subcondition": 23, "parent": 2025}}, {"model": "template.logicnode", "pk": 2027, "fields": {"state_transition": 478, "node_type": "S", "subcondition": 5, "parent": 2029}}, {"model": "template.logicnode", "pk": 2028, "fields": {"state_transition": 478, "node_type": "S", "subcondition": 20, "parent": 2029}}, {"model": "template.logicnode", "pk": 2029, "fields": {"state_transition": 478, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2030, "fields": {"state_transition": 479, "node_type": "N", "subcondition": null, "parent": 2034}}, {"model": "template.logicnode", "pk": 2031, "fields": {"state_transition": 479, "node_type": "S", "subcondition": 23, "parent": 2030}}, {"model": "template.logicnode", "pk": 2032, "fields": {"state_transition": 479, "node_type": "S", "subcondition": 5, "parent": 2034}}, {"model": "template.logicnode", "pk": 2033, "fields": {"state_transition": 479, "node_type": "S", "subcondition": 21, "parent": 2034}}, {"model": "template.logicnode", "pk": 2034, "fields": {"state_transition": 479, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2035, "fields": {"state_transition": 480, "node_type": "N", "subcondition": null, "parent": 2039}}, {"model": "template.logicnode", "pk": 2036, "fields": {"state_transition": 480, "node_type": "S", "subcondition": 23, "parent": 2035}}, {"model": "template.logicnode", "pk": 2037, "fields": {"state_transition": 480, "node_type": "S", "subcondition": 5, "parent": 2039}}, {"model": "template.logicnode", "pk": 2038, "fields": {"state_transition": 480, "node_type": "S", "subcondition": 22, "parent": 2039}}, {"model": "template.logicnode", "pk": 2039, "fields": {"state_transition": 480, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2040, "fields": {"state_transition": 481, "node_type": "N", "subcondition": null, "parent": 2044}}, {"model": "template.logicnode", "pk": 2041, "fields": {"state_transition": 481, "node_type": "S", "subcondition": 23, "parent": 2040}}, {"model": "template.logicnode", "pk": 2042, "fields": {"state_transition": 481, "node_type": "S", "subcondition": 6, "parent": 2044}}, {"model": "template.logicnode", "pk": 2043, "fields": {"state_transition": 481, "node_type": "S", "subcondition": 19, "parent": 2044}}, {"model": "template.logicnode", "pk": 2044, "fields": {"state_transition": 481, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2045, "fields": {"state_transition": 482, "node_type": "N", "subcondition": null, "parent": 2049}}, {"model": "template.logicnode", "pk": 2046, "fields": {"state_transition": 482, "node_type": "S", "subcondition": 23, "parent": 2045}}, {"model": "template.logicnode", "pk": 2047, "fields": {"state_transition": 482, "node_type": "S", "subcondition": 6, "parent": 2049}}, {"model": "template.logicnode", "pk": 2048, "fields": {"state_transition": 482, "node_type": "S", "subcondition": 20, "parent": 2049}}, {"model": "template.logicnode", "pk": 2049, "fields": {"state_transition": 482, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2050, "fields": {"state_transition": 483, "node_type": "N", "subcondition": null, "parent": 2054}}, {"model": "template.logicnode", "pk": 2051, "fields": {"state_transition": 483, "node_type": "S", "subcondition": 23, "parent": 2050}}, {"model": "template.logicnode", "pk": 2052, "fields": {"state_transition": 483, "node_type": "S", "subcondition": 6, "parent": 2054}}, {"model": "template.logicnode", "pk": 2053, "fields": {"state_transition": 483, "node_type": "S", "subcondition": 21, "parent": 2054}}, {"model": "template.logicnode", "pk": 2054, "fields": {"state_transition": 483, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2055, "fields": {"state_transition": 484, "node_type": "N", "subcondition": null, "parent": 2059}}, {"model": "template.logicnode", "pk": 2056, "fields": {"state_transition": 484, "node_type": "S", "subcondition": 23, "parent": 2055}}, {"model": "template.logicnode", "pk": 2057, "fields": {"state_transition": 484, "node_type": "S", "subcondition": 6, "parent": 2059}}, {"model": "template.logicnode", "pk": 2058, "fields": {"state_transition": 484, "node_type": "S", "subcondition": 22, "parent": 2059}}, {"model": "template.logicnode", "pk": 2059, "fields": {"state_transition": 484, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2060, "fields": {"state_transition": 485, "node_type": "S", "subcondition": 23, "parent": 2063}}, {"model": "template.logicnode", "pk": 2061, "fields": {"state_transition": 485, "node_type": "S", "subcondition": 3, "parent": 2063}}, {"model": "template.logicnode", "pk": 2062, "fields": {"state_transition": 485, "node_type": "S", "subcondition": 19, "parent": 2063}}, {"model": "template.logicnode", "pk": 2063, "fields": {"state_transition": 485, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2064, "fields": {"state_transition": 486, "node_type": "S", "subcondition": 23, "parent": 2067}}, {"model": "template.logicnode", "pk": 2065, "fields": {"state_transition": 486, "node_type": "S", "subcondition": 3, "parent": 2067}}, {"model": "template.logicnode", "pk": 2066, "fields": {"state_transition": 486, "node_type": "S", "subcondition": 20, "parent": 2067}}, {"model": "template.logicnode", "pk": 2067, "fields": {"state_transition": 486, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2068, "fields": {"state_transition": 487, "node_type": "S", "subcondition": 23, "parent": 2071}}, {"model": "template.logicnode", "pk": 2069, "fields": {"state_transition": 487, "node_type": "S", "subcondition": 3, "parent": 2071}}, {"model": "template.logicnode", "pk": 2070, "fields": {"state_transition": 487, "node_type": "S", "subcondition": 21, "parent": 2071}}, {"model": "template.logicnode", "pk": 2071, "fields": {"state_transition": 487, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2072, "fields": {"state_transition": 488, "node_type": "S", "subcondition": 23, "parent": 2075}}, {"model": "template.logicnode", "pk": 2073, "fields": {"state_transition": 488, "node_type": "S", "subcondition": 3, "parent": 2075}}, {"model": "template.logicnode", "pk": 2074, "fields": {"state_transition": 488, "node_type": "S", "subcondition": 22, "parent": 2075}}, {"model": "template.logicnode", "pk": 2075, "fields": {"state_transition": 488, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2076, "fields": {"state_transition": 489, "node_type": "S", "subcondition": 23, "parent": 2079}}, {"model": "template.logicnode", "pk": 2077, "fields": {"state_transition": 489, "node_type": "S", "subcondition": 4, "parent": 2079}}, {"model": "template.logicnode", "pk": 2078, "fields": {"state_transition": 489, "node_type": "S", "subcondition": 19, "parent": 2079}}, {"model": "template.logicnode", "pk": 2079, "fields": {"state_transition": 489, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2080, "fields": {"state_transition": 490, "node_type": "S", "subcondition": 23, "parent": 2083}}, {"model": "template.logicnode", "pk": 2081, "fields": {"state_transition": 490, "node_type": "S", "subcondition": 4, "parent": 2083}}, {"model": "template.logicnode", "pk": 2082, "fields": {"state_transition": 490, "node_type": "S", "subcondition": 20, "parent": 2083}}, {"model": "template.logicnode", "pk": 2083, "fields": {"state_transition": 490, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2084, "fields": {"state_transition": 491, "node_type": "S", "subcondition": 23, "parent": 2087}}, {"model": "template.logicnode", "pk": 2085, "fields": {"state_transition": 491, "node_type": "S", "subcondition": 4, "parent": 2087}}, {"model": "template.logicnode", "pk": 2086, "fields": {"state_transition": 491, "node_type": "S", "subcondition": 21, "parent": 2087}}, {"model": "template.logicnode", "pk": 2087, "fields": {"state_transition": 491, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2088, "fields": {"state_transition": 492, "node_type": "S", "subcondition": 23, "parent": 2091}}, {"model": "template.logicnode", "pk": 2089, "fields": {"state_transition": 492, "node_type": "S", "subcondition": 4, "parent": 2091}}, {"model": "template.logicnode", "pk": 2090, "fields": {"state_transition": 492, "node_type": "S", "subcondition": 22, "parent": 2091}}, {"model": "template.logicnode", "pk": 2091, "fields": {"state_transition": 492, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2092, "fields": {"state_transition": 493, "node_type": "S", "subcondition": 23, "parent": 2095}}, {"model": "template.logicnode", "pk": 2093, "fields": {"state_transition": 493, "node_type": "S", "subcondition": 5, "parent": 2095}}, {"model": "template.logicnode", "pk": 2094, "fields": {"state_transition": 493, "node_type": "S", "subcondition": 19, "parent": 2095}}, {"model": "template.logicnode", "pk": 2095, "fields": {"state_transition": 493, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2096, "fields": {"state_transition": 494, "node_type": "S", "subcondition": 23, "parent": 2099}}, {"model": "template.logicnode", "pk": 2097, "fields": {"state_transition": 494, "node_type": "S", "subcondition": 5, "parent": 2099}}, {"model": "template.logicnode", "pk": 2098, "fields": {"state_transition": 494, "node_type": "S", "subcondition": 20, "parent": 2099}}, {"model": "template.logicnode", "pk": 2099, "fields": {"state_transition": 494, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2100, "fields": {"state_transition": 495, "node_type": "S", "subcondition": 23, "parent": 2103}}, {"model": "template.logicnode", "pk": 2101, "fields": {"state_transition": 495, "node_type": "S", "subcondition": 5, "parent": 2103}}, {"model": "template.logicnode", "pk": 2102, "fields": {"state_transition": 495, "node_type": "S", "subcondition": 21, "parent": 2103}}, {"model": "template.logicnode", "pk": 2103, "fields": {"state_transition": 495, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2104, "fields": {"state_transition": 496, "node_type": "S", "subcondition": 23, "parent": 2107}}, {"model": "template.logicnode", "pk": 2105, "fields": {"state_transition": 496, "node_type": "S", "subcondition": 5, "parent": 2107}}, {"model": "template.logicnode", "pk": 2106, "fields": {"state_transition": 496, "node_type": "S", "subcondition": 22, "parent": 2107}}, {"model": "template.logicnode", "pk": 2107, "fields": {"state_transition": 496, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2108, "fields": {"state_transition": 497, "node_type": "S", "subcondition": 23, "parent": 2111}}, {"model": "template.logicnode", "pk": 2109, "fields": {"state_transition": 497, "node_type": "S", "subcondition": 6, "parent": 2111}}, {"model": "template.logicnode", "pk": 2110, "fields": {"state_transition": 497, "node_type": "S", "subcondition": 19, "parent": 2111}}, {"model": "template.logicnode", "pk": 2111, "fields": {"state_transition": 497, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2112, "fields": {"state_transition": 498, "node_type": "S", "subcondition": 23, "parent": 2115}}, {"model": "template.logicnode", "pk": 2113, "fields": {"state_transition": 498, "node_type": "S", "subcondition": 6, "parent": 2115}}, {"model": "template.logicnode", "pk": 2114, "fields": {"state_transition": 498, "node_type": "S", "subcondition": 20, "parent": 2115}}, {"model": "template.logicnode", "pk": 2115, "fields": {"state_transition": 498, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2116, "fields": {"state_transition": 499, "node_type": "S", "subcondition": 23, "parent": 2119}}, {"model": "template.logicnode", "pk": 2117, "fields": {"state_transition": 499, "node_type": "S", "subcondition": 6, "parent": 2119}}, {"model": "template.logicnode", "pk": 2118, "fields": {"state_transition": 499, "node_type": "S", "subcondition": 21, "parent": 2119}}, {"model": "template.logicnode", "pk": 2119, "fields": {"state_transition": 499, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2120, "fields": {"state_transition": 500, "node_type": "S", "subcondition": 23, "parent": 2123}}, {"model": "template.logicnode", "pk": 2121, "fields": {"state_transition": 500, "node_type": "S", "subcondition": 6, "parent": 2123}}, {"model": "template.logicnode", "pk": 2122, "fields": {"state_transition": 500, "node_type": "S", "subcondition": 22, "parent": 2123}}, {"model": "template.logicnode", "pk": 2123, "fields": {"state_transition": 500, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2124, "fields": {"state_transition": 501, "node_type": "N", "subcondition": null, "parent": 2128}}, {"model": "template.logicnode", "pk": 2125, "fields": {"state_transition": 501, "node_type": "S", "subcondition": 23, "parent": 2124}}, {"model": "template.logicnode", "pk": 2126, "fields": {"state_transition": 501, "node_type": "S", "subcondition": 3, "parent": 2128}}, {"model": "template.logicnode", "pk": 2127, "fields": {"state_transition": 501, "node_type": "S", "subcondition": 19, "parent": 2128}}, {"model": "template.logicnode", "pk": 2128, "fields": {"state_transition": 501, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2129, "fields": {"state_transition": 502, "node_type": "N", "subcondition": null, "parent": 2133}}, {"model": "template.logicnode", "pk": 2130, "fields": {"state_transition": 502, "node_type": "S", "subcondition": 23, "parent": 2129}}, {"model": "template.logicnode", "pk": 2131, "fields": {"state_transition": 502, "node_type": "S", "subcondition": 3, "parent": 2133}}, {"model": "template.logicnode", "pk": 2132, "fields": {"state_transition": 502, "node_type": "S", "subcondition": 20, "parent": 2133}}, {"model": "template.logicnode", "pk": 2133, "fields": {"state_transition": 502, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2134, "fields": {"state_transition": 503, "node_type": "N", "subcondition": null, "parent": 2138}}, {"model": "template.logicnode", "pk": 2135, "fields": {"state_transition": 503, "node_type": "S", "subcondition": 23, "parent": 2134}}, {"model": "template.logicnode", "pk": 2136, "fields": {"state_transition": 503, "node_type": "S", "subcondition": 3, "parent": 2138}}, {"model": "template.logicnode", "pk": 2137, "fields": {"state_transition": 503, "node_type": "S", "subcondition": 21, "parent": 2138}}, {"model": "template.logicnode", "pk": 2138, "fields": {"state_transition": 503, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2139, "fields": {"state_transition": 504, "node_type": "N", "subcondition": null, "parent": 2143}}, {"model": "template.logicnode", "pk": 2140, "fields": {"state_transition": 504, "node_type": "S", "subcondition": 23, "parent": 2139}}, {"model": "template.logicnode", "pk": 2141, "fields": {"state_transition": 504, "node_type": "S", "subcondition": 3, "parent": 2143}}, {"model": "template.logicnode", "pk": 2142, "fields": {"state_transition": 504, "node_type": "S", "subcondition": 22, "parent": 2143}}, {"model": "template.logicnode", "pk": 2143, "fields": {"state_transition": 504, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2144, "fields": {"state_transition": 505, "node_type": "N", "subcondition": null, "parent": 2148}}, {"model": "template.logicnode", "pk": 2145, "fields": {"state_transition": 505, "node_type": "S", "subcondition": 23, "parent": 2144}}, {"model": "template.logicnode", "pk": 2146, "fields": {"state_transition": 505, "node_type": "S", "subcondition": 4, "parent": 2148}}, {"model": "template.logicnode", "pk": 2147, "fields": {"state_transition": 505, "node_type": "S", "subcondition": 19, "parent": 2148}}, {"model": "template.logicnode", "pk": 2148, "fields": {"state_transition": 505, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2149, "fields": {"state_transition": 506, "node_type": "N", "subcondition": null, "parent": 2153}}, {"model": "template.logicnode", "pk": 2150, "fields": {"state_transition": 506, "node_type": "S", "subcondition": 23, "parent": 2149}}, {"model": "template.logicnode", "pk": 2151, "fields": {"state_transition": 506, "node_type": "S", "subcondition": 4, "parent": 2153}}, {"model": "template.logicnode", "pk": 2152, "fields": {"state_transition": 506, "node_type": "S", "subcondition": 20, "parent": 2153}}, {"model": "template.logicnode", "pk": 2153, "fields": {"state_transition": 506, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2154, "fields": {"state_transition": 507, "node_type": "N", "subcondition": null, "parent": 2158}}, {"model": "template.logicnode", "pk": 2155, "fields": {"state_transition": 507, "node_type": "S", "subcondition": 23, "parent": 2154}}, {"model": "template.logicnode", "pk": 2156, "fields": {"state_transition": 507, "node_type": "S", "subcondition": 4, "parent": 2158}}, {"model": "template.logicnode", "pk": 2157, "fields": {"state_transition": 507, "node_type": "S", "subcondition": 21, "parent": 2158}}, {"model": "template.logicnode", "pk": 2158, "fields": {"state_transition": 507, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2159, "fields": {"state_transition": 508, "node_type": "N", "subcondition": null, "parent": 2163}}, {"model": "template.logicnode", "pk": 2160, "fields": {"state_transition": 508, "node_type": "S", "subcondition": 23, "parent": 2159}}, {"model": "template.logicnode", "pk": 2161, "fields": {"state_transition": 508, "node_type": "S", "subcondition": 4, "parent": 2163}}, {"model": "template.logicnode", "pk": 2162, "fields": {"state_transition": 508, "node_type": "S", "subcondition": 22, "parent": 2163}}, {"model": "template.logicnode", "pk": 2163, "fields": {"state_transition": 508, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2164, "fields": {"state_transition": 509, "node_type": "N", "subcondition": null, "parent": 2168}}, {"model": "template.logicnode", "pk": 2165, "fields": {"state_transition": 509, "node_type": "S", "subcondition": 23, "parent": 2164}}, {"model": "template.logicnode", "pk": 2166, "fields": {"state_transition": 509, "node_type": "S", "subcondition": 5, "parent": 2168}}, {"model": "template.logicnode", "pk": 2167, "fields": {"state_transition": 509, "node_type": "S", "subcondition": 19, "parent": 2168}}, {"model": "template.logicnode", "pk": 2168, "fields": {"state_transition": 509, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2169, "fields": {"state_transition": 510, "node_type": "N", "subcondition": null, "parent": 2173}}, {"model": "template.logicnode", "pk": 2170, "fields": {"state_transition": 510, "node_type": "S", "subcondition": 23, "parent": 2169}}, {"model": "template.logicnode", "pk": 2171, "fields": {"state_transition": 510, "node_type": "S", "subcondition": 5, "parent": 2173}}, {"model": "template.logicnode", "pk": 2172, "fields": {"state_transition": 510, "node_type": "S", "subcondition": 20, "parent": 2173}}, {"model": "template.logicnode", "pk": 2173, "fields": {"state_transition": 510, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2174, "fields": {"state_transition": 511, "node_type": "N", "subcondition": null, "parent": 2178}}, {"model": "template.logicnode", "pk": 2175, "fields": {"state_transition": 511, "node_type": "S", "subcondition": 23, "parent": 2174}}, {"model": "template.logicnode", "pk": 2176, "fields": {"state_transition": 511, "node_type": "S", "subcondition": 5, "parent": 2178}}, {"model": "template.logicnode", "pk": 2177, "fields": {"state_transition": 511, "node_type": "S", "subcondition": 21, "parent": 2178}}, {"model": "template.logicnode", "pk": 2178, "fields": {"state_transition": 511, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2179, "fields": {"state_transition": 512, "node_type": "N", "subcondition": null, "parent": 2183}}, {"model": "template.logicnode", "pk": 2180, "fields": {"state_transition": 512, "node_type": "S", "subcondition": 23, "parent": 2179}}, {"model": "template.logicnode", "pk": 2181, "fields": {"state_transition": 512, "node_type": "S", "subcondition": 5, "parent": 2183}}, {"model": "template.logicnode", "pk": 2182, "fields": {"state_transition": 512, "node_type": "S", "subcondition": 22, "parent": 2183}}, {"model": "template.logicnode", "pk": 2183, "fields": {"state_transition": 512, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2184, "fields": {"state_transition": 513, "node_type": "N", "subcondition": null, "parent": 2188}}, {"model": "template.logicnode", "pk": 2185, "fields": {"state_transition": 513, "node_type": "S", "subcondition": 23, "parent": 2184}}, {"model": "template.logicnode", "pk": 2186, "fields": {"state_transition": 513, "node_type": "S", "subcondition": 6, "parent": 2188}}, {"model": "template.logicnode", "pk": 2187, "fields": {"state_transition": 513, "node_type": "S", "subcondition": 19, "parent": 2188}}, {"model": "template.logicnode", "pk": 2188, "fields": {"state_transition": 513, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2189, "fields": {"state_transition": 514, "node_type": "N", "subcondition": null, "parent": 2193}}, {"model": "template.logicnode", "pk": 2190, "fields": {"state_transition": 514, "node_type": "S", "subcondition": 23, "parent": 2189}}, {"model": "template.logicnode", "pk": 2191, "fields": {"state_transition": 514, "node_type": "S", "subcondition": 6, "parent": 2193}}, {"model": "template.logicnode", "pk": 2192, "fields": {"state_transition": 514, "node_type": "S", "subcondition": 20, "parent": 2193}}, {"model": "template.logicnode", "pk": 2193, "fields": {"state_transition": 514, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2194, "fields": {"state_transition": 515, "node_type": "N", "subcondition": null, "parent": 2198}}, {"model": "template.logicnode", "pk": 2195, "fields": {"state_transition": 515, "node_type": "S", "subcondition": 23, "parent": 2194}}, {"model": "template.logicnode", "pk": 2196, "fields": {"state_transition": 515, "node_type": "S", "subcondition": 6, "parent": 2198}}, {"model": "template.logicnode", "pk": 2197, "fields": {"state_transition": 515, "node_type": "S", "subcondition": 21, "parent": 2198}}, {"model": "template.logicnode", "pk": 2198, "fields": {"state_transition": 515, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2199, "fields": {"state_transition": 516, "node_type": "N", "subcondition": null, "parent": 2203}}, {"model": "template.logicnode", "pk": 2200, "fields": {"state_transition": 516, "node_type": "S", "subcondition": 23, "parent": 2199}}, {"model": "template.logicnode", "pk": 2201, "fields": {"state_transition": 516, "node_type": "S", "subcondition": 6, "parent": 2203}}, {"model": "template.logicnode", "pk": 2202, "fields": {"state_transition": 516, "node_type": "S", "subcondition": 22, "parent": 2203}}, {"model": "template.logicnode", "pk": 2203, "fields": {"state_transition": 516, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2204, "fields": {"state_transition": 517, "node_type": "S", "subcondition": 23, "parent": 2207}}, {"model": "template.logicnode", "pk": 2205, "fields": {"state_transition": 517, "node_type": "S", "subcondition": 3, "parent": 2207}}, {"model": "template.logicnode", "pk": 2206, "fields": {"state_transition": 517, "node_type": "S", "subcondition": 19, "parent": 2207}}, {"model": "template.logicnode", "pk": 2207, "fields": {"state_transition": 517, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2208, "fields": {"state_transition": 518, "node_type": "S", "subcondition": 23, "parent": 2211}}, {"model": "template.logicnode", "pk": 2209, "fields": {"state_transition": 518, "node_type": "S", "subcondition": 3, "parent": 2211}}, {"model": "template.logicnode", "pk": 2210, "fields": {"state_transition": 518, "node_type": "S", "subcondition": 20, "parent": 2211}}, {"model": "template.logicnode", "pk": 2211, "fields": {"state_transition": 518, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2212, "fields": {"state_transition": 519, "node_type": "S", "subcondition": 23, "parent": 2215}}, {"model": "template.logicnode", "pk": 2213, "fields": {"state_transition": 519, "node_type": "S", "subcondition": 3, "parent": 2215}}, {"model": "template.logicnode", "pk": 2214, "fields": {"state_transition": 519, "node_type": "S", "subcondition": 21, "parent": 2215}}, {"model": "template.logicnode", "pk": 2215, "fields": {"state_transition": 519, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2216, "fields": {"state_transition": 520, "node_type": "S", "subcondition": 23, "parent": 2219}}, {"model": "template.logicnode", "pk": 2217, "fields": {"state_transition": 520, "node_type": "S", "subcondition": 3, "parent": 2219}}, {"model": "template.logicnode", "pk": 2218, "fields": {"state_transition": 520, "node_type": "S", "subcondition": 22, "parent": 2219}}, {"model": "template.logicnode", "pk": 2219, "fields": {"state_transition": 520, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2220, "fields": {"state_transition": 521, "node_type": "S", "subcondition": 23, "parent": 2223}}, {"model": "template.logicnode", "pk": 2221, "fields": {"state_transition": 521, "node_type": "S", "subcondition": 4, "parent": 2223}}, {"model": "template.logicnode", "pk": 2222, "fields": {"state_transition": 521, "node_type": "S", "subcondition": 19, "parent": 2223}}, {"model": "template.logicnode", "pk": 2223, "fields": {"state_transition": 521, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2224, "fields": {"state_transition": 522, "node_type": "S", "subcondition": 23, "parent": 2227}}, {"model": "template.logicnode", "pk": 2225, "fields": {"state_transition": 522, "node_type": "S", "subcondition": 4, "parent": 2227}}, {"model": "template.logicnode", "pk": 2226, "fields": {"state_transition": 522, "node_type": "S", "subcondition": 20, "parent": 2227}}, {"model": "template.logicnode", "pk": 2227, "fields": {"state_transition": 522, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2228, "fields": {"state_transition": 523, "node_type": "S", "subcondition": 23, "parent": 2231}}, {"model": "template.logicnode", "pk": 2229, "fields": {"state_transition": 523, "node_type": "S", "subcondition": 4, "parent": 2231}}, {"model": "template.logicnode", "pk": 2230, "fields": {"state_transition": 523, "node_type": "S", "subcondition": 21, "parent": 2231}}, {"model": "template.logicnode", "pk": 2231, "fields": {"state_transition": 523, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2232, "fields": {"state_transition": 524, "node_type": "S", "subcondition": 23, "parent": 2235}}, {"model": "template.logicnode", "pk": 2233, "fields": {"state_transition": 524, "node_type": "S", "subcondition": 4, "parent": 2235}}, {"model": "template.logicnode", "pk": 2234, "fields": {"state_transition": 524, "node_type": "S", "subcondition": 22, "parent": 2235}}, {"model": "template.logicnode", "pk": 2235, "fields": {"state_transition": 524, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2236, "fields": {"state_transition": 525, "node_type": "S", "subcondition": 23, "parent": 2239}}, {"model": "template.logicnode", "pk": 2237, "fields": {"state_transition": 525, "node_type": "S", "subcondition": 5, "parent": 2239}}, {"model": "template.logicnode", "pk": 2238, "fields": {"state_transition": 525, "node_type": "S", "subcondition": 19, "parent": 2239}}, {"model": "template.logicnode", "pk": 2239, "fields": {"state_transition": 525, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2240, "fields": {"state_transition": 526, "node_type": "S", "subcondition": 23, "parent": 2243}}, {"model": "template.logicnode", "pk": 2241, "fields": {"state_transition": 526, "node_type": "S", "subcondition": 5, "parent": 2243}}, {"model": "template.logicnode", "pk": 2242, "fields": {"state_transition": 526, "node_type": "S", "subcondition": 20, "parent": 2243}}, {"model": "template.logicnode", "pk": 2243, "fields": {"state_transition": 526, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2244, "fields": {"state_transition": 527, "node_type": "S", "subcondition": 23, "parent": 2247}}, {"model": "template.logicnode", "pk": 2245, "fields": {"state_transition": 527, "node_type": "S", "subcondition": 5, "parent": 2247}}, {"model": "template.logicnode", "pk": 2246, "fields": {"state_transition": 527, "node_type": "S", "subcondition": 21, "parent": 2247}}, {"model": "template.logicnode", "pk": 2247, "fields": {"state_transition": 527, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2248, "fields": {"state_transition": 528, "node_type": "S", "subcondition": 23, "parent": 2251}}, {"model": "template.logicnode", "pk": 2249, "fields": {"state_transition": 528, "node_type": "S", "subcondition": 5, "parent": 2251}}, {"model": "template.logicnode", "pk": 2250, "fields": {"state_transition": 528, "node_type": "S", "subcondition": 22, "parent": 2251}}, {"model": "template.logicnode", "pk": 2251, "fields": {"state_transition": 528, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2252, "fields": {"state_transition": 529, "node_type": "S", "subcondition": 23, "parent": 2255}}, {"model": "template.logicnode", "pk": 2253, "fields": {"state_transition": 529, "node_type": "S", "subcondition": 6, "parent": 2255}}, {"model": "template.logicnode", "pk": 2254, "fields": {"state_transition": 529, "node_type": "S", "subcondition": 19, "parent": 2255}}, {"model": "template.logicnode", "pk": 2255, "fields": {"state_transition": 529, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2256, "fields": {"state_transition": 530, "node_type": "S", "subcondition": 23, "parent": 2259}}, {"model": "template.logicnode", "pk": 2257, "fields": {"state_transition": 530, "node_type": "S", "subcondition": 6, "parent": 2259}}, {"model": "template.logicnode", "pk": 2258, "fields": {"state_transition": 530, "node_type": "S", "subcondition": 20, "parent": 2259}}, {"model": "template.logicnode", "pk": 2259, "fields": {"state_transition": 530, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2260, "fields": {"state_transition": 531, "node_type": "S", "subcondition": 23, "parent": 2263}}, {"model": "template.logicnode", "pk": 2261, "fields": {"state_transition": 531, "node_type": "S", "subcondition": 6, "parent": 2263}}, {"model": "template.logicnode", "pk": 2262, "fields": {"state_transition": 531, "node_type": "S", "subcondition": 21, "parent": 2263}}, {"model": "template.logicnode", "pk": 2263, "fields": {"state_transition": 531, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2264, "fields": {"state_transition": 532, "node_type": "S", "subcondition": 23, "parent": 2267}}, {"model": "template.logicnode", "pk": 2265, "fields": {"state_transition": 532, "node_type": "S", "subcondition": 6, "parent": 2267}}, {"model": "template.logicnode", "pk": 2266, "fields": {"state_transition": 532, "node_type": "S", "subcondition": 22, "parent": 2267}}, {"model": "template.logicnode", "pk": 2267, "fields": {"state_transition": 532, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2268, "fields": {"state_transition": 533, "node_type": "N", "subcondition": null, "parent": 2272}}, {"model": "template.logicnode", "pk": 2269, "fields": {"state_transition": 533, "node_type": "S", "subcondition": 23, "parent": 2268}}, {"model": "template.logicnode", "pk": 2270, "fields": {"state_transition": 533, "node_type": "S", "subcondition": 3, "parent": 2272}}, {"model": "template.logicnode", "pk": 2271, "fields": {"state_transition": 533, "node_type": "S", "subcondition": 19, "parent": 2272}}, {"model": "template.logicnode", "pk": 2272, "fields": {"state_transition": 533, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2273, "fields": {"state_transition": 534, "node_type": "N", "subcondition": null, "parent": 2277}}, {"model": "template.logicnode", "pk": 2274, "fields": {"state_transition": 534, "node_type": "S", "subcondition": 23, "parent": 2273}}, {"model": "template.logicnode", "pk": 2275, "fields": {"state_transition": 534, "node_type": "S", "subcondition": 3, "parent": 2277}}, {"model": "template.logicnode", "pk": 2276, "fields": {"state_transition": 534, "node_type": "S", "subcondition": 20, "parent": 2277}}, {"model": "template.logicnode", "pk": 2277, "fields": {"state_transition": 534, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2278, "fields": {"state_transition": 535, "node_type": "N", "subcondition": null, "parent": 2282}}, {"model": "template.logicnode", "pk": 2279, "fields": {"state_transition": 535, "node_type": "S", "subcondition": 23, "parent": 2278}}, {"model": "template.logicnode", "pk": 2280, "fields": {"state_transition": 535, "node_type": "S", "subcondition": 3, "parent": 2282}}, {"model": "template.logicnode", "pk": 2281, "fields": {"state_transition": 535, "node_type": "S", "subcondition": 21, "parent": 2282}}, {"model": "template.logicnode", "pk": 2282, "fields": {"state_transition": 535, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2283, "fields": {"state_transition": 536, "node_type": "N", "subcondition": null, "parent": 2287}}, {"model": "template.logicnode", "pk": 2284, "fields": {"state_transition": 536, "node_type": "S", "subcondition": 23, "parent": 2283}}, {"model": "template.logicnode", "pk": 2285, "fields": {"state_transition": 536, "node_type": "S", "subcondition": 3, "parent": 2287}}, {"model": "template.logicnode", "pk": 2286, "fields": {"state_transition": 536, "node_type": "S", "subcondition": 22, "parent": 2287}}, {"model": "template.logicnode", "pk": 2287, "fields": {"state_transition": 536, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2288, "fields": {"state_transition": 537, "node_type": "N", "subcondition": null, "parent": 2292}}, {"model": "template.logicnode", "pk": 2289, "fields": {"state_transition": 537, "node_type": "S", "subcondition": 23, "parent": 2288}}, {"model": "template.logicnode", "pk": 2290, "fields": {"state_transition": 537, "node_type": "S", "subcondition": 4, "parent": 2292}}, {"model": "template.logicnode", "pk": 2291, "fields": {"state_transition": 537, "node_type": "S", "subcondition": 19, "parent": 2292}}, {"model": "template.logicnode", "pk": 2292, "fields": {"state_transition": 537, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2293, "fields": {"state_transition": 538, "node_type": "N", "subcondition": null, "parent": 2297}}, {"model": "template.logicnode", "pk": 2294, "fields": {"state_transition": 538, "node_type": "S", "subcondition": 23, "parent": 2293}}, {"model": "template.logicnode", "pk": 2295, "fields": {"state_transition": 538, "node_type": "S", "subcondition": 4, "parent": 2297}}, {"model": "template.logicnode", "pk": 2296, "fields": {"state_transition": 538, "node_type": "S", "subcondition": 20, "parent": 2297}}, {"model": "template.logicnode", "pk": 2297, "fields": {"state_transition": 538, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2298, "fields": {"state_transition": 539, "node_type": "N", "subcondition": null, "parent": 2302}}, {"model": "template.logicnode", "pk": 2299, "fields": {"state_transition": 539, "node_type": "S", "subcondition": 23, "parent": 2298}}, {"model": "template.logicnode", "pk": 2300, "fields": {"state_transition": 539, "node_type": "S", "subcondition": 4, "parent": 2302}}, {"model": "template.logicnode", "pk": 2301, "fields": {"state_transition": 539, "node_type": "S", "subcondition": 21, "parent": 2302}}, {"model": "template.logicnode", "pk": 2302, "fields": {"state_transition": 539, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2303, "fields": {"state_transition": 540, "node_type": "N", "subcondition": null, "parent": 2307}}, {"model": "template.logicnode", "pk": 2304, "fields": {"state_transition": 540, "node_type": "S", "subcondition": 23, "parent": 2303}}, {"model": "template.logicnode", "pk": 2305, "fields": {"state_transition": 540, "node_type": "S", "subcondition": 4, "parent": 2307}}, {"model": "template.logicnode", "pk": 2306, "fields": {"state_transition": 540, "node_type": "S", "subcondition": 22, "parent": 2307}}, {"model": "template.logicnode", "pk": 2307, "fields": {"state_transition": 540, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2308, "fields": {"state_transition": 541, "node_type": "N", "subcondition": null, "parent": 2312}}, {"model": "template.logicnode", "pk": 2309, "fields": {"state_transition": 541, "node_type": "S", "subcondition": 23, "parent": 2308}}, {"model": "template.logicnode", "pk": 2310, "fields": {"state_transition": 541, "node_type": "S", "subcondition": 5, "parent": 2312}}, {"model": "template.logicnode", "pk": 2311, "fields": {"state_transition": 541, "node_type": "S", "subcondition": 19, "parent": 2312}}, {"model": "template.logicnode", "pk": 2312, "fields": {"state_transition": 541, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2313, "fields": {"state_transition": 542, "node_type": "N", "subcondition": null, "parent": 2317}}, {"model": "template.logicnode", "pk": 2314, "fields": {"state_transition": 542, "node_type": "S", "subcondition": 23, "parent": 2313}}, {"model": "template.logicnode", "pk": 2315, "fields": {"state_transition": 542, "node_type": "S", "subcondition": 5, "parent": 2317}}, {"model": "template.logicnode", "pk": 2316, "fields": {"state_transition": 542, "node_type": "S", "subcondition": 20, "parent": 2317}}, {"model": "template.logicnode", "pk": 2317, "fields": {"state_transition": 542, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2318, "fields": {"state_transition": 543, "node_type": "N", "subcondition": null, "parent": 2322}}, {"model": "template.logicnode", "pk": 2319, "fields": {"state_transition": 543, "node_type": "S", "subcondition": 23, "parent": 2318}}, {"model": "template.logicnode", "pk": 2320, "fields": {"state_transition": 543, "node_type": "S", "subcondition": 5, "parent": 2322}}, {"model": "template.logicnode", "pk": 2321, "fields": {"state_transition": 543, "node_type": "S", "subcondition": 21, "parent": 2322}}, {"model": "template.logicnode", "pk": 2322, "fields": {"state_transition": 543, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2323, "fields": {"state_transition": 544, "node_type": "N", "subcondition": null, "parent": 2327}}, {"model": "template.logicnode", "pk": 2324, "fields": {"state_transition": 544, "node_type": "S", "subcondition": 23, "parent": 2323}}, {"model": "template.logicnode", "pk": 2325, "fields": {"state_transition": 544, "node_type": "S", "subcondition": 5, "parent": 2327}}, {"model": "template.logicnode", "pk": 2326, "fields": {"state_transition": 544, "node_type": "S", "subcondition": 22, "parent": 2327}}, {"model": "template.logicnode", "pk": 2327, "fields": {"state_transition": 544, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2328, "fields": {"state_transition": 545, "node_type": "N", "subcondition": null, "parent": 2332}}, {"model": "template.logicnode", "pk": 2329, "fields": {"state_transition": 545, "node_type": "S", "subcondition": 23, "parent": 2328}}, {"model": "template.logicnode", "pk": 2330, "fields": {"state_transition": 545, "node_type": "S", "subcondition": 6, "parent": 2332}}, {"model": "template.logicnode", "pk": 2331, "fields": {"state_transition": 545, "node_type": "S", "subcondition": 19, "parent": 2332}}, {"model": "template.logicnode", "pk": 2332, "fields": {"state_transition": 545, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2333, "fields": {"state_transition": 546, "node_type": "N", "subcondition": null, "parent": 2337}}, {"model": "template.logicnode", "pk": 2334, "fields": {"state_transition": 546, "node_type": "S", "subcondition": 23, "parent": 2333}}, {"model": "template.logicnode", "pk": 2335, "fields": {"state_transition": 546, "node_type": "S", "subcondition": 6, "parent": 2337}}, {"model": "template.logicnode", "pk": 2336, "fields": {"state_transition": 546, "node_type": "S", "subcondition": 20, "parent": 2337}}, {"model": "template.logicnode", "pk": 2337, "fields": {"state_transition": 546, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2338, "fields": {"state_transition": 547, "node_type": "N", "subcondition": null, "parent": 2342}}, {"model": "template.logicnode", "pk": 2339, "fields": {"state_transition": 547, "node_type": "S", "subcondition": 23, "parent": 2338}}, {"model": "template.logicnode", "pk": 2340, "fields": {"state_transition": 547, "node_type": "S", "subcondition": 6, "parent": 2342}}, {"model": "template.logicnode", "pk": 2341, "fields": {"state_transition": 547, "node_type": "S", "subcondition": 21, "parent": 2342}}, {"model": "template.logicnode", "pk": 2342, "fields": {"state_transition": 547, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2343, "fields": {"state_transition": 548, "node_type": "N", "subcondition": null, "parent": 2347}}, {"model": "template.logicnode", "pk": 2344, "fields": {"state_transition": 548, "node_type": "S", "subcondition": 23, "parent": 2343}}, {"model": "template.logicnode", "pk": 2345, "fields": {"state_transition": 548, "node_type": "S", "subcondition": 6, "parent": 2347}}, {"model": "template.logicnode", "pk": 2346, "fields": {"state_transition": 548, "node_type": "S", "subcondition": 22, "parent": 2347}}, {"model": "template.logicnode", "pk": 2347, "fields": {"state_transition": 548, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2348, "fields": {"state_transition": 549, "node_type": "S", "subcondition": 23, "parent": 2351}}, {"model": "template.logicnode", "pk": 2349, "fields": {"state_transition": 549, "node_type": "S", "subcondition": 3, "parent": 2351}}, {"model": "template.logicnode", "pk": 2350, "fields": {"state_transition": 549, "node_type": "S", "subcondition": 19, "parent": 2351}}, {"model": "template.logicnode", "pk": 2351, "fields": {"state_transition": 549, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2352, "fields": {"state_transition": 550, "node_type": "S", "subcondition": 23, "parent": 2355}}, {"model": "template.logicnode", "pk": 2353, "fields": {"state_transition": 550, "node_type": "S", "subcondition": 3, "parent": 2355}}, {"model": "template.logicnode", "pk": 2354, "fields": {"state_transition": 550, "node_type": "S", "subcondition": 20, "parent": 2355}}, {"model": "template.logicnode", "pk": 2355, "fields": {"state_transition": 550, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2356, "fields": {"state_transition": 551, "node_type": "S", "subcondition": 23, "parent": 2359}}, {"model": "template.logicnode", "pk": 2357, "fields": {"state_transition": 551, "node_type": "S", "subcondition": 3, "parent": 2359}}, {"model": "template.logicnode", "pk": 2358, "fields": {"state_transition": 551, "node_type": "S", "subcondition": 21, "parent": 2359}}, {"model": "template.logicnode", "pk": 2359, "fields": {"state_transition": 551, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2360, "fields": {"state_transition": 552, "node_type": "S", "subcondition": 23, "parent": 2363}}, {"model": "template.logicnode", "pk": 2361, "fields": {"state_transition": 552, "node_type": "S", "subcondition": 3, "parent": 2363}}, {"model": "template.logicnode", "pk": 2362, "fields": {"state_transition": 552, "node_type": "S", "subcondition": 22, "parent": 2363}}, {"model": "template.logicnode", "pk": 2363, "fields": {"state_transition": 552, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2364, "fields": {"state_transition": 553, "node_type": "S", "subcondition": 23, "parent": 2367}}, {"model": "template.logicnode", "pk": 2365, "fields": {"state_transition": 553, "node_type": "S", "subcondition": 4, "parent": 2367}}, {"model": "template.logicnode", "pk": 2366, "fields": {"state_transition": 553, "node_type": "S", "subcondition": 19, "parent": 2367}}, {"model": "template.logicnode", "pk": 2367, "fields": {"state_transition": 553, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2368, "fields": {"state_transition": 554, "node_type": "S", "subcondition": 23, "parent": 2371}}, {"model": "template.logicnode", "pk": 2369, "fields": {"state_transition": 554, "node_type": "S", "subcondition": 4, "parent": 2371}}, {"model": "template.logicnode", "pk": 2370, "fields": {"state_transition": 554, "node_type": "S", "subcondition": 20, "parent": 2371}}, {"model": "template.logicnode", "pk": 2371, "fields": {"state_transition": 554, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2372, "fields": {"state_transition": 555, "node_type": "S", "subcondition": 23, "parent": 2375}}, {"model": "template.logicnode", "pk": 2373, "fields": {"state_transition": 555, "node_type": "S", "subcondition": 4, "parent": 2375}}, {"model": "template.logicnode", "pk": 2374, "fields": {"state_transition": 555, "node_type": "S", "subcondition": 21, "parent": 2375}}, {"model": "template.logicnode", "pk": 2375, "fields": {"state_transition": 555, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2376, "fields": {"state_transition": 556, "node_type": "S", "subcondition": 23, "parent": 2379}}, {"model": "template.logicnode", "pk": 2377, "fields": {"state_transition": 556, "node_type": "S", "subcondition": 4, "parent": 2379}}, {"model": "template.logicnode", "pk": 2378, "fields": {"state_transition": 556, "node_type": "S", "subcondition": 22, "parent": 2379}}, {"model": "template.logicnode", "pk": 2379, "fields": {"state_transition": 556, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2380, "fields": {"state_transition": 557, "node_type": "S", "subcondition": 23, "parent": 2383}}, {"model": "template.logicnode", "pk": 2381, "fields": {"state_transition": 557, "node_type": "S", "subcondition": 5, "parent": 2383}}, {"model": "template.logicnode", "pk": 2382, "fields": {"state_transition": 557, "node_type": "S", "subcondition": 19, "parent": 2383}}, {"model": "template.logicnode", "pk": 2383, "fields": {"state_transition": 557, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2384, "fields": {"state_transition": 558, "node_type": "S", "subcondition": 23, "parent": 2387}}, {"model": "template.logicnode", "pk": 2385, "fields": {"state_transition": 558, "node_type": "S", "subcondition": 5, "parent": 2387}}, {"model": "template.logicnode", "pk": 2386, "fields": {"state_transition": 558, "node_type": "S", "subcondition": 20, "parent": 2387}}, {"model": "template.logicnode", "pk": 2387, "fields": {"state_transition": 558, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2388, "fields": {"state_transition": 559, "node_type": "S", "subcondition": 23, "parent": 2391}}, {"model": "template.logicnode", "pk": 2389, "fields": {"state_transition": 559, "node_type": "S", "subcondition": 5, "parent": 2391}}, {"model": "template.logicnode", "pk": 2390, "fields": {"state_transition": 559, "node_type": "S", "subcondition": 21, "parent": 2391}}, {"model": "template.logicnode", "pk": 2391, "fields": {"state_transition": 559, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2392, "fields": {"state_transition": 560, "node_type": "S", "subcondition": 23, "parent": 2395}}, {"model": "template.logicnode", "pk": 2393, "fields": {"state_transition": 560, "node_type": "S", "subcondition": 5, "parent": 2395}}, {"model": "template.logicnode", "pk": 2394, "fields": {"state_transition": 560, "node_type": "S", "subcondition": 22, "parent": 2395}}, {"model": "template.logicnode", "pk": 2395, "fields": {"state_transition": 560, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2396, "fields": {"state_transition": 561, "node_type": "S", "subcondition": 23, "parent": 2399}}, {"model": "template.logicnode", "pk": 2397, "fields": {"state_transition": 561, "node_type": "S", "subcondition": 6, "parent": 2399}}, {"model": "template.logicnode", "pk": 2398, "fields": {"state_transition": 561, "node_type": "S", "subcondition": 19, "parent": 2399}}, {"model": "template.logicnode", "pk": 2399, "fields": {"state_transition": 561, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2400, "fields": {"state_transition": 562, "node_type": "S", "subcondition": 23, "parent": 2403}}, {"model": "template.logicnode", "pk": 2401, "fields": {"state_transition": 562, "node_type": "S", "subcondition": 6, "parent": 2403}}, {"model": "template.logicnode", "pk": 2402, "fields": {"state_transition": 562, "node_type": "S", "subcondition": 20, "parent": 2403}}, {"model": "template.logicnode", "pk": 2403, "fields": {"state_transition": 562, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2404, "fields": {"state_transition": 563, "node_type": "S", "subcondition": 23, "parent": 2407}}, {"model": "template.logicnode", "pk": 2405, "fields": {"state_transition": 563, "node_type": "S", "subcondition": 6, "parent": 2407}}, {"model": "template.logicnode", "pk": 2406, "fields": {"state_transition": 563, "node_type": "S", "subcondition": 21, "parent": 2407}}, {"model": "template.logicnode", "pk": 2407, "fields": {"state_transition": 563, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2408, "fields": {"state_transition": 564, "node_type": "S", "subcondition": 23, "parent": 2411}}, {"model": "template.logicnode", "pk": 2409, "fields": {"state_transition": 564, "node_type": "S", "subcondition": 6, "parent": 2411}}, {"model": "template.logicnode", "pk": 2410, "fields": {"state_transition": 564, "node_type": "S", "subcondition": 22, "parent": 2411}}, {"model": "template.logicnode", "pk": 2411, "fields": {"state_transition": 564, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2412, "fields": {"state_transition": 565, "node_type": "N", "subcondition": null, "parent": 2416}}, {"model": "template.logicnode", "pk": 2413, "fields": {"state_transition": 565, "node_type": "S", "subcondition": 23, "parent": 2412}}, {"model": "template.logicnode", "pk": 2414, "fields": {"state_transition": 565, "node_type": "S", "subcondition": 3, "parent": 2416}}, {"model": "template.logicnode", "pk": 2415, "fields": {"state_transition": 565, "node_type": "S", "subcondition": 19, "parent": 2416}}, {"model": "template.logicnode", "pk": 2416, "fields": {"state_transition": 565, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2417, "fields": {"state_transition": 566, "node_type": "N", "subcondition": null, "parent": 2421}}, {"model": "template.logicnode", "pk": 2418, "fields": {"state_transition": 566, "node_type": "S", "subcondition": 23, "parent": 2417}}, {"model": "template.logicnode", "pk": 2419, "fields": {"state_transition": 566, "node_type": "S", "subcondition": 3, "parent": 2421}}, {"model": "template.logicnode", "pk": 2420, "fields": {"state_transition": 566, "node_type": "S", "subcondition": 20, "parent": 2421}}, {"model": "template.logicnode", "pk": 2421, "fields": {"state_transition": 566, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2422, "fields": {"state_transition": 567, "node_type": "N", "subcondition": null, "parent": 2426}}, {"model": "template.logicnode", "pk": 2423, "fields": {"state_transition": 567, "node_type": "S", "subcondition": 23, "parent": 2422}}, {"model": "template.logicnode", "pk": 2424, "fields": {"state_transition": 567, "node_type": "S", "subcondition": 3, "parent": 2426}}, {"model": "template.logicnode", "pk": 2425, "fields": {"state_transition": 567, "node_type": "S", "subcondition": 21, "parent": 2426}}, {"model": "template.logicnode", "pk": 2426, "fields": {"state_transition": 567, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2427, "fields": {"state_transition": 568, "node_type": "N", "subcondition": null, "parent": 2431}}, {"model": "template.logicnode", "pk": 2428, "fields": {"state_transition": 568, "node_type": "S", "subcondition": 23, "parent": 2427}}, {"model": "template.logicnode", "pk": 2429, "fields": {"state_transition": 568, "node_type": "S", "subcondition": 3, "parent": 2431}}, {"model": "template.logicnode", "pk": 2430, "fields": {"state_transition": 568, "node_type": "S", "subcondition": 22, "parent": 2431}}, {"model": "template.logicnode", "pk": 2431, "fields": {"state_transition": 568, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2432, "fields": {"state_transition": 569, "node_type": "N", "subcondition": null, "parent": 2436}}, {"model": "template.logicnode", "pk": 2433, "fields": {"state_transition": 569, "node_type": "S", "subcondition": 23, "parent": 2432}}, {"model": "template.logicnode", "pk": 2434, "fields": {"state_transition": 569, "node_type": "S", "subcondition": 4, "parent": 2436}}, {"model": "template.logicnode", "pk": 2435, "fields": {"state_transition": 569, "node_type": "S", "subcondition": 19, "parent": 2436}}, {"model": "template.logicnode", "pk": 2436, "fields": {"state_transition": 569, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2437, "fields": {"state_transition": 570, "node_type": "N", "subcondition": null, "parent": 2441}}, {"model": "template.logicnode", "pk": 2438, "fields": {"state_transition": 570, "node_type": "S", "subcondition": 23, "parent": 2437}}, {"model": "template.logicnode", "pk": 2439, "fields": {"state_transition": 570, "node_type": "S", "subcondition": 4, "parent": 2441}}, {"model": "template.logicnode", "pk": 2440, "fields": {"state_transition": 570, "node_type": "S", "subcondition": 20, "parent": 2441}}, {"model": "template.logicnode", "pk": 2441, "fields": {"state_transition": 570, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2442, "fields": {"state_transition": 571, "node_type": "N", "subcondition": null, "parent": 2446}}, {"model": "template.logicnode", "pk": 2443, "fields": {"state_transition": 571, "node_type": "S", "subcondition": 23, "parent": 2442}}, {"model": "template.logicnode", "pk": 2444, "fields": {"state_transition": 571, "node_type": "S", "subcondition": 4, "parent": 2446}}, {"model": "template.logicnode", "pk": 2445, "fields": {"state_transition": 571, "node_type": "S", "subcondition": 21, "parent": 2446}}, {"model": "template.logicnode", "pk": 2446, "fields": {"state_transition": 571, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2447, "fields": {"state_transition": 572, "node_type": "N", "subcondition": null, "parent": 2451}}, {"model": "template.logicnode", "pk": 2448, "fields": {"state_transition": 572, "node_type": "S", "subcondition": 23, "parent": 2447}}, {"model": "template.logicnode", "pk": 2449, "fields": {"state_transition": 572, "node_type": "S", "subcondition": 4, "parent": 2451}}, {"model": "template.logicnode", "pk": 2450, "fields": {"state_transition": 572, "node_type": "S", "subcondition": 22, "parent": 2451}}, {"model": "template.logicnode", "pk": 2451, "fields": {"state_transition": 572, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2452, "fields": {"state_transition": 573, "node_type": "N", "subcondition": null, "parent": 2456}}, {"model": "template.logicnode", "pk": 2453, "fields": {"state_transition": 573, "node_type": "S", "subcondition": 23, "parent": 2452}}, {"model": "template.logicnode", "pk": 2454, "fields": {"state_transition": 573, "node_type": "S", "subcondition": 5, "parent": 2456}}, {"model": "template.logicnode", "pk": 2455, "fields": {"state_transition": 573, "node_type": "S", "subcondition": 19, "parent": 2456}}, {"model": "template.logicnode", "pk": 2456, "fields": {"state_transition": 573, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2457, "fields": {"state_transition": 574, "node_type": "N", "subcondition": null, "parent": 2461}}, {"model": "template.logicnode", "pk": 2458, "fields": {"state_transition": 574, "node_type": "S", "subcondition": 23, "parent": 2457}}, {"model": "template.logicnode", "pk": 2459, "fields": {"state_transition": 574, "node_type": "S", "subcondition": 5, "parent": 2461}}, {"model": "template.logicnode", "pk": 2460, "fields": {"state_transition": 574, "node_type": "S", "subcondition": 20, "parent": 2461}}, {"model": "template.logicnode", "pk": 2461, "fields": {"state_transition": 574, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2462, "fields": {"state_transition": 575, "node_type": "N", "subcondition": null, "parent": 2466}}, {"model": "template.logicnode", "pk": 2463, "fields": {"state_transition": 575, "node_type": "S", "subcondition": 23, "parent": 2462}}, {"model": "template.logicnode", "pk": 2464, "fields": {"state_transition": 575, "node_type": "S", "subcondition": 5, "parent": 2466}}, {"model": "template.logicnode", "pk": 2465, "fields": {"state_transition": 575, "node_type": "S", "subcondition": 21, "parent": 2466}}, {"model": "template.logicnode", "pk": 2466, "fields": {"state_transition": 575, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2467, "fields": {"state_transition": 576, "node_type": "N", "subcondition": null, "parent": 2471}}, {"model": "template.logicnode", "pk": 2468, "fields": {"state_transition": 576, "node_type": "S", "subcondition": 23, "parent": 2467}}, {"model": "template.logicnode", "pk": 2469, "fields": {"state_transition": 576, "node_type": "S", "subcondition": 5, "parent": 2471}}, {"model": "template.logicnode", "pk": 2470, "fields": {"state_transition": 576, "node_type": "S", "subcondition": 22, "parent": 2471}}, {"model": "template.logicnode", "pk": 2471, "fields": {"state_transition": 576, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2472, "fields": {"state_transition": 577, "node_type": "N", "subcondition": null, "parent": 2476}}, {"model": "template.logicnode", "pk": 2473, "fields": {"state_transition": 577, "node_type": "S", "subcondition": 23, "parent": 2472}}, {"model": "template.logicnode", "pk": 2474, "fields": {"state_transition": 577, "node_type": "S", "subcondition": 6, "parent": 2476}}, {"model": "template.logicnode", "pk": 2475, "fields": {"state_transition": 577, "node_type": "S", "subcondition": 19, "parent": 2476}}, {"model": "template.logicnode", "pk": 2476, "fields": {"state_transition": 577, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2477, "fields": {"state_transition": 578, "node_type": "N", "subcondition": null, "parent": 2481}}, {"model": "template.logicnode", "pk": 2478, "fields": {"state_transition": 578, "node_type": "S", "subcondition": 23, "parent": 2477}}, {"model": "template.logicnode", "pk": 2479, "fields": {"state_transition": 578, "node_type": "S", "subcondition": 6, "parent": 2481}}, {"model": "template.logicnode", "pk": 2480, "fields": {"state_transition": 578, "node_type": "S", "subcondition": 20, "parent": 2481}}, {"model": "template.logicnode", "pk": 2481, "fields": {"state_transition": 578, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2482, "fields": {"state_transition": 579, "node_type": "N", "subcondition": null, "parent": 2486}}, {"model": "template.logicnode", "pk": 2483, "fields": {"state_transition": 579, "node_type": "S", "subcondition": 23, "parent": 2482}}, {"model": "template.logicnode", "pk": 2484, "fields": {"state_transition": 579, "node_type": "S", "subcondition": 6, "parent": 2486}}, {"model": "template.logicnode", "pk": 2485, "fields": {"state_transition": 579, "node_type": "S", "subcondition": 21, "parent": 2486}}, {"model": "template.logicnode", "pk": 2486, "fields": {"state_transition": 579, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2487, "fields": {"state_transition": 580, "node_type": "N", "subcondition": null, "parent": 2491}}, {"model": "template.logicnode", "pk": 2488, "fields": {"state_transition": 580, "node_type": "S", "subcondition": 23, "parent": 2487}}, {"model": "template.logicnode", "pk": 2489, "fields": {"state_transition": 580, "node_type": "S", "subcondition": 6, "parent": 2491}}, {"model": "template.logicnode", "pk": 2490, "fields": {"state_transition": 580, "node_type": "S", "subcondition": 22, "parent": 2491}}, {"model": "template.logicnode", "pk": 2491, "fields": {"state_transition": 580, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2492, "fields": {"state_transition": 581, "node_type": "S", "subcondition": 23, "parent": 2495}}, {"model": "template.logicnode", "pk": 2493, "fields": {"state_transition": 581, "node_type": "S", "subcondition": 3, "parent": 2495}}, {"model": "template.logicnode", "pk": 2494, "fields": {"state_transition": 581, "node_type": "S", "subcondition": 19, "parent": 2495}}, {"model": "template.logicnode", "pk": 2495, "fields": {"state_transition": 581, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2496, "fields": {"state_transition": 582, "node_type": "S", "subcondition": 23, "parent": 2499}}, {"model": "template.logicnode", "pk": 2497, "fields": {"state_transition": 582, "node_type": "S", "subcondition": 3, "parent": 2499}}, {"model": "template.logicnode", "pk": 2498, "fields": {"state_transition": 582, "node_type": "S", "subcondition": 20, "parent": 2499}}, {"model": "template.logicnode", "pk": 2499, "fields": {"state_transition": 582, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2500, "fields": {"state_transition": 583, "node_type": "S", "subcondition": 23, "parent": 2503}}, {"model": "template.logicnode", "pk": 2501, "fields": {"state_transition": 583, "node_type": "S", "subcondition": 3, "parent": 2503}}, {"model": "template.logicnode", "pk": 2502, "fields": {"state_transition": 583, "node_type": "S", "subcondition": 21, "parent": 2503}}, {"model": "template.logicnode", "pk": 2503, "fields": {"state_transition": 583, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2504, "fields": {"state_transition": 584, "node_type": "S", "subcondition": 23, "parent": 2507}}, {"model": "template.logicnode", "pk": 2505, "fields": {"state_transition": 584, "node_type": "S", "subcondition": 3, "parent": 2507}}, {"model": "template.logicnode", "pk": 2506, "fields": {"state_transition": 584, "node_type": "S", "subcondition": 22, "parent": 2507}}, {"model": "template.logicnode", "pk": 2507, "fields": {"state_transition": 584, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2508, "fields": {"state_transition": 585, "node_type": "S", "subcondition": 23, "parent": 2511}}, {"model": "template.logicnode", "pk": 2509, "fields": {"state_transition": 585, "node_type": "S", "subcondition": 4, "parent": 2511}}, {"model": "template.logicnode", "pk": 2510, "fields": {"state_transition": 585, "node_type": "S", "subcondition": 19, "parent": 2511}}, {"model": "template.logicnode", "pk": 2511, "fields": {"state_transition": 585, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2512, "fields": {"state_transition": 586, "node_type": "S", "subcondition": 23, "parent": 2515}}, {"model": "template.logicnode", "pk": 2513, "fields": {"state_transition": 586, "node_type": "S", "subcondition": 4, "parent": 2515}}, {"model": "template.logicnode", "pk": 2514, "fields": {"state_transition": 586, "node_type": "S", "subcondition": 20, "parent": 2515}}, {"model": "template.logicnode", "pk": 2515, "fields": {"state_transition": 586, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2516, "fields": {"state_transition": 587, "node_type": "S", "subcondition": 23, "parent": 2519}}, {"model": "template.logicnode", "pk": 2517, "fields": {"state_transition": 587, "node_type": "S", "subcondition": 4, "parent": 2519}}, {"model": "template.logicnode", "pk": 2518, "fields": {"state_transition": 587, "node_type": "S", "subcondition": 21, "parent": 2519}}, {"model": "template.logicnode", "pk": 2519, "fields": {"state_transition": 587, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2520, "fields": {"state_transition": 588, "node_type": "S", "subcondition": 23, "parent": 2523}}, {"model": "template.logicnode", "pk": 2521, "fields": {"state_transition": 588, "node_type": "S", "subcondition": 4, "parent": 2523}}, {"model": "template.logicnode", "pk": 2522, "fields": {"state_transition": 588, "node_type": "S", "subcondition": 22, "parent": 2523}}, {"model": "template.logicnode", "pk": 2523, "fields": {"state_transition": 588, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2524, "fields": {"state_transition": 589, "node_type": "S", "subcondition": 23, "parent": 2527}}, {"model": "template.logicnode", "pk": 2525, "fields": {"state_transition": 589, "node_type": "S", "subcondition": 5, "parent": 2527}}, {"model": "template.logicnode", "pk": 2526, "fields": {"state_transition": 589, "node_type": "S", "subcondition": 19, "parent": 2527}}, {"model": "template.logicnode", "pk": 2527, "fields": {"state_transition": 589, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2528, "fields": {"state_transition": 590, "node_type": "S", "subcondition": 23, "parent": 2531}}, {"model": "template.logicnode", "pk": 2529, "fields": {"state_transition": 590, "node_type": "S", "subcondition": 5, "parent": 2531}}, {"model": "template.logicnode", "pk": 2530, "fields": {"state_transition": 590, "node_type": "S", "subcondition": 20, "parent": 2531}}, {"model": "template.logicnode", "pk": 2531, "fields": {"state_transition": 590, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2532, "fields": {"state_transition": 591, "node_type": "S", "subcondition": 23, "parent": 2535}}, {"model": "template.logicnode", "pk": 2533, "fields": {"state_transition": 591, "node_type": "S", "subcondition": 5, "parent": 2535}}, {"model": "template.logicnode", "pk": 2534, "fields": {"state_transition": 591, "node_type": "S", "subcondition": 21, "parent": 2535}}, {"model": "template.logicnode", "pk": 2535, "fields": {"state_transition": 591, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2536, "fields": {"state_transition": 592, "node_type": "S", "subcondition": 23, "parent": 2539}}, {"model": "template.logicnode", "pk": 2537, "fields": {"state_transition": 592, "node_type": "S", "subcondition": 5, "parent": 2539}}, {"model": "template.logicnode", "pk": 2538, "fields": {"state_transition": 592, "node_type": "S", "subcondition": 22, "parent": 2539}}, {"model": "template.logicnode", "pk": 2539, "fields": {"state_transition": 592, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2540, "fields": {"state_transition": 593, "node_type": "S", "subcondition": 23, "parent": 2543}}, {"model": "template.logicnode", "pk": 2541, "fields": {"state_transition": 593, "node_type": "S", "subcondition": 6, "parent": 2543}}, {"model": "template.logicnode", "pk": 2542, "fields": {"state_transition": 593, "node_type": "S", "subcondition": 19, "parent": 2543}}, {"model": "template.logicnode", "pk": 2543, "fields": {"state_transition": 593, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2544, "fields": {"state_transition": 594, "node_type": "S", "subcondition": 23, "parent": 2547}}, {"model": "template.logicnode", "pk": 2545, "fields": {"state_transition": 594, "node_type": "S", "subcondition": 6, "parent": 2547}}, {"model": "template.logicnode", "pk": 2546, "fields": {"state_transition": 594, "node_type": "S", "subcondition": 20, "parent": 2547}}, {"model": "template.logicnode", "pk": 2547, "fields": {"state_transition": 594, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2548, "fields": {"state_transition": 595, "node_type": "S", "subcondition": 23, "parent": 2551}}, {"model": "template.logicnode", "pk": 2549, "fields": {"state_transition": 595, "node_type": "S", "subcondition": 6, "parent": 2551}}, {"model": "template.logicnode", "pk": 2550, "fields": {"state_transition": 595, "node_type": "S", "subcondition": 21, "parent": 2551}}, {"model": "template.logicnode", "pk": 2551, "fields": {"state_transition": 595, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2552, "fields": {"state_transition": 596, "node_type": "S", "subcondition": 23, "parent": 2555}}, {"model": "template.logicnode", "pk": 2553, "fields": {"state_transition": 596, "node_type": "S", "subcondition": 6, "parent": 2555}}, {"model": "template.logicnode", "pk": 2554, "fields": {"state_transition": 596, "node_type": "S", "subcondition": 22, "parent": 2555}}, {"model": "template.logicnode", "pk": 2555, "fields": {"state_transition": 596, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2556, "fields": {"state_transition": 597, "node_type": "N", "subcondition": null, "parent": 2560}}, {"model": "template.logicnode", "pk": 2557, "fields": {"state_transition": 597, "node_type": "S", "subcondition": 23, "parent": 2556}}, {"model": "template.logicnode", "pk": 2558, "fields": {"state_transition": 597, "node_type": "S", "subcondition": 3, "parent": 2560}}, {"model": "template.logicnode", "pk": 2559, "fields": {"state_transition": 597, "node_type": "S", "subcondition": 19, "parent": 2560}}, {"model": "template.logicnode", "pk": 2560, "fields": {"state_transition": 597, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2561, "fields": {"state_transition": 598, "node_type": "N", "subcondition": null, "parent": 2565}}, {"model": "template.logicnode", "pk": 2562, "fields": {"state_transition": 598, "node_type": "S", "subcondition": 23, "parent": 2561}}, {"model": "template.logicnode", "pk": 2563, "fields": {"state_transition": 598, "node_type": "S", "subcondition": 3, "parent": 2565}}, {"model": "template.logicnode", "pk": 2564, "fields": {"state_transition": 598, "node_type": "S", "subcondition": 20, "parent": 2565}}, {"model": "template.logicnode", "pk": 2565, "fields": {"state_transition": 598, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2566, "fields": {"state_transition": 599, "node_type": "N", "subcondition": null, "parent": 2570}}, {"model": "template.logicnode", "pk": 2567, "fields": {"state_transition": 599, "node_type": "S", "subcondition": 23, "parent": 2566}}, {"model": "template.logicnode", "pk": 2568, "fields": {"state_transition": 599, "node_type": "S", "subcondition": 3, "parent": 2570}}, {"model": "template.logicnode", "pk": 2569, "fields": {"state_transition": 599, "node_type": "S", "subcondition": 21, "parent": 2570}}, {"model": "template.logicnode", "pk": 2570, "fields": {"state_transition": 599, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2571, "fields": {"state_transition": 600, "node_type": "N", "subcondition": null, "parent": 2575}}, {"model": "template.logicnode", "pk": 2572, "fields": {"state_transition": 600, "node_type": "S", "subcondition": 23, "parent": 2571}}, {"model": "template.logicnode", "pk": 2573, "fields": {"state_transition": 600, "node_type": "S", "subcondition": 3, "parent": 2575}}, {"model": "template.logicnode", "pk": 2574, "fields": {"state_transition": 600, "node_type": "S", "subcondition": 22, "parent": 2575}}, {"model": "template.logicnode", "pk": 2575, "fields": {"state_transition": 600, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2576, "fields": {"state_transition": 601, "node_type": "N", "subcondition": null, "parent": 2580}}, {"model": "template.logicnode", "pk": 2577, "fields": {"state_transition": 601, "node_type": "S", "subcondition": 23, "parent": 2576}}, {"model": "template.logicnode", "pk": 2578, "fields": {"state_transition": 601, "node_type": "S", "subcondition": 4, "parent": 2580}}, {"model": "template.logicnode", "pk": 2579, "fields": {"state_transition": 601, "node_type": "S", "subcondition": 19, "parent": 2580}}, {"model": "template.logicnode", "pk": 2580, "fields": {"state_transition": 601, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2581, "fields": {"state_transition": 602, "node_type": "N", "subcondition": null, "parent": 2585}}, {"model": "template.logicnode", "pk": 2582, "fields": {"state_transition": 602, "node_type": "S", "subcondition": 23, "parent": 2581}}, {"model": "template.logicnode", "pk": 2583, "fields": {"state_transition": 602, "node_type": "S", "subcondition": 4, "parent": 2585}}, {"model": "template.logicnode", "pk": 2584, "fields": {"state_transition": 602, "node_type": "S", "subcondition": 20, "parent": 2585}}, {"model": "template.logicnode", "pk": 2585, "fields": {"state_transition": 602, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2586, "fields": {"state_transition": 603, "node_type": "N", "subcondition": null, "parent": 2590}}, {"model": "template.logicnode", "pk": 2587, "fields": {"state_transition": 603, "node_type": "S", "subcondition": 23, "parent": 2586}}, {"model": "template.logicnode", "pk": 2588, "fields": {"state_transition": 603, "node_type": "S", "subcondition": 4, "parent": 2590}}, {"model": "template.logicnode", "pk": 2589, "fields": {"state_transition": 603, "node_type": "S", "subcondition": 21, "parent": 2590}}, {"model": "template.logicnode", "pk": 2590, "fields": {"state_transition": 603, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2591, "fields": {"state_transition": 604, "node_type": "N", "subcondition": null, "parent": 2595}}, {"model": "template.logicnode", "pk": 2592, "fields": {"state_transition": 604, "node_type": "S", "subcondition": 23, "parent": 2591}}, {"model": "template.logicnode", "pk": 2593, "fields": {"state_transition": 604, "node_type": "S", "subcondition": 4, "parent": 2595}}, {"model": "template.logicnode", "pk": 2594, "fields": {"state_transition": 604, "node_type": "S", "subcondition": 22, "parent": 2595}}, {"model": "template.logicnode", "pk": 2595, "fields": {"state_transition": 604, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2596, "fields": {"state_transition": 605, "node_type": "N", "subcondition": null, "parent": 2600}}, {"model": "template.logicnode", "pk": 2597, "fields": {"state_transition": 605, "node_type": "S", "subcondition": 23, "parent": 2596}}, {"model": "template.logicnode", "pk": 2598, "fields": {"state_transition": 605, "node_type": "S", "subcondition": 5, "parent": 2600}}, {"model": "template.logicnode", "pk": 2599, "fields": {"state_transition": 605, "node_type": "S", "subcondition": 19, "parent": 2600}}, {"model": "template.logicnode", "pk": 2600, "fields": {"state_transition": 605, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2601, "fields": {"state_transition": 606, "node_type": "N", "subcondition": null, "parent": 2605}}, {"model": "template.logicnode", "pk": 2602, "fields": {"state_transition": 606, "node_type": "S", "subcondition": 23, "parent": 2601}}, {"model": "template.logicnode", "pk": 2603, "fields": {"state_transition": 606, "node_type": "S", "subcondition": 5, "parent": 2605}}, {"model": "template.logicnode", "pk": 2604, "fields": {"state_transition": 606, "node_type": "S", "subcondition": 20, "parent": 2605}}, {"model": "template.logicnode", "pk": 2605, "fields": {"state_transition": 606, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2606, "fields": {"state_transition": 607, "node_type": "N", "subcondition": null, "parent": 2610}}, {"model": "template.logicnode", "pk": 2607, "fields": {"state_transition": 607, "node_type": "S", "subcondition": 23, "parent": 2606}}, {"model": "template.logicnode", "pk": 2608, "fields": {"state_transition": 607, "node_type": "S", "subcondition": 5, "parent": 2610}}, {"model": "template.logicnode", "pk": 2609, "fields": {"state_transition": 607, "node_type": "S", "subcondition": 21, "parent": 2610}}, {"model": "template.logicnode", "pk": 2610, "fields": {"state_transition": 607, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2611, "fields": {"state_transition": 608, "node_type": "N", "subcondition": null, "parent": 2615}}, {"model": "template.logicnode", "pk": 2612, "fields": {"state_transition": 608, "node_type": "S", "subcondition": 23, "parent": 2611}}, {"model": "template.logicnode", "pk": 2613, "fields": {"state_transition": 608, "node_type": "S", "subcondition": 5, "parent": 2615}}, {"model": "template.logicnode", "pk": 2614, "fields": {"state_transition": 608, "node_type": "S", "subcondition": 22, "parent": 2615}}, {"model": "template.logicnode", "pk": 2615, "fields": {"state_transition": 608, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2616, "fields": {"state_transition": 609, "node_type": "N", "subcondition": null, "parent": 2620}}, {"model": "template.logicnode", "pk": 2617, "fields": {"state_transition": 609, "node_type": "S", "subcondition": 23, "parent": 2616}}, {"model": "template.logicnode", "pk": 2618, "fields": {"state_transition": 609, "node_type": "S", "subcondition": 6, "parent": 2620}}, {"model": "template.logicnode", "pk": 2619, "fields": {"state_transition": 609, "node_type": "S", "subcondition": 19, "parent": 2620}}, {"model": "template.logicnode", "pk": 2620, "fields": {"state_transition": 609, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2621, "fields": {"state_transition": 610, "node_type": "N", "subcondition": null, "parent": 2625}}, {"model": "template.logicnode", "pk": 2622, "fields": {"state_transition": 610, "node_type": "S", "subcondition": 23, "parent": 2621}}, {"model": "template.logicnode", "pk": 2623, "fields": {"state_transition": 610, "node_type": "S", "subcondition": 6, "parent": 2625}}, {"model": "template.logicnode", "pk": 2624, "fields": {"state_transition": 610, "node_type": "S", "subcondition": 20, "parent": 2625}}, {"model": "template.logicnode", "pk": 2625, "fields": {"state_transition": 610, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2626, "fields": {"state_transition": 611, "node_type": "N", "subcondition": null, "parent": 2630}}, {"model": "template.logicnode", "pk": 2627, "fields": {"state_transition": 611, "node_type": "S", "subcondition": 23, "parent": 2626}}, {"model": "template.logicnode", "pk": 2628, "fields": {"state_transition": 611, "node_type": "S", "subcondition": 6, "parent": 2630}}, {"model": "template.logicnode", "pk": 2629, "fields": {"state_transition": 611, "node_type": "S", "subcondition": 21, "parent": 2630}}, {"model": "template.logicnode", "pk": 2630, "fields": {"state_transition": 611, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2631, "fields": {"state_transition": 612, "node_type": "N", "subcondition": null, "parent": 2635}}, {"model": "template.logicnode", "pk": 2632, "fields": {"state_transition": 612, "node_type": "S", "subcondition": 23, "parent": 2631}}, {"model": "template.logicnode", "pk": 2633, "fields": {"state_transition": 612, "node_type": "S", "subcondition": 6, "parent": 2635}}, {"model": "template.logicnode", "pk": 2634, "fields": {"state_transition": 612, "node_type": "S", "subcondition": 22, "parent": 2635}}, {"model": "template.logicnode", "pk": 2635, "fields": {"state_transition": 612, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2636, "fields": {"state_transition": 613, "node_type": "S", "subcondition": 23, "parent": 2639}}, {"model": "template.logicnode", "pk": 2637, "fields": {"state_transition": 613, "node_type": "S", "subcondition": 3, "parent": 2639}}, {"model": "template.logicnode", "pk": 2638, "fields": {"state_transition": 613, "node_type": "S", "subcondition": 19, "parent": 2639}}, {"model": "template.logicnode", "pk": 2639, "fields": {"state_transition": 613, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2640, "fields": {"state_transition": 614, "node_type": "S", "subcondition": 23, "parent": 2643}}, {"model": "template.logicnode", "pk": 2641, "fields": {"state_transition": 614, "node_type": "S", "subcondition": 3, "parent": 2643}}, {"model": "template.logicnode", "pk": 2642, "fields": {"state_transition": 614, "node_type": "S", "subcondition": 20, "parent": 2643}}, {"model": "template.logicnode", "pk": 2643, "fields": {"state_transition": 614, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2644, "fields": {"state_transition": 615, "node_type": "S", "subcondition": 23, "parent": 2647}}, {"model": "template.logicnode", "pk": 2645, "fields": {"state_transition": 615, "node_type": "S", "subcondition": 3, "parent": 2647}}, {"model": "template.logicnode", "pk": 2646, "fields": {"state_transition": 615, "node_type": "S", "subcondition": 21, "parent": 2647}}, {"model": "template.logicnode", "pk": 2647, "fields": {"state_transition": 615, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2648, "fields": {"state_transition": 616, "node_type": "S", "subcondition": 23, "parent": 2651}}, {"model": "template.logicnode", "pk": 2649, "fields": {"state_transition": 616, "node_type": "S", "subcondition": 3, "parent": 2651}}, {"model": "template.logicnode", "pk": 2650, "fields": {"state_transition": 616, "node_type": "S", "subcondition": 22, "parent": 2651}}, {"model": "template.logicnode", "pk": 2651, "fields": {"state_transition": 616, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2652, "fields": {"state_transition": 617, "node_type": "S", "subcondition": 23, "parent": 2655}}, {"model": "template.logicnode", "pk": 2653, "fields": {"state_transition": 617, "node_type": "S", "subcondition": 4, "parent": 2655}}, {"model": "template.logicnode", "pk": 2654, "fields": {"state_transition": 617, "node_type": "S", "subcondition": 19, "parent": 2655}}, {"model": "template.logicnode", "pk": 2655, "fields": {"state_transition": 617, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2656, "fields": {"state_transition": 618, "node_type": "S", "subcondition": 23, "parent": 2659}}, {"model": "template.logicnode", "pk": 2657, "fields": {"state_transition": 618, "node_type": "S", "subcondition": 4, "parent": 2659}}, {"model": "template.logicnode", "pk": 2658, "fields": {"state_transition": 618, "node_type": "S", "subcondition": 20, "parent": 2659}}, {"model": "template.logicnode", "pk": 2659, "fields": {"state_transition": 618, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2660, "fields": {"state_transition": 619, "node_type": "S", "subcondition": 23, "parent": 2663}}, {"model": "template.logicnode", "pk": 2661, "fields": {"state_transition": 619, "node_type": "S", "subcondition": 4, "parent": 2663}}, {"model": "template.logicnode", "pk": 2662, "fields": {"state_transition": 619, "node_type": "S", "subcondition": 21, "parent": 2663}}, {"model": "template.logicnode", "pk": 2663, "fields": {"state_transition": 619, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2664, "fields": {"state_transition": 620, "node_type": "S", "subcondition": 23, "parent": 2667}}, {"model": "template.logicnode", "pk": 2665, "fields": {"state_transition": 620, "node_type": "S", "subcondition": 4, "parent": 2667}}, {"model": "template.logicnode", "pk": 2666, "fields": {"state_transition": 620, "node_type": "S", "subcondition": 22, "parent": 2667}}, {"model": "template.logicnode", "pk": 2667, "fields": {"state_transition": 620, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2668, "fields": {"state_transition": 621, "node_type": "S", "subcondition": 23, "parent": 2671}}, {"model": "template.logicnode", "pk": 2669, "fields": {"state_transition": 621, "node_type": "S", "subcondition": 5, "parent": 2671}}, {"model": "template.logicnode", "pk": 2670, "fields": {"state_transition": 621, "node_type": "S", "subcondition": 19, "parent": 2671}}, {"model": "template.logicnode", "pk": 2671, "fields": {"state_transition": 621, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2672, "fields": {"state_transition": 622, "node_type": "S", "subcondition": 23, "parent": 2675}}, {"model": "template.logicnode", "pk": 2673, "fields": {"state_transition": 622, "node_type": "S", "subcondition": 5, "parent": 2675}}, {"model": "template.logicnode", "pk": 2674, "fields": {"state_transition": 622, "node_type": "S", "subcondition": 20, "parent": 2675}}, {"model": "template.logicnode", "pk": 2675, "fields": {"state_transition": 622, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2676, "fields": {"state_transition": 623, "node_type": "S", "subcondition": 23, "parent": 2679}}, {"model": "template.logicnode", "pk": 2677, "fields": {"state_transition": 623, "node_type": "S", "subcondition": 5, "parent": 2679}}, {"model": "template.logicnode", "pk": 2678, "fields": {"state_transition": 623, "node_type": "S", "subcondition": 21, "parent": 2679}}, {"model": "template.logicnode", "pk": 2679, "fields": {"state_transition": 623, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2680, "fields": {"state_transition": 624, "node_type": "S", "subcondition": 23, "parent": 2683}}, {"model": "template.logicnode", "pk": 2681, "fields": {"state_transition": 624, "node_type": "S", "subcondition": 5, "parent": 2683}}, {"model": "template.logicnode", "pk": 2682, "fields": {"state_transition": 624, "node_type": "S", "subcondition": 22, "parent": 2683}}, {"model": "template.logicnode", "pk": 2683, "fields": {"state_transition": 624, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2684, "fields": {"state_transition": 625, "node_type": "S", "subcondition": 23, "parent": 2687}}, {"model": "template.logicnode", "pk": 2685, "fields": {"state_transition": 625, "node_type": "S", "subcondition": 6, "parent": 2687}}, {"model": "template.logicnode", "pk": 2686, "fields": {"state_transition": 625, "node_type": "S", "subcondition": 19, "parent": 2687}}, {"model": "template.logicnode", "pk": 2687, "fields": {"state_transition": 625, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2688, "fields": {"state_transition": 626, "node_type": "S", "subcondition": 23, "parent": 2691}}, {"model": "template.logicnode", "pk": 2689, "fields": {"state_transition": 626, "node_type": "S", "subcondition": 6, "parent": 2691}}, {"model": "template.logicnode", "pk": 2690, "fields": {"state_transition": 626, "node_type": "S", "subcondition": 20, "parent": 2691}}, {"model": "template.logicnode", "pk": 2691, "fields": {"state_transition": 626, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2692, "fields": {"state_transition": 627, "node_type": "S", "subcondition": 23, "parent": 2695}}, {"model": "template.logicnode", "pk": 2693, "fields": {"state_transition": 627, "node_type": "S", "subcondition": 6, "parent": 2695}}, {"model": "template.logicnode", "pk": 2694, "fields": {"state_transition": 627, "node_type": "S", "subcondition": 21, "parent": 2695}}, {"model": "template.logicnode", "pk": 2695, "fields": {"state_transition": 627, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2696, "fields": {"state_transition": 628, "node_type": "S", "subcondition": 23, "parent": 2699}}, {"model": "template.logicnode", "pk": 2697, "fields": {"state_transition": 628, "node_type": "S", "subcondition": 6, "parent": 2699}}, {"model": "template.logicnode", "pk": 2698, "fields": {"state_transition": 628, "node_type": "S", "subcondition": 22, "parent": 2699}}, {"model": "template.logicnode", "pk": 2699, "fields": {"state_transition": 628, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2700, "fields": {"state_transition": 629, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2701, "fields": {"state_transition": 629, "node_type": "S", "subcondition": 24, "parent": 2700}}, {"model": "template.logicnode", "pk": 2702, "fields": {"state_transition": 630, "node_type": "N", "subcondition": null, "parent": 2706}}, {"model": "template.logicnode", "pk": 2703, "fields": {"state_transition": 630, "node_type": "S", "subcondition": 23, "parent": 2702}}, {"model": "template.logicnode", "pk": 2704, "fields": {"state_transition": 630, "node_type": "S", "subcondition": 11, "parent": 2706}}, {"model": "template.logicnode", "pk": 2705, "fields": {"state_transition": 630, "node_type": "S", "subcondition": 18, "parent": 2706}}, {"model": "template.logicnode", "pk": 2706, "fields": {"state_transition": 630, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2707, "fields": {"state_transition": 631, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2708, "fields": {"state_transition": 632, "node_type": "N", "subcondition": null, "parent": 2711}}, {"model": "template.logicnode", "pk": 2709, "fields": {"state_transition": 632, "node_type": "S", "subcondition": 23, "parent": 2708}}, {"model": "template.logicnode", "pk": 2710, "fields": {"state_transition": 632, "node_type": "S", "subcondition": 11, "parent": 2711}}, {"model": "template.logicnode", "pk": 2711, "fields": {"state_transition": 632, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2712, "fields": {"state_transition": 633, "node_type": "N", "subcondition": null, "parent": 2715}}, {"model": "template.logicnode", "pk": 2713, "fields": {"state_transition": 633, "node_type": "S", "subcondition": 23, "parent": 2712}}, {"model": "template.logicnode", "pk": 2714, "fields": {"state_transition": 633, "node_type": "S", "subcondition": 18, "parent": 2715}}, {"model": "template.logicnode", "pk": 2715, "fields": {"state_transition": 633, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2716, "fields": {"state_transition": 634, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2717, "fields": {"state_transition": 634, "node_type": "S", "subcondition": 23, "parent": 2716}}, {"model": "template.logicnode", "pk": 2718, "fields": {"state_transition": 635, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2719, "fields": {"state_transition": 636, "node_type": "N", "subcondition": null, "parent": 2723}}, {"model": "template.logicnode", "pk": 2720, "fields": {"state_transition": 636, "node_type": "S", "subcondition": 23, "parent": 2719}}, {"model": "template.logicnode", "pk": 2721, "fields": {"state_transition": 636, "node_type": "S", "subcondition": 11, "parent": 2723}}, {"model": "template.logicnode", "pk": 2722, "fields": {"state_transition": 636, "node_type": "S", "subcondition": 18, "parent": 2723}}, {"model": "template.logicnode", "pk": 2723, "fields": {"state_transition": 636, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2724, "fields": {"state_transition": 637, "node_type": "N", "subcondition": null, "parent": 2727}}, {"model": "template.logicnode", "pk": 2725, "fields": {"state_transition": 637, "node_type": "S", "subcondition": 23, "parent": 2724}}, {"model": "template.logicnode", "pk": 2726, "fields": {"state_transition": 637, "node_type": "S", "subcondition": 11, "parent": 2727}}, {"model": "template.logicnode", "pk": 2727, "fields": {"state_transition": 637, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2728, "fields": {"state_transition": 638, "node_type": "N", "subcondition": null, "parent": 2731}}, {"model": "template.logicnode", "pk": 2729, "fields": {"state_transition": 638, "node_type": "S", "subcondition": 23, "parent": 2728}}, {"model": "template.logicnode", "pk": 2730, "fields": {"state_transition": 638, "node_type": "S", "subcondition": 18, "parent": 2731}}, {"model": "template.logicnode", "pk": 2731, "fields": {"state_transition": 638, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2732, "fields": {"state_transition": 639, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2733, "fields": {"state_transition": 639, "node_type": "S", "subcondition": 23, "parent": 2732}}, {"model": "template.logicnode", "pk": 2734, "fields": {"state_transition": 640, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2735, "fields": {"state_transition": 641, "node_type": "N", "subcondition": null, "parent": 2739}}, {"model": "template.logicnode", "pk": 2736, "fields": {"state_transition": 641, "node_type": "S", "subcondition": 23, "parent": 2735}}, {"model": "template.logicnode", "pk": 2737, "fields": {"state_transition": 641, "node_type": "S", "subcondition": 11, "parent": 2739}}, {"model": "template.logicnode", "pk": 2738, "fields": {"state_transition": 641, "node_type": "S", "subcondition": 18, "parent": 2739}}, {"model": "template.logicnode", "pk": 2739, "fields": {"state_transition": 641, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2740, "fields": {"state_transition": 642, "node_type": "N", "subcondition": null, "parent": 2743}}, {"model": "template.logicnode", "pk": 2741, "fields": {"state_transition": 642, "node_type": "S", "subcondition": 23, "parent": 2740}}, {"model": "template.logicnode", "pk": 2742, "fields": {"state_transition": 642, "node_type": "S", "subcondition": 11, "parent": 2743}}, {"model": "template.logicnode", "pk": 2743, "fields": {"state_transition": 642, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2744, "fields": {"state_transition": 643, "node_type": "N", "subcondition": null, "parent": 2747}}, {"model": "template.logicnode", "pk": 2745, "fields": {"state_transition": 643, "node_type": "S", "subcondition": 23, "parent": 2744}}, {"model": "template.logicnode", "pk": 2746, "fields": {"state_transition": 643, "node_type": "S", "subcondition": 18, "parent": 2747}}, {"model": "template.logicnode", "pk": 2747, "fields": {"state_transition": 643, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2748, "fields": {"state_transition": 644, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2749, "fields": {"state_transition": 644, "node_type": "S", "subcondition": 23, "parent": 2748}}, {"model": "template.logicnode", "pk": 2750, "fields": {"state_transition": 645, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2751, "fields": {"state_transition": 646, "node_type": "N", "subcondition": null, "parent": 2755}}, {"model": "template.logicnode", "pk": 2752, "fields": {"state_transition": 646, "node_type": "S", "subcondition": 23, "parent": 2751}}, {"model": "template.logicnode", "pk": 2753, "fields": {"state_transition": 646, "node_type": "S", "subcondition": 11, "parent": 2755}}, {"model": "template.logicnode", "pk": 2754, "fields": {"state_transition": 646, "node_type": "S", "subcondition": 18, "parent": 2755}}, {"model": "template.logicnode", "pk": 2755, "fields": {"state_transition": 646, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2756, "fields": {"state_transition": 647, "node_type": "N", "subcondition": null, "parent": 2759}}, {"model": "template.logicnode", "pk": 2757, "fields": {"state_transition": 647, "node_type": "S", "subcondition": 23, "parent": 2756}}, {"model": "template.logicnode", "pk": 2758, "fields": {"state_transition": 647, "node_type": "S", "subcondition": 11, "parent": 2759}}, {"model": "template.logicnode", "pk": 2759, "fields": {"state_transition": 647, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2760, "fields": {"state_transition": 648, "node_type": "N", "subcondition": null, "parent": 2763}}, {"model": "template.logicnode", "pk": 2761, "fields": {"state_transition": 648, "node_type": "S", "subcondition": 23, "parent": 2760}}, {"model": "template.logicnode", "pk": 2762, "fields": {"state_transition": 648, "node_type": "S", "subcondition": 18, "parent": 2763}}, {"model": "template.logicnode", "pk": 2763, "fields": {"state_transition": 648, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2764, "fields": {"state_transition": 649, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2765, "fields": {"state_transition": 649, "node_type": "S", "subcondition": 23, "parent": 2764}}, {"model": "template.logicnode", "pk": 2766, "fields": {"state_transition": 650, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2767, "fields": {"state_transition": 651, "node_type": "N", "subcondition": null, "parent": 2771}}, {"model": "template.logicnode", "pk": 2768, "fields": {"state_transition": 651, "node_type": "S", "subcondition": 23, "parent": 2767}}, {"model": "template.logicnode", "pk": 2769, "fields": {"state_transition": 651, "node_type": "S", "subcondition": 11, "parent": 2771}}, {"model": "template.logicnode", "pk": 2770, "fields": {"state_transition": 651, "node_type": "S", "subcondition": 18, "parent": 2771}}, {"model": "template.logicnode", "pk": 2771, "fields": {"state_transition": 651, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2772, "fields": {"state_transition": 652, "node_type": "N", "subcondition": null, "parent": 2775}}, {"model": "template.logicnode", "pk": 2773, "fields": {"state_transition": 652, "node_type": "S", "subcondition": 23, "parent": 2772}}, {"model": "template.logicnode", "pk": 2774, "fields": {"state_transition": 652, "node_type": "S", "subcondition": 11, "parent": 2775}}, {"model": "template.logicnode", "pk": 2775, "fields": {"state_transition": 652, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2776, "fields": {"state_transition": 653, "node_type": "N", "subcondition": null, "parent": 2779}}, {"model": "template.logicnode", "pk": 2777, "fields": {"state_transition": 653, "node_type": "S", "subcondition": 23, "parent": 2776}}, {"model": "template.logicnode", "pk": 2778, "fields": {"state_transition": 653, "node_type": "S", "subcondition": 18, "parent": 2779}}, {"model": "template.logicnode", "pk": 2779, "fields": {"state_transition": 653, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2780, "fields": {"state_transition": 654, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2781, "fields": {"state_transition": 654, "node_type": "S", "subcondition": 23, "parent": 2780}}, {"model": "template.logicnode", "pk": 2782, "fields": {"state_transition": 655, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2783, "fields": {"state_transition": 656, "node_type": "N", "subcondition": null, "parent": 2787}}, {"model": "template.logicnode", "pk": 2784, "fields": {"state_transition": 656, "node_type": "S", "subcondition": 23, "parent": 2783}}, {"model": "template.logicnode", "pk": 2785, "fields": {"state_transition": 656, "node_type": "S", "subcondition": 11, "parent": 2787}}, {"model": "template.logicnode", "pk": 2786, "fields": {"state_transition": 656, "node_type": "S", "subcondition": 18, "parent": 2787}}, {"model": "template.logicnode", "pk": 2787, "fields": {"state_transition": 656, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2788, "fields": {"state_transition": 657, "node_type": "N", "subcondition": null, "parent": 2791}}, {"model": "template.logicnode", "pk": 2789, "fields": {"state_transition": 657, "node_type": "S", "subcondition": 23, "parent": 2788}}, {"model": "template.logicnode", "pk": 2790, "fields": {"state_transition": 657, "node_type": "S", "subcondition": 11, "parent": 2791}}, {"model": "template.logicnode", "pk": 2791, "fields": {"state_transition": 657, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2792, "fields": {"state_transition": 658, "node_type": "N", "subcondition": null, "parent": 2795}}, {"model": "template.logicnode", "pk": 2793, "fields": {"state_transition": 658, "node_type": "S", "subcondition": 23, "parent": 2792}}, {"model": "template.logicnode", "pk": 2794, "fields": {"state_transition": 658, "node_type": "S", "subcondition": 18, "parent": 2795}}, {"model": "template.logicnode", "pk": 2795, "fields": {"state_transition": 658, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2796, "fields": {"state_transition": 659, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2797, "fields": {"state_transition": 659, "node_type": "S", "subcondition": 23, "parent": 2796}}, {"model": "template.logicnode", "pk": 2798, "fields": {"state_transition": 660, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2799, "fields": {"state_transition": 661, "node_type": "N", "subcondition": null, "parent": 2803}}, {"model": "template.logicnode", "pk": 2800, "fields": {"state_transition": 661, "node_type": "S", "subcondition": 23, "parent": 2799}}, {"model": "template.logicnode", "pk": 2801, "fields": {"state_transition": 661, "node_type": "S", "subcondition": 11, "parent": 2803}}, {"model": "template.logicnode", "pk": 2802, "fields": {"state_transition": 661, "node_type": "S", "subcondition": 18, "parent": 2803}}, {"model": "template.logicnode", "pk": 2803, "fields": {"state_transition": 661, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2804, "fields": {"state_transition": 662, "node_type": "N", "subcondition": null, "parent": 2807}}, {"model": "template.logicnode", "pk": 2805, "fields": {"state_transition": 662, "node_type": "S", "subcondition": 23, "parent": 2804}}, {"model": "template.logicnode", "pk": 2806, "fields": {"state_transition": 662, "node_type": "S", "subcondition": 11, "parent": 2807}}, {"model": "template.logicnode", "pk": 2807, "fields": {"state_transition": 662, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2808, "fields": {"state_transition": 663, "node_type": "N", "subcondition": null, "parent": 2811}}, {"model": "template.logicnode", "pk": 2809, "fields": {"state_transition": 663, "node_type": "S", "subcondition": 23, "parent": 2808}}, {"model": "template.logicnode", "pk": 2810, "fields": {"state_transition": 663, "node_type": "S", "subcondition": 18, "parent": 2811}}, {"model": "template.logicnode", "pk": 2811, "fields": {"state_transition": 663, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2812, "fields": {"state_transition": 664, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2813, "fields": {"state_transition": 664, "node_type": "S", "subcondition": 23, "parent": 2812}}, {"model": "template.logicnode", "pk": 2814, "fields": {"state_transition": 665, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2815, "fields": {"state_transition": 666, "node_type": "N", "subcondition": null, "parent": 2819}}, {"model": "template.logicnode", "pk": 2816, "fields": {"state_transition": 666, "node_type": "S", "subcondition": 23, "parent": 2815}}, {"model": "template.logicnode", "pk": 2817, "fields": {"state_transition": 666, "node_type": "S", "subcondition": 11, "parent": 2819}}, {"model": "template.logicnode", "pk": 2818, "fields": {"state_transition": 666, "node_type": "S", "subcondition": 18, "parent": 2819}}, {"model": "template.logicnode", "pk": 2819, "fields": {"state_transition": 666, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2820, "fields": {"state_transition": 667, "node_type": "N", "subcondition": null, "parent": 2823}}, {"model": "template.logicnode", "pk": 2821, "fields": {"state_transition": 667, "node_type": "S", "subcondition": 23, "parent": 2820}}, {"model": "template.logicnode", "pk": 2822, "fields": {"state_transition": 667, "node_type": "S", "subcondition": 11, "parent": 2823}}, {"model": "template.logicnode", "pk": 2823, "fields": {"state_transition": 667, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2824, "fields": {"state_transition": 668, "node_type": "N", "subcondition": null, "parent": 2827}}, {"model": "template.logicnode", "pk": 2825, "fields": {"state_transition": 668, "node_type": "S", "subcondition": 23, "parent": 2824}}, {"model": "template.logicnode", "pk": 2826, "fields": {"state_transition": 668, "node_type": "S", "subcondition": 18, "parent": 2827}}, {"model": "template.logicnode", "pk": 2827, "fields": {"state_transition": 668, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2828, "fields": {"state_transition": 669, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2829, "fields": {"state_transition": 669, "node_type": "S", "subcondition": 23, "parent": 2828}}, {"model": "template.logicnode", "pk": 2830, "fields": {"state_transition": 670, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2831, "fields": {"state_transition": 671, "node_type": "N", "subcondition": null, "parent": 2835}}, {"model": "template.logicnode", "pk": 2832, "fields": {"state_transition": 671, "node_type": "S", "subcondition": 23, "parent": 2831}}, {"model": "template.logicnode", "pk": 2833, "fields": {"state_transition": 671, "node_type": "S", "subcondition": 11, "parent": 2835}}, {"model": "template.logicnode", "pk": 2834, "fields": {"state_transition": 671, "node_type": "S", "subcondition": 18, "parent": 2835}}, {"model": "template.logicnode", "pk": 2835, "fields": {"state_transition": 671, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2836, "fields": {"state_transition": 672, "node_type": "N", "subcondition": null, "parent": 2839}}, {"model": "template.logicnode", "pk": 2837, "fields": {"state_transition": 672, "node_type": "S", "subcondition": 23, "parent": 2836}}, {"model": "template.logicnode", "pk": 2838, "fields": {"state_transition": 672, "node_type": "S", "subcondition": 11, "parent": 2839}}, {"model": "template.logicnode", "pk": 2839, "fields": {"state_transition": 672, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2840, "fields": {"state_transition": 673, "node_type": "N", "subcondition": null, "parent": 2843}}, {"model": "template.logicnode", "pk": 2841, "fields": {"state_transition": 673, "node_type": "S", "subcondition": 23, "parent": 2840}}, {"model": "template.logicnode", "pk": 2842, "fields": {"state_transition": 673, "node_type": "S", "subcondition": 18, "parent": 2843}}, {"model": "template.logicnode", "pk": 2843, "fields": {"state_transition": 673, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2844, "fields": {"state_transition": 674, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2845, "fields": {"state_transition": 674, "node_type": "S", "subcondition": 23, "parent": 2844}}, {"model": "template.logicnode", "pk": 2846, "fields": {"state_transition": 675, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2847, "fields": {"state_transition": 676, "node_type": "N", "subcondition": null, "parent": 2853}}, {"model": "template.logicnode", "pk": 2848, "fields": {"state_transition": 676, "node_type": "S", "subcondition": 23, "parent": 2847}}, {"model": "template.logicnode", "pk": 2849, "fields": {"state_transition": 676, "node_type": "S", "subcondition": 11, "parent": 2853}}, {"model": "template.logicnode", "pk": 2850, "fields": {"state_transition": 676, "node_type": "S", "subcondition": 7, "parent": 2853}}, {"model": "template.logicnode", "pk": 2851, "fields": {"state_transition": 676, "node_type": "S", "subcondition": 2, "parent": 2853}}, {"model": "template.logicnode", "pk": 2852, "fields": {"state_transition": 676, "node_type": "S", "subcondition": 12, "parent": 2853}}, {"model": "template.logicnode", "pk": 2853, "fields": {"state_transition": 676, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2854, "fields": {"state_transition": 677, "node_type": "N", "subcondition": null, "parent": 2859}}, {"model": "template.logicnode", "pk": 2855, "fields": {"state_transition": 677, "node_type": "S", "subcondition": 23, "parent": 2854}}, {"model": "template.logicnode", "pk": 2856, "fields": {"state_transition": 677, "node_type": "S", "subcondition": 11, "parent": 2859}}, {"model": "template.logicnode", "pk": 2857, "fields": {"state_transition": 677, "node_type": "S", "subcondition": 7, "parent": 2859}}, {"model": "template.logicnode", "pk": 2858, "fields": {"state_transition": 677, "node_type": "S", "subcondition": 2, "parent": 2859}}, {"model": "template.logicnode", "pk": 2859, "fields": {"state_transition": 677, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2860, "fields": {"state_transition": 678, "node_type": "N", "subcondition": null, "parent": 2865}}, {"model": "template.logicnode", "pk": 2861, "fields": {"state_transition": 678, "node_type": "S", "subcondition": 23, "parent": 2860}}, {"model": "template.logicnode", "pk": 2862, "fields": {"state_transition": 678, "node_type": "S", "subcondition": 11, "parent": 2865}}, {"model": "template.logicnode", "pk": 2863, "fields": {"state_transition": 678, "node_type": "S", "subcondition": 7, "parent": 2865}}, {"model": "template.logicnode", "pk": 2864, "fields": {"state_transition": 678, "node_type": "S", "subcondition": 12, "parent": 2865}}, {"model": "template.logicnode", "pk": 2865, "fields": {"state_transition": 678, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2866, "fields": {"state_transition": 679, "node_type": "N", "subcondition": null, "parent": 2870}}, {"model": "template.logicnode", "pk": 2867, "fields": {"state_transition": 679, "node_type": "S", "subcondition": 23, "parent": 2866}}, {"model": "template.logicnode", "pk": 2868, "fields": {"state_transition": 679, "node_type": "S", "subcondition": 11, "parent": 2870}}, {"model": "template.logicnode", "pk": 2869, "fields": {"state_transition": 679, "node_type": "S", "subcondition": 7, "parent": 2870}}, {"model": "template.logicnode", "pk": 2870, "fields": {"state_transition": 679, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2871, "fields": {"state_transition": 680, "node_type": "N", "subcondition": null, "parent": 2876}}, {"model": "template.logicnode", "pk": 2872, "fields": {"state_transition": 680, "node_type": "S", "subcondition": 23, "parent": 2871}}, {"model": "template.logicnode", "pk": 2873, "fields": {"state_transition": 680, "node_type": "S", "subcondition": 11, "parent": 2876}}, {"model": "template.logicnode", "pk": 2874, "fields": {"state_transition": 680, "node_type": "S", "subcondition": 2, "parent": 2876}}, {"model": "template.logicnode", "pk": 2875, "fields": {"state_transition": 680, "node_type": "S", "subcondition": 12, "parent": 2876}}, {"model": "template.logicnode", "pk": 2876, "fields": {"state_transition": 680, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2877, "fields": {"state_transition": 681, "node_type": "N", "subcondition": null, "parent": 2881}}, {"model": "template.logicnode", "pk": 2878, "fields": {"state_transition": 681, "node_type": "S", "subcondition": 23, "parent": 2877}}, {"model": "template.logicnode", "pk": 2879, "fields": {"state_transition": 681, "node_type": "S", "subcondition": 11, "parent": 2881}}, {"model": "template.logicnode", "pk": 2880, "fields": {"state_transition": 681, "node_type": "S", "subcondition": 2, "parent": 2881}}, {"model": "template.logicnode", "pk": 2881, "fields": {"state_transition": 681, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2882, "fields": {"state_transition": 682, "node_type": "N", "subcondition": null, "parent": 2886}}, {"model": "template.logicnode", "pk": 2883, "fields": {"state_transition": 682, "node_type": "S", "subcondition": 23, "parent": 2882}}, {"model": "template.logicnode", "pk": 2884, "fields": {"state_transition": 682, "node_type": "S", "subcondition": 11, "parent": 2886}}, {"model": "template.logicnode", "pk": 2885, "fields": {"state_transition": 682, "node_type": "S", "subcondition": 12, "parent": 2886}}, {"model": "template.logicnode", "pk": 2886, "fields": {"state_transition": 682, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2887, "fields": {"state_transition": 683, "node_type": "N", "subcondition": null, "parent": 2890}}, {"model": "template.logicnode", "pk": 2888, "fields": {"state_transition": 683, "node_type": "S", "subcondition": 23, "parent": 2887}}, {"model": "template.logicnode", "pk": 2889, "fields": {"state_transition": 683, "node_type": "S", "subcondition": 11, "parent": 2890}}, {"model": "template.logicnode", "pk": 2890, "fields": {"state_transition": 683, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2891, "fields": {"state_transition": 684, "node_type": "N", "subcondition": null, "parent": 2896}}, {"model": "template.logicnode", "pk": 2892, "fields": {"state_transition": 684, "node_type": "S", "subcondition": 23, "parent": 2891}}, {"model": "template.logicnode", "pk": 2893, "fields": {"state_transition": 684, "node_type": "S", "subcondition": 7, "parent": 2896}}, {"model": "template.logicnode", "pk": 2894, "fields": {"state_transition": 684, "node_type": "S", "subcondition": 2, "parent": 2896}}, {"model": "template.logicnode", "pk": 2895, "fields": {"state_transition": 684, "node_type": "S", "subcondition": 12, "parent": 2896}}, {"model": "template.logicnode", "pk": 2896, "fields": {"state_transition": 684, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2897, "fields": {"state_transition": 685, "node_type": "N", "subcondition": null, "parent": 2901}}, {"model": "template.logicnode", "pk": 2898, "fields": {"state_transition": 685, "node_type": "S", "subcondition": 23, "parent": 2897}}, {"model": "template.logicnode", "pk": 2899, "fields": {"state_transition": 685, "node_type": "S", "subcondition": 7, "parent": 2901}}, {"model": "template.logicnode", "pk": 2900, "fields": {"state_transition": 685, "node_type": "S", "subcondition": 2, "parent": 2901}}, {"model": "template.logicnode", "pk": 2901, "fields": {"state_transition": 685, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2902, "fields": {"state_transition": 686, "node_type": "N", "subcondition": null, "parent": 2906}}, {"model": "template.logicnode", "pk": 2903, "fields": {"state_transition": 686, "node_type": "S", "subcondition": 23, "parent": 2902}}, {"model": "template.logicnode", "pk": 2904, "fields": {"state_transition": 686, "node_type": "S", "subcondition": 7, "parent": 2906}}, {"model": "template.logicnode", "pk": 2905, "fields": {"state_transition": 686, "node_type": "S", "subcondition": 12, "parent": 2906}}, {"model": "template.logicnode", "pk": 2906, "fields": {"state_transition": 686, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2907, "fields": {"state_transition": 687, "node_type": "N", "subcondition": null, "parent": 2910}}, {"model": "template.logicnode", "pk": 2908, "fields": {"state_transition": 687, "node_type": "S", "subcondition": 23, "parent": 2907}}, {"model": "template.logicnode", "pk": 2909, "fields": {"state_transition": 687, "node_type": "S", "subcondition": 7, "parent": 2910}}, {"model": "template.logicnode", "pk": 2910, "fields": {"state_transition": 687, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2911, "fields": {"state_transition": 688, "node_type": "N", "subcondition": null, "parent": 2915}}, {"model": "template.logicnode", "pk": 2912, "fields": {"state_transition": 688, "node_type": "S", "subcondition": 23, "parent": 2911}}, {"model": "template.logicnode", "pk": 2913, "fields": {"state_transition": 688, "node_type": "S", "subcondition": 2, "parent": 2915}}, {"model": "template.logicnode", "pk": 2914, "fields": {"state_transition": 688, "node_type": "S", "subcondition": 12, "parent": 2915}}, {"model": "template.logicnode", "pk": 2915, "fields": {"state_transition": 688, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2916, "fields": {"state_transition": 689, "node_type": "N", "subcondition": null, "parent": 2919}}, {"model": "template.logicnode", "pk": 2917, "fields": {"state_transition": 689, "node_type": "S", "subcondition": 23, "parent": 2916}}, {"model": "template.logicnode", "pk": 2918, "fields": {"state_transition": 689, "node_type": "S", "subcondition": 2, "parent": 2919}}, {"model": "template.logicnode", "pk": 2919, "fields": {"state_transition": 689, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2920, "fields": {"state_transition": 690, "node_type": "N", "subcondition": null, "parent": 2923}}, {"model": "template.logicnode", "pk": 2921, "fields": {"state_transition": 690, "node_type": "S", "subcondition": 23, "parent": 2920}}, {"model": "template.logicnode", "pk": 2922, "fields": {"state_transition": 690, "node_type": "S", "subcondition": 12, "parent": 2923}}, {"model": "template.logicnode", "pk": 2923, "fields": {"state_transition": 690, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2924, "fields": {"state_transition": 691, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2925, "fields": {"state_transition": 691, "node_type": "S", "subcondition": 23, "parent": 2924}}, {"model": "template.logicnode", "pk": 2926, "fields": {"state_transition": 692, "node_type": "S", "subcondition": 23, "parent": 2930}}, {"model": "template.logicnode", "pk": 2927, "fields": {"state_transition": 692, "node_type": "S", "subcondition": 7, "parent": 2930}}, {"model": "template.logicnode", "pk": 2928, "fields": {"state_transition": 692, "node_type": "S", "subcondition": 2, "parent": 2930}}, {"model": "template.logicnode", "pk": 2929, "fields": {"state_transition": 692, "node_type": "S", "subcondition": 12, "parent": 2930}}, {"model": "template.logicnode", "pk": 2930, "fields": {"state_transition": 692, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2931, "fields": {"state_transition": 693, "node_type": "S", "subcondition": 23, "parent": 2934}}, {"model": "template.logicnode", "pk": 2932, "fields": {"state_transition": 693, "node_type": "S", "subcondition": 7, "parent": 2934}}, {"model": "template.logicnode", "pk": 2933, "fields": {"state_transition": 693, "node_type": "S", "subcondition": 2, "parent": 2934}}, {"model": "template.logicnode", "pk": 2934, "fields": {"state_transition": 693, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2935, "fields": {"state_transition": 694, "node_type": "S", "subcondition": 23, "parent": 2938}}, {"model": "template.logicnode", "pk": 2936, "fields": {"state_transition": 694, "node_type": "S", "subcondition": 7, "parent": 2938}}, {"model": "template.logicnode", "pk": 2937, "fields": {"state_transition": 694, "node_type": "S", "subcondition": 12, "parent": 2938}}, {"model": "template.logicnode", "pk": 2938, "fields": {"state_transition": 694, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2939, "fields": {"state_transition": 695, "node_type": "S", "subcondition": 23, "parent": 2941}}, {"model": "template.logicnode", "pk": 2940, "fields": {"state_transition": 695, "node_type": "S", "subcondition": 7, "parent": 2941}}, {"model": "template.logicnode", "pk": 2941, "fields": {"state_transition": 695, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2942, "fields": {"state_transition": 696, "node_type": "S", "subcondition": 23, "parent": 2945}}, {"model": "template.logicnode", "pk": 2943, "fields": {"state_transition": 696, "node_type": "S", "subcondition": 2, "parent": 2945}}, {"model": "template.logicnode", "pk": 2944, "fields": {"state_transition": 696, "node_type": "S", "subcondition": 12, "parent": 2945}}, {"model": "template.logicnode", "pk": 2945, "fields": {"state_transition": 696, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2946, "fields": {"state_transition": 697, "node_type": "S", "subcondition": 23, "parent": 2948}}, {"model": "template.logicnode", "pk": 2947, "fields": {"state_transition": 697, "node_type": "S", "subcondition": 2, "parent": 2948}}, {"model": "template.logicnode", "pk": 2948, "fields": {"state_transition": 697, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2949, "fields": {"state_transition": 698, "node_type": "S", "subcondition": 23, "parent": 2951}}, {"model": "template.logicnode", "pk": 2950, "fields": {"state_transition": 698, "node_type": "S", "subcondition": 12, "parent": 2951}}, {"model": "template.logicnode", "pk": 2951, "fields": {"state_transition": 698, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2952, "fields": {"state_transition": 699, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 2953, "fields": {"state_transition": 700, "node_type": "N", "subcondition": null, "parent": 2959}}, {"model": "template.logicnode", "pk": 2954, "fields": {"state_transition": 700, "node_type": "S", "subcondition": 23, "parent": 2953}}, {"model": "template.logicnode", "pk": 2955, "fields": {"state_transition": 700, "node_type": "S", "subcondition": 11, "parent": 2959}}, {"model": "template.logicnode", "pk": 2956, "fields": {"state_transition": 700, "node_type": "S", "subcondition": 7, "parent": 2959}}, {"model": "template.logicnode", "pk": 2957, "fields": {"state_transition": 700, "node_type": "S", "subcondition": 2, "parent": 2959}}, {"model": "template.logicnode", "pk": 2958, "fields": {"state_transition": 700, "node_type": "S", "subcondition": 12, "parent": 2959}}, {"model": "template.logicnode", "pk": 2959, "fields": {"state_transition": 700, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2960, "fields": {"state_transition": 701, "node_type": "N", "subcondition": null, "parent": 2965}}, {"model": "template.logicnode", "pk": 2961, "fields": {"state_transition": 701, "node_type": "S", "subcondition": 23, "parent": 2960}}, {"model": "template.logicnode", "pk": 2962, "fields": {"state_transition": 701, "node_type": "S", "subcondition": 11, "parent": 2965}}, {"model": "template.logicnode", "pk": 2963, "fields": {"state_transition": 701, "node_type": "S", "subcondition": 7, "parent": 2965}}, {"model": "template.logicnode", "pk": 2964, "fields": {"state_transition": 701, "node_type": "S", "subcondition": 2, "parent": 2965}}, {"model": "template.logicnode", "pk": 2965, "fields": {"state_transition": 701, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2966, "fields": {"state_transition": 702, "node_type": "N", "subcondition": null, "parent": 2971}}, {"model": "template.logicnode", "pk": 2967, "fields": {"state_transition": 702, "node_type": "S", "subcondition": 23, "parent": 2966}}, {"model": "template.logicnode", "pk": 2968, "fields": {"state_transition": 702, "node_type": "S", "subcondition": 11, "parent": 2971}}, {"model": "template.logicnode", "pk": 2969, "fields": {"state_transition": 702, "node_type": "S", "subcondition": 7, "parent": 2971}}, {"model": "template.logicnode", "pk": 2970, "fields": {"state_transition": 702, "node_type": "S", "subcondition": 12, "parent": 2971}}, {"model": "template.logicnode", "pk": 2971, "fields": {"state_transition": 702, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2972, "fields": {"state_transition": 703, "node_type": "N", "subcondition": null, "parent": 2976}}, {"model": "template.logicnode", "pk": 2973, "fields": {"state_transition": 703, "node_type": "S", "subcondition": 23, "parent": 2972}}, {"model": "template.logicnode", "pk": 2974, "fields": {"state_transition": 703, "node_type": "S", "subcondition": 11, "parent": 2976}}, {"model": "template.logicnode", "pk": 2975, "fields": {"state_transition": 703, "node_type": "S", "subcondition": 7, "parent": 2976}}, {"model": "template.logicnode", "pk": 2976, "fields": {"state_transition": 703, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2977, "fields": {"state_transition": 704, "node_type": "N", "subcondition": null, "parent": 2982}}, {"model": "template.logicnode", "pk": 2978, "fields": {"state_transition": 704, "node_type": "S", "subcondition": 23, "parent": 2977}}, {"model": "template.logicnode", "pk": 2979, "fields": {"state_transition": 704, "node_type": "S", "subcondition": 11, "parent": 2982}}, {"model": "template.logicnode", "pk": 2980, "fields": {"state_transition": 704, "node_type": "S", "subcondition": 2, "parent": 2982}}, {"model": "template.logicnode", "pk": 2981, "fields": {"state_transition": 704, "node_type": "S", "subcondition": 12, "parent": 2982}}, {"model": "template.logicnode", "pk": 2982, "fields": {"state_transition": 704, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2983, "fields": {"state_transition": 705, "node_type": "N", "subcondition": null, "parent": 2987}}, {"model": "template.logicnode", "pk": 2984, "fields": {"state_transition": 705, "node_type": "S", "subcondition": 23, "parent": 2983}}, {"model": "template.logicnode", "pk": 2985, "fields": {"state_transition": 705, "node_type": "S", "subcondition": 11, "parent": 2987}}, {"model": "template.logicnode", "pk": 2986, "fields": {"state_transition": 705, "node_type": "S", "subcondition": 2, "parent": 2987}}, {"model": "template.logicnode", "pk": 2987, "fields": {"state_transition": 705, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2988, "fields": {"state_transition": 706, "node_type": "N", "subcondition": null, "parent": 2992}}, {"model": "template.logicnode", "pk": 2989, "fields": {"state_transition": 706, "node_type": "S", "subcondition": 23, "parent": 2988}}, {"model": "template.logicnode", "pk": 2990, "fields": {"state_transition": 706, "node_type": "S", "subcondition": 11, "parent": 2992}}, {"model": "template.logicnode", "pk": 2991, "fields": {"state_transition": 706, "node_type": "S", "subcondition": 12, "parent": 2992}}, {"model": "template.logicnode", "pk": 2992, "fields": {"state_transition": 706, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2993, "fields": {"state_transition": 707, "node_type": "N", "subcondition": null, "parent": 2996}}, {"model": "template.logicnode", "pk": 2994, "fields": {"state_transition": 707, "node_type": "S", "subcondition": 23, "parent": 2993}}, {"model": "template.logicnode", "pk": 2995, "fields": {"state_transition": 707, "node_type": "S", "subcondition": 11, "parent": 2996}}, {"model": "template.logicnode", "pk": 2996, "fields": {"state_transition": 707, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 2997, "fields": {"state_transition": 708, "node_type": "N", "subcondition": null, "parent": 3002}}, {"model": "template.logicnode", "pk": 2998, "fields": {"state_transition": 708, "node_type": "S", "subcondition": 23, "parent": 2997}}, {"model": "template.logicnode", "pk": 2999, "fields": {"state_transition": 708, "node_type": "S", "subcondition": 7, "parent": 3002}}, {"model": "template.logicnode", "pk": 3000, "fields": {"state_transition": 708, "node_type": "S", "subcondition": 2, "parent": 3002}}, {"model": "template.logicnode", "pk": 3001, "fields": {"state_transition": 708, "node_type": "S", "subcondition": 12, "parent": 3002}}, {"model": "template.logicnode", "pk": 3002, "fields": {"state_transition": 708, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3003, "fields": {"state_transition": 709, "node_type": "N", "subcondition": null, "parent": 3007}}, {"model": "template.logicnode", "pk": 3004, "fields": {"state_transition": 709, "node_type": "S", "subcondition": 23, "parent": 3003}}, {"model": "template.logicnode", "pk": 3005, "fields": {"state_transition": 709, "node_type": "S", "subcondition": 7, "parent": 3007}}, {"model": "template.logicnode", "pk": 3006, "fields": {"state_transition": 709, "node_type": "S", "subcondition": 2, "parent": 3007}}, {"model": "template.logicnode", "pk": 3007, "fields": {"state_transition": 709, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3008, "fields": {"state_transition": 710, "node_type": "N", "subcondition": null, "parent": 3012}}, {"model": "template.logicnode", "pk": 3009, "fields": {"state_transition": 710, "node_type": "S", "subcondition": 23, "parent": 3008}}, {"model": "template.logicnode", "pk": 3010, "fields": {"state_transition": 710, "node_type": "S", "subcondition": 7, "parent": 3012}}, {"model": "template.logicnode", "pk": 3011, "fields": {"state_transition": 710, "node_type": "S", "subcondition": 12, "parent": 3012}}, {"model": "template.logicnode", "pk": 3012, "fields": {"state_transition": 710, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3013, "fields": {"state_transition": 711, "node_type": "N", "subcondition": null, "parent": 3016}}, {"model": "template.logicnode", "pk": 3014, "fields": {"state_transition": 711, "node_type": "S", "subcondition": 23, "parent": 3013}}, {"model": "template.logicnode", "pk": 3015, "fields": {"state_transition": 711, "node_type": "S", "subcondition": 7, "parent": 3016}}, {"model": "template.logicnode", "pk": 3016, "fields": {"state_transition": 711, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3017, "fields": {"state_transition": 712, "node_type": "N", "subcondition": null, "parent": 3021}}, {"model": "template.logicnode", "pk": 3018, "fields": {"state_transition": 712, "node_type": "S", "subcondition": 23, "parent": 3017}}, {"model": "template.logicnode", "pk": 3019, "fields": {"state_transition": 712, "node_type": "S", "subcondition": 2, "parent": 3021}}, {"model": "template.logicnode", "pk": 3020, "fields": {"state_transition": 712, "node_type": "S", "subcondition": 12, "parent": 3021}}, {"model": "template.logicnode", "pk": 3021, "fields": {"state_transition": 712, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3022, "fields": {"state_transition": 713, "node_type": "N", "subcondition": null, "parent": 3025}}, {"model": "template.logicnode", "pk": 3023, "fields": {"state_transition": 713, "node_type": "S", "subcondition": 23, "parent": 3022}}, {"model": "template.logicnode", "pk": 3024, "fields": {"state_transition": 713, "node_type": "S", "subcondition": 2, "parent": 3025}}, {"model": "template.logicnode", "pk": 3025, "fields": {"state_transition": 713, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3026, "fields": {"state_transition": 714, "node_type": "N", "subcondition": null, "parent": 3029}}, {"model": "template.logicnode", "pk": 3027, "fields": {"state_transition": 714, "node_type": "S", "subcondition": 23, "parent": 3026}}, {"model": "template.logicnode", "pk": 3028, "fields": {"state_transition": 714, "node_type": "S", "subcondition": 12, "parent": 3029}}, {"model": "template.logicnode", "pk": 3029, "fields": {"state_transition": 714, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3030, "fields": {"state_transition": 715, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3031, "fields": {"state_transition": 715, "node_type": "S", "subcondition": 23, "parent": 3030}}, {"model": "template.logicnode", "pk": 3032, "fields": {"state_transition": 716, "node_type": "S", "subcondition": 23, "parent": 3036}}, {"model": "template.logicnode", "pk": 3033, "fields": {"state_transition": 716, "node_type": "S", "subcondition": 7, "parent": 3036}}, {"model": "template.logicnode", "pk": 3034, "fields": {"state_transition": 716, "node_type": "S", "subcondition": 2, "parent": 3036}}, {"model": "template.logicnode", "pk": 3035, "fields": {"state_transition": 716, "node_type": "S", "subcondition": 12, "parent": 3036}}, {"model": "template.logicnode", "pk": 3036, "fields": {"state_transition": 716, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3037, "fields": {"state_transition": 717, "node_type": "S", "subcondition": 23, "parent": 3040}}, {"model": "template.logicnode", "pk": 3038, "fields": {"state_transition": 717, "node_type": "S", "subcondition": 7, "parent": 3040}}, {"model": "template.logicnode", "pk": 3039, "fields": {"state_transition": 717, "node_type": "S", "subcondition": 2, "parent": 3040}}, {"model": "template.logicnode", "pk": 3040, "fields": {"state_transition": 717, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3041, "fields": {"state_transition": 718, "node_type": "S", "subcondition": 23, "parent": 3044}}, {"model": "template.logicnode", "pk": 3042, "fields": {"state_transition": 718, "node_type": "S", "subcondition": 7, "parent": 3044}}, {"model": "template.logicnode", "pk": 3043, "fields": {"state_transition": 718, "node_type": "S", "subcondition": 12, "parent": 3044}}, {"model": "template.logicnode", "pk": 3044, "fields": {"state_transition": 718, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3045, "fields": {"state_transition": 719, "node_type": "S", "subcondition": 23, "parent": 3047}}, {"model": "template.logicnode", "pk": 3046, "fields": {"state_transition": 719, "node_type": "S", "subcondition": 7, "parent": 3047}}, {"model": "template.logicnode", "pk": 3047, "fields": {"state_transition": 719, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3048, "fields": {"state_transition": 720, "node_type": "S", "subcondition": 23, "parent": 3051}}, {"model": "template.logicnode", "pk": 3049, "fields": {"state_transition": 720, "node_type": "S", "subcondition": 2, "parent": 3051}}, {"model": "template.logicnode", "pk": 3050, "fields": {"state_transition": 720, "node_type": "S", "subcondition": 12, "parent": 3051}}, {"model": "template.logicnode", "pk": 3051, "fields": {"state_transition": 720, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3052, "fields": {"state_transition": 721, "node_type": "S", "subcondition": 23, "parent": 3054}}, {"model": "template.logicnode", "pk": 3053, "fields": {"state_transition": 721, "node_type": "S", "subcondition": 2, "parent": 3054}}, {"model": "template.logicnode", "pk": 3054, "fields": {"state_transition": 721, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3055, "fields": {"state_transition": 722, "node_type": "S", "subcondition": 23, "parent": 3057}}, {"model": "template.logicnode", "pk": 3056, "fields": {"state_transition": 722, "node_type": "S", "subcondition": 12, "parent": 3057}}, {"model": "template.logicnode", "pk": 3057, "fields": {"state_transition": 722, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3058, "fields": {"state_transition": 723, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3059, "fields": {"state_transition": 724, "node_type": "N", "subcondition": null, "parent": 3065}}, {"model": "template.logicnode", "pk": 3060, "fields": {"state_transition": 724, "node_type": "S", "subcondition": 23, "parent": 3059}}, {"model": "template.logicnode", "pk": 3061, "fields": {"state_transition": 724, "node_type": "S", "subcondition": 11, "parent": 3065}}, {"model": "template.logicnode", "pk": 3062, "fields": {"state_transition": 724, "node_type": "S", "subcondition": 7, "parent": 3065}}, {"model": "template.logicnode", "pk": 3063, "fields": {"state_transition": 724, "node_type": "S", "subcondition": 2, "parent": 3065}}, {"model": "template.logicnode", "pk": 3064, "fields": {"state_transition": 724, "node_type": "S", "subcondition": 12, "parent": 3065}}, {"model": "template.logicnode", "pk": 3065, "fields": {"state_transition": 724, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3066, "fields": {"state_transition": 725, "node_type": "N", "subcondition": null, "parent": 3071}}, {"model": "template.logicnode", "pk": 3067, "fields": {"state_transition": 725, "node_type": "S", "subcondition": 23, "parent": 3066}}, {"model": "template.logicnode", "pk": 3068, "fields": {"state_transition": 725, "node_type": "S", "subcondition": 11, "parent": 3071}}, {"model": "template.logicnode", "pk": 3069, "fields": {"state_transition": 725, "node_type": "S", "subcondition": 7, "parent": 3071}}, {"model": "template.logicnode", "pk": 3070, "fields": {"state_transition": 725, "node_type": "S", "subcondition": 2, "parent": 3071}}, {"model": "template.logicnode", "pk": 3071, "fields": {"state_transition": 725, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3072, "fields": {"state_transition": 726, "node_type": "N", "subcondition": null, "parent": 3077}}, {"model": "template.logicnode", "pk": 3073, "fields": {"state_transition": 726, "node_type": "S", "subcondition": 23, "parent": 3072}}, {"model": "template.logicnode", "pk": 3074, "fields": {"state_transition": 726, "node_type": "S", "subcondition": 11, "parent": 3077}}, {"model": "template.logicnode", "pk": 3075, "fields": {"state_transition": 726, "node_type": "S", "subcondition": 7, "parent": 3077}}, {"model": "template.logicnode", "pk": 3076, "fields": {"state_transition": 726, "node_type": "S", "subcondition": 12, "parent": 3077}}, {"model": "template.logicnode", "pk": 3077, "fields": {"state_transition": 726, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3078, "fields": {"state_transition": 727, "node_type": "N", "subcondition": null, "parent": 3082}}, {"model": "template.logicnode", "pk": 3079, "fields": {"state_transition": 727, "node_type": "S", "subcondition": 23, "parent": 3078}}, {"model": "template.logicnode", "pk": 3080, "fields": {"state_transition": 727, "node_type": "S", "subcondition": 11, "parent": 3082}}, {"model": "template.logicnode", "pk": 3081, "fields": {"state_transition": 727, "node_type": "S", "subcondition": 7, "parent": 3082}}, {"model": "template.logicnode", "pk": 3082, "fields": {"state_transition": 727, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3083, "fields": {"state_transition": 728, "node_type": "N", "subcondition": null, "parent": 3088}}, {"model": "template.logicnode", "pk": 3084, "fields": {"state_transition": 728, "node_type": "S", "subcondition": 23, "parent": 3083}}, {"model": "template.logicnode", "pk": 3085, "fields": {"state_transition": 728, "node_type": "S", "subcondition": 11, "parent": 3088}}, {"model": "template.logicnode", "pk": 3086, "fields": {"state_transition": 728, "node_type": "S", "subcondition": 2, "parent": 3088}}, {"model": "template.logicnode", "pk": 3087, "fields": {"state_transition": 728, "node_type": "S", "subcondition": 12, "parent": 3088}}, {"model": "template.logicnode", "pk": 3088, "fields": {"state_transition": 728, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3089, "fields": {"state_transition": 729, "node_type": "N", "subcondition": null, "parent": 3093}}, {"model": "template.logicnode", "pk": 3090, "fields": {"state_transition": 729, "node_type": "S", "subcondition": 23, "parent": 3089}}, {"model": "template.logicnode", "pk": 3091, "fields": {"state_transition": 729, "node_type": "S", "subcondition": 11, "parent": 3093}}, {"model": "template.logicnode", "pk": 3092, "fields": {"state_transition": 729, "node_type": "S", "subcondition": 2, "parent": 3093}}, {"model": "template.logicnode", "pk": 3093, "fields": {"state_transition": 729, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3094, "fields": {"state_transition": 730, "node_type": "N", "subcondition": null, "parent": 3098}}, {"model": "template.logicnode", "pk": 3095, "fields": {"state_transition": 730, "node_type": "S", "subcondition": 23, "parent": 3094}}, {"model": "template.logicnode", "pk": 3096, "fields": {"state_transition": 730, "node_type": "S", "subcondition": 11, "parent": 3098}}, {"model": "template.logicnode", "pk": 3097, "fields": {"state_transition": 730, "node_type": "S", "subcondition": 12, "parent": 3098}}, {"model": "template.logicnode", "pk": 3098, "fields": {"state_transition": 730, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3099, "fields": {"state_transition": 731, "node_type": "N", "subcondition": null, "parent": 3102}}, {"model": "template.logicnode", "pk": 3100, "fields": {"state_transition": 731, "node_type": "S", "subcondition": 23, "parent": 3099}}, {"model": "template.logicnode", "pk": 3101, "fields": {"state_transition": 731, "node_type": "S", "subcondition": 11, "parent": 3102}}, {"model": "template.logicnode", "pk": 3102, "fields": {"state_transition": 731, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3103, "fields": {"state_transition": 732, "node_type": "N", "subcondition": null, "parent": 3108}}, {"model": "template.logicnode", "pk": 3104, "fields": {"state_transition": 732, "node_type": "S", "subcondition": 23, "parent": 3103}}, {"model": "template.logicnode", "pk": 3105, "fields": {"state_transition": 732, "node_type": "S", "subcondition": 7, "parent": 3108}}, {"model": "template.logicnode", "pk": 3106, "fields": {"state_transition": 732, "node_type": "S", "subcondition": 2, "parent": 3108}}, {"model": "template.logicnode", "pk": 3107, "fields": {"state_transition": 732, "node_type": "S", "subcondition": 12, "parent": 3108}}, {"model": "template.logicnode", "pk": 3108, "fields": {"state_transition": 732, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3109, "fields": {"state_transition": 733, "node_type": "N", "subcondition": null, "parent": 3113}}, {"model": "template.logicnode", "pk": 3110, "fields": {"state_transition": 733, "node_type": "S", "subcondition": 23, "parent": 3109}}, {"model": "template.logicnode", "pk": 3111, "fields": {"state_transition": 733, "node_type": "S", "subcondition": 7, "parent": 3113}}, {"model": "template.logicnode", "pk": 3112, "fields": {"state_transition": 733, "node_type": "S", "subcondition": 2, "parent": 3113}}, {"model": "template.logicnode", "pk": 3113, "fields": {"state_transition": 733, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3114, "fields": {"state_transition": 734, "node_type": "N", "subcondition": null, "parent": 3118}}, {"model": "template.logicnode", "pk": 3115, "fields": {"state_transition": 734, "node_type": "S", "subcondition": 23, "parent": 3114}}, {"model": "template.logicnode", "pk": 3116, "fields": {"state_transition": 734, "node_type": "S", "subcondition": 7, "parent": 3118}}, {"model": "template.logicnode", "pk": 3117, "fields": {"state_transition": 734, "node_type": "S", "subcondition": 12, "parent": 3118}}, {"model": "template.logicnode", "pk": 3118, "fields": {"state_transition": 734, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3119, "fields": {"state_transition": 735, "node_type": "N", "subcondition": null, "parent": 3122}}, {"model": "template.logicnode", "pk": 3120, "fields": {"state_transition": 735, "node_type": "S", "subcondition": 23, "parent": 3119}}, {"model": "template.logicnode", "pk": 3121, "fields": {"state_transition": 735, "node_type": "S", "subcondition": 7, "parent": 3122}}, {"model": "template.logicnode", "pk": 3122, "fields": {"state_transition": 735, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3123, "fields": {"state_transition": 736, "node_type": "N", "subcondition": null, "parent": 3127}}, {"model": "template.logicnode", "pk": 3124, "fields": {"state_transition": 736, "node_type": "S", "subcondition": 23, "parent": 3123}}, {"model": "template.logicnode", "pk": 3125, "fields": {"state_transition": 736, "node_type": "S", "subcondition": 2, "parent": 3127}}, {"model": "template.logicnode", "pk": 3126, "fields": {"state_transition": 736, "node_type": "S", "subcondition": 12, "parent": 3127}}, {"model": "template.logicnode", "pk": 3127, "fields": {"state_transition": 736, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3128, "fields": {"state_transition": 737, "node_type": "N", "subcondition": null, "parent": 3131}}, {"model": "template.logicnode", "pk": 3129, "fields": {"state_transition": 737, "node_type": "S", "subcondition": 23, "parent": 3128}}, {"model": "template.logicnode", "pk": 3130, "fields": {"state_transition": 737, "node_type": "S", "subcondition": 2, "parent": 3131}}, {"model": "template.logicnode", "pk": 3131, "fields": {"state_transition": 737, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3132, "fields": {"state_transition": 738, "node_type": "N", "subcondition": null, "parent": 3135}}, {"model": "template.logicnode", "pk": 3133, "fields": {"state_transition": 738, "node_type": "S", "subcondition": 23, "parent": 3132}}, {"model": "template.logicnode", "pk": 3134, "fields": {"state_transition": 738, "node_type": "S", "subcondition": 12, "parent": 3135}}, {"model": "template.logicnode", "pk": 3135, "fields": {"state_transition": 738, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3136, "fields": {"state_transition": 739, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3137, "fields": {"state_transition": 739, "node_type": "S", "subcondition": 23, "parent": 3136}}, {"model": "template.logicnode", "pk": 3138, "fields": {"state_transition": 740, "node_type": "S", "subcondition": 23, "parent": 3142}}, {"model": "template.logicnode", "pk": 3139, "fields": {"state_transition": 740, "node_type": "S", "subcondition": 7, "parent": 3142}}, {"model": "template.logicnode", "pk": 3140, "fields": {"state_transition": 740, "node_type": "S", "subcondition": 2, "parent": 3142}}, {"model": "template.logicnode", "pk": 3141, "fields": {"state_transition": 740, "node_type": "S", "subcondition": 12, "parent": 3142}}, {"model": "template.logicnode", "pk": 3142, "fields": {"state_transition": 740, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3143, "fields": {"state_transition": 741, "node_type": "S", "subcondition": 23, "parent": 3146}}, {"model": "template.logicnode", "pk": 3144, "fields": {"state_transition": 741, "node_type": "S", "subcondition": 7, "parent": 3146}}, {"model": "template.logicnode", "pk": 3145, "fields": {"state_transition": 741, "node_type": "S", "subcondition": 2, "parent": 3146}}, {"model": "template.logicnode", "pk": 3146, "fields": {"state_transition": 741, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3147, "fields": {"state_transition": 742, "node_type": "S", "subcondition": 23, "parent": 3150}}, {"model": "template.logicnode", "pk": 3148, "fields": {"state_transition": 742, "node_type": "S", "subcondition": 7, "parent": 3150}}, {"model": "template.logicnode", "pk": 3149, "fields": {"state_transition": 742, "node_type": "S", "subcondition": 12, "parent": 3150}}, {"model": "template.logicnode", "pk": 3150, "fields": {"state_transition": 742, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3151, "fields": {"state_transition": 743, "node_type": "S", "subcondition": 23, "parent": 3153}}, {"model": "template.logicnode", "pk": 3152, "fields": {"state_transition": 743, "node_type": "S", "subcondition": 7, "parent": 3153}}, {"model": "template.logicnode", "pk": 3153, "fields": {"state_transition": 743, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3154, "fields": {"state_transition": 744, "node_type": "S", "subcondition": 23, "parent": 3157}}, {"model": "template.logicnode", "pk": 3155, "fields": {"state_transition": 744, "node_type": "S", "subcondition": 2, "parent": 3157}}, {"model": "template.logicnode", "pk": 3156, "fields": {"state_transition": 744, "node_type": "S", "subcondition": 12, "parent": 3157}}, {"model": "template.logicnode", "pk": 3157, "fields": {"state_transition": 744, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3158, "fields": {"state_transition": 745, "node_type": "S", "subcondition": 23, "parent": 3160}}, {"model": "template.logicnode", "pk": 3159, "fields": {"state_transition": 745, "node_type": "S", "subcondition": 2, "parent": 3160}}, {"model": "template.logicnode", "pk": 3160, "fields": {"state_transition": 745, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3161, "fields": {"state_transition": 746, "node_type": "S", "subcondition": 23, "parent": 3163}}, {"model": "template.logicnode", "pk": 3162, "fields": {"state_transition": 746, "node_type": "S", "subcondition": 12, "parent": 3163}}, {"model": "template.logicnode", "pk": 3163, "fields": {"state_transition": 746, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3164, "fields": {"state_transition": 747, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3165, "fields": {"state_transition": 748, "node_type": "N", "subcondition": null, "parent": 3171}}, {"model": "template.logicnode", "pk": 3166, "fields": {"state_transition": 748, "node_type": "S", "subcondition": 23, "parent": 3165}}, {"model": "template.logicnode", "pk": 3167, "fields": {"state_transition": 748, "node_type": "S", "subcondition": 11, "parent": 3171}}, {"model": "template.logicnode", "pk": 3168, "fields": {"state_transition": 748, "node_type": "S", "subcondition": 7, "parent": 3171}}, {"model": "template.logicnode", "pk": 3169, "fields": {"state_transition": 748, "node_type": "S", "subcondition": 2, "parent": 3171}}, {"model": "template.logicnode", "pk": 3170, "fields": {"state_transition": 748, "node_type": "S", "subcondition": 12, "parent": 3171}}, {"model": "template.logicnode", "pk": 3171, "fields": {"state_transition": 748, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3172, "fields": {"state_transition": 749, "node_type": "N", "subcondition": null, "parent": 3177}}, {"model": "template.logicnode", "pk": 3173, "fields": {"state_transition": 749, "node_type": "S", "subcondition": 23, "parent": 3172}}, {"model": "template.logicnode", "pk": 3174, "fields": {"state_transition": 749, "node_type": "S", "subcondition": 11, "parent": 3177}}, {"model": "template.logicnode", "pk": 3175, "fields": {"state_transition": 749, "node_type": "S", "subcondition": 7, "parent": 3177}}, {"model": "template.logicnode", "pk": 3176, "fields": {"state_transition": 749, "node_type": "S", "subcondition": 2, "parent": 3177}}, {"model": "template.logicnode", "pk": 3177, "fields": {"state_transition": 749, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3178, "fields": {"state_transition": 750, "node_type": "N", "subcondition": null, "parent": 3183}}, {"model": "template.logicnode", "pk": 3179, "fields": {"state_transition": 750, "node_type": "S", "subcondition": 23, "parent": 3178}}, {"model": "template.logicnode", "pk": 3180, "fields": {"state_transition": 750, "node_type": "S", "subcondition": 11, "parent": 3183}}, {"model": "template.logicnode", "pk": 3181, "fields": {"state_transition": 750, "node_type": "S", "subcondition": 7, "parent": 3183}}, {"model": "template.logicnode", "pk": 3182, "fields": {"state_transition": 750, "node_type": "S", "subcondition": 12, "parent": 3183}}, {"model": "template.logicnode", "pk": 3183, "fields": {"state_transition": 750, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3184, "fields": {"state_transition": 751, "node_type": "N", "subcondition": null, "parent": 3188}}, {"model": "template.logicnode", "pk": 3185, "fields": {"state_transition": 751, "node_type": "S", "subcondition": 23, "parent": 3184}}, {"model": "template.logicnode", "pk": 3186, "fields": {"state_transition": 751, "node_type": "S", "subcondition": 11, "parent": 3188}}, {"model": "template.logicnode", "pk": 3187, "fields": {"state_transition": 751, "node_type": "S", "subcondition": 7, "parent": 3188}}, {"model": "template.logicnode", "pk": 3188, "fields": {"state_transition": 751, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3189, "fields": {"state_transition": 752, "node_type": "N", "subcondition": null, "parent": 3194}}, {"model": "template.logicnode", "pk": 3190, "fields": {"state_transition": 752, "node_type": "S", "subcondition": 23, "parent": 3189}}, {"model": "template.logicnode", "pk": 3191, "fields": {"state_transition": 752, "node_type": "S", "subcondition": 11, "parent": 3194}}, {"model": "template.logicnode", "pk": 3192, "fields": {"state_transition": 752, "node_type": "S", "subcondition": 2, "parent": 3194}}, {"model": "template.logicnode", "pk": 3193, "fields": {"state_transition": 752, "node_type": "S", "subcondition": 12, "parent": 3194}}, {"model": "template.logicnode", "pk": 3194, "fields": {"state_transition": 752, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3195, "fields": {"state_transition": 753, "node_type": "N", "subcondition": null, "parent": 3199}}, {"model": "template.logicnode", "pk": 3196, "fields": {"state_transition": 753, "node_type": "S", "subcondition": 23, "parent": 3195}}, {"model": "template.logicnode", "pk": 3197, "fields": {"state_transition": 753, "node_type": "S", "subcondition": 11, "parent": 3199}}, {"model": "template.logicnode", "pk": 3198, "fields": {"state_transition": 753, "node_type": "S", "subcondition": 2, "parent": 3199}}, {"model": "template.logicnode", "pk": 3199, "fields": {"state_transition": 753, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3200, "fields": {"state_transition": 754, "node_type": "N", "subcondition": null, "parent": 3204}}, {"model": "template.logicnode", "pk": 3201, "fields": {"state_transition": 754, "node_type": "S", "subcondition": 23, "parent": 3200}}, {"model": "template.logicnode", "pk": 3202, "fields": {"state_transition": 754, "node_type": "S", "subcondition": 11, "parent": 3204}}, {"model": "template.logicnode", "pk": 3203, "fields": {"state_transition": 754, "node_type": "S", "subcondition": 12, "parent": 3204}}, {"model": "template.logicnode", "pk": 3204, "fields": {"state_transition": 754, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3205, "fields": {"state_transition": 755, "node_type": "N", "subcondition": null, "parent": 3208}}, {"model": "template.logicnode", "pk": 3206, "fields": {"state_transition": 755, "node_type": "S", "subcondition": 23, "parent": 3205}}, {"model": "template.logicnode", "pk": 3207, "fields": {"state_transition": 755, "node_type": "S", "subcondition": 11, "parent": 3208}}, {"model": "template.logicnode", "pk": 3208, "fields": {"state_transition": 755, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3209, "fields": {"state_transition": 756, "node_type": "N", "subcondition": null, "parent": 3214}}, {"model": "template.logicnode", "pk": 3210, "fields": {"state_transition": 756, "node_type": "S", "subcondition": 23, "parent": 3209}}, {"model": "template.logicnode", "pk": 3211, "fields": {"state_transition": 756, "node_type": "S", "subcondition": 7, "parent": 3214}}, {"model": "template.logicnode", "pk": 3212, "fields": {"state_transition": 756, "node_type": "S", "subcondition": 2, "parent": 3214}}, {"model": "template.logicnode", "pk": 3213, "fields": {"state_transition": 756, "node_type": "S", "subcondition": 12, "parent": 3214}}, {"model": "template.logicnode", "pk": 3214, "fields": {"state_transition": 756, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3215, "fields": {"state_transition": 757, "node_type": "N", "subcondition": null, "parent": 3219}}, {"model": "template.logicnode", "pk": 3216, "fields": {"state_transition": 757, "node_type": "S", "subcondition": 23, "parent": 3215}}, {"model": "template.logicnode", "pk": 3217, "fields": {"state_transition": 757, "node_type": "S", "subcondition": 7, "parent": 3219}}, {"model": "template.logicnode", "pk": 3218, "fields": {"state_transition": 757, "node_type": "S", "subcondition": 2, "parent": 3219}}, {"model": "template.logicnode", "pk": 3219, "fields": {"state_transition": 757, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3220, "fields": {"state_transition": 758, "node_type": "N", "subcondition": null, "parent": 3224}}, {"model": "template.logicnode", "pk": 3221, "fields": {"state_transition": 758, "node_type": "S", "subcondition": 23, "parent": 3220}}, {"model": "template.logicnode", "pk": 3222, "fields": {"state_transition": 758, "node_type": "S", "subcondition": 7, "parent": 3224}}, {"model": "template.logicnode", "pk": 3223, "fields": {"state_transition": 758, "node_type": "S", "subcondition": 12, "parent": 3224}}, {"model": "template.logicnode", "pk": 3224, "fields": {"state_transition": 758, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3225, "fields": {"state_transition": 759, "node_type": "N", "subcondition": null, "parent": 3228}}, {"model": "template.logicnode", "pk": 3226, "fields": {"state_transition": 759, "node_type": "S", "subcondition": 23, "parent": 3225}}, {"model": "template.logicnode", "pk": 3227, "fields": {"state_transition": 759, "node_type": "S", "subcondition": 7, "parent": 3228}}, {"model": "template.logicnode", "pk": 3228, "fields": {"state_transition": 759, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3229, "fields": {"state_transition": 760, "node_type": "N", "subcondition": null, "parent": 3233}}, {"model": "template.logicnode", "pk": 3230, "fields": {"state_transition": 760, "node_type": "S", "subcondition": 23, "parent": 3229}}, {"model": "template.logicnode", "pk": 3231, "fields": {"state_transition": 760, "node_type": "S", "subcondition": 2, "parent": 3233}}, {"model": "template.logicnode", "pk": 3232, "fields": {"state_transition": 760, "node_type": "S", "subcondition": 12, "parent": 3233}}, {"model": "template.logicnode", "pk": 3233, "fields": {"state_transition": 760, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3234, "fields": {"state_transition": 761, "node_type": "N", "subcondition": null, "parent": 3237}}, {"model": "template.logicnode", "pk": 3235, "fields": {"state_transition": 761, "node_type": "S", "subcondition": 23, "parent": 3234}}, {"model": "template.logicnode", "pk": 3236, "fields": {"state_transition": 761, "node_type": "S", "subcondition": 2, "parent": 3237}}, {"model": "template.logicnode", "pk": 3237, "fields": {"state_transition": 761, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3238, "fields": {"state_transition": 762, "node_type": "N", "subcondition": null, "parent": 3241}}, {"model": "template.logicnode", "pk": 3239, "fields": {"state_transition": 762, "node_type": "S", "subcondition": 23, "parent": 3238}}, {"model": "template.logicnode", "pk": 3240, "fields": {"state_transition": 762, "node_type": "S", "subcondition": 12, "parent": 3241}}, {"model": "template.logicnode", "pk": 3241, "fields": {"state_transition": 762, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3242, "fields": {"state_transition": 763, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3243, "fields": {"state_transition": 763, "node_type": "S", "subcondition": 23, "parent": 3242}}, {"model": "template.logicnode", "pk": 3244, "fields": {"state_transition": 764, "node_type": "S", "subcondition": 23, "parent": 3248}}, {"model": "template.logicnode", "pk": 3245, "fields": {"state_transition": 764, "node_type": "S", "subcondition": 7, "parent": 3248}}, {"model": "template.logicnode", "pk": 3246, "fields": {"state_transition": 764, "node_type": "S", "subcondition": 2, "parent": 3248}}, {"model": "template.logicnode", "pk": 3247, "fields": {"state_transition": 764, "node_type": "S", "subcondition": 12, "parent": 3248}}, {"model": "template.logicnode", "pk": 3248, "fields": {"state_transition": 764, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3249, "fields": {"state_transition": 765, "node_type": "S", "subcondition": 23, "parent": 3252}}, {"model": "template.logicnode", "pk": 3250, "fields": {"state_transition": 765, "node_type": "S", "subcondition": 7, "parent": 3252}}, {"model": "template.logicnode", "pk": 3251, "fields": {"state_transition": 765, "node_type": "S", "subcondition": 2, "parent": 3252}}, {"model": "template.logicnode", "pk": 3252, "fields": {"state_transition": 765, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3253, "fields": {"state_transition": 766, "node_type": "S", "subcondition": 23, "parent": 3256}}, {"model": "template.logicnode", "pk": 3254, "fields": {"state_transition": 766, "node_type": "S", "subcondition": 7, "parent": 3256}}, {"model": "template.logicnode", "pk": 3255, "fields": {"state_transition": 766, "node_type": "S", "subcondition": 12, "parent": 3256}}, {"model": "template.logicnode", "pk": 3256, "fields": {"state_transition": 766, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3257, "fields": {"state_transition": 767, "node_type": "S", "subcondition": 23, "parent": 3259}}, {"model": "template.logicnode", "pk": 3258, "fields": {"state_transition": 767, "node_type": "S", "subcondition": 7, "parent": 3259}}, {"model": "template.logicnode", "pk": 3259, "fields": {"state_transition": 767, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3260, "fields": {"state_transition": 768, "node_type": "S", "subcondition": 23, "parent": 3263}}, {"model": "template.logicnode", "pk": 3261, "fields": {"state_transition": 768, "node_type": "S", "subcondition": 2, "parent": 3263}}, {"model": "template.logicnode", "pk": 3262, "fields": {"state_transition": 768, "node_type": "S", "subcondition": 12, "parent": 3263}}, {"model": "template.logicnode", "pk": 3263, "fields": {"state_transition": 768, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3264, "fields": {"state_transition": 769, "node_type": "S", "subcondition": 23, "parent": 3266}}, {"model": "template.logicnode", "pk": 3265, "fields": {"state_transition": 769, "node_type": "S", "subcondition": 2, "parent": 3266}}, {"model": "template.logicnode", "pk": 3266, "fields": {"state_transition": 769, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3267, "fields": {"state_transition": 770, "node_type": "S", "subcondition": 23, "parent": 3269}}, {"model": "template.logicnode", "pk": 3268, "fields": {"state_transition": 770, "node_type": "S", "subcondition": 12, "parent": 3269}}, {"model": "template.logicnode", "pk": 3269, "fields": {"state_transition": 770, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3270, "fields": {"state_transition": 771, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3271, "fields": {"state_transition": 772, "node_type": "N", "subcondition": null, "parent": 3277}}, {"model": "template.logicnode", "pk": 3272, "fields": {"state_transition": 772, "node_type": "S", "subcondition": 23, "parent": 3271}}, {"model": "template.logicnode", "pk": 3273, "fields": {"state_transition": 772, "node_type": "S", "subcondition": 11, "parent": 3277}}, {"model": "template.logicnode", "pk": 3274, "fields": {"state_transition": 772, "node_type": "S", "subcondition": 7, "parent": 3277}}, {"model": "template.logicnode", "pk": 3275, "fields": {"state_transition": 772, "node_type": "S", "subcondition": 2, "parent": 3277}}, {"model": "template.logicnode", "pk": 3276, "fields": {"state_transition": 772, "node_type": "S", "subcondition": 12, "parent": 3277}}, {"model": "template.logicnode", "pk": 3277, "fields": {"state_transition": 772, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3278, "fields": {"state_transition": 773, "node_type": "N", "subcondition": null, "parent": 3283}}, {"model": "template.logicnode", "pk": 3279, "fields": {"state_transition": 773, "node_type": "S", "subcondition": 23, "parent": 3278}}, {"model": "template.logicnode", "pk": 3280, "fields": {"state_transition": 773, "node_type": "S", "subcondition": 11, "parent": 3283}}, {"model": "template.logicnode", "pk": 3281, "fields": {"state_transition": 773, "node_type": "S", "subcondition": 7, "parent": 3283}}, {"model": "template.logicnode", "pk": 3282, "fields": {"state_transition": 773, "node_type": "S", "subcondition": 2, "parent": 3283}}, {"model": "template.logicnode", "pk": 3283, "fields": {"state_transition": 773, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3284, "fields": {"state_transition": 774, "node_type": "N", "subcondition": null, "parent": 3289}}, {"model": "template.logicnode", "pk": 3285, "fields": {"state_transition": 774, "node_type": "S", "subcondition": 23, "parent": 3284}}, {"model": "template.logicnode", "pk": 3286, "fields": {"state_transition": 774, "node_type": "S", "subcondition": 11, "parent": 3289}}, {"model": "template.logicnode", "pk": 3287, "fields": {"state_transition": 774, "node_type": "S", "subcondition": 7, "parent": 3289}}, {"model": "template.logicnode", "pk": 3288, "fields": {"state_transition": 774, "node_type": "S", "subcondition": 12, "parent": 3289}}, {"model": "template.logicnode", "pk": 3289, "fields": {"state_transition": 774, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3290, "fields": {"state_transition": 775, "node_type": "N", "subcondition": null, "parent": 3294}}, {"model": "template.logicnode", "pk": 3291, "fields": {"state_transition": 775, "node_type": "S", "subcondition": 23, "parent": 3290}}, {"model": "template.logicnode", "pk": 3292, "fields": {"state_transition": 775, "node_type": "S", "subcondition": 11, "parent": 3294}}, {"model": "template.logicnode", "pk": 3293, "fields": {"state_transition": 775, "node_type": "S", "subcondition": 7, "parent": 3294}}, {"model": "template.logicnode", "pk": 3294, "fields": {"state_transition": 775, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3295, "fields": {"state_transition": 776, "node_type": "N", "subcondition": null, "parent": 3300}}, {"model": "template.logicnode", "pk": 3296, "fields": {"state_transition": 776, "node_type": "S", "subcondition": 23, "parent": 3295}}, {"model": "template.logicnode", "pk": 3297, "fields": {"state_transition": 776, "node_type": "S", "subcondition": 11, "parent": 3300}}, {"model": "template.logicnode", "pk": 3298, "fields": {"state_transition": 776, "node_type": "S", "subcondition": 2, "parent": 3300}}, {"model": "template.logicnode", "pk": 3299, "fields": {"state_transition": 776, "node_type": "S", "subcondition": 12, "parent": 3300}}, {"model": "template.logicnode", "pk": 3300, "fields": {"state_transition": 776, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3301, "fields": {"state_transition": 777, "node_type": "N", "subcondition": null, "parent": 3305}}, {"model": "template.logicnode", "pk": 3302, "fields": {"state_transition": 777, "node_type": "S", "subcondition": 23, "parent": 3301}}, {"model": "template.logicnode", "pk": 3303, "fields": {"state_transition": 777, "node_type": "S", "subcondition": 11, "parent": 3305}}, {"model": "template.logicnode", "pk": 3304, "fields": {"state_transition": 777, "node_type": "S", "subcondition": 2, "parent": 3305}}, {"model": "template.logicnode", "pk": 3305, "fields": {"state_transition": 777, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3306, "fields": {"state_transition": 778, "node_type": "N", "subcondition": null, "parent": 3310}}, {"model": "template.logicnode", "pk": 3307, "fields": {"state_transition": 778, "node_type": "S", "subcondition": 23, "parent": 3306}}, {"model": "template.logicnode", "pk": 3308, "fields": {"state_transition": 778, "node_type": "S", "subcondition": 11, "parent": 3310}}, {"model": "template.logicnode", "pk": 3309, "fields": {"state_transition": 778, "node_type": "S", "subcondition": 12, "parent": 3310}}, {"model": "template.logicnode", "pk": 3310, "fields": {"state_transition": 778, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3311, "fields": {"state_transition": 779, "node_type": "N", "subcondition": null, "parent": 3314}}, {"model": "template.logicnode", "pk": 3312, "fields": {"state_transition": 779, "node_type": "S", "subcondition": 23, "parent": 3311}}, {"model": "template.logicnode", "pk": 3313, "fields": {"state_transition": 779, "node_type": "S", "subcondition": 11, "parent": 3314}}, {"model": "template.logicnode", "pk": 3314, "fields": {"state_transition": 779, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3315, "fields": {"state_transition": 780, "node_type": "N", "subcondition": null, "parent": 3320}}, {"model": "template.logicnode", "pk": 3316, "fields": {"state_transition": 780, "node_type": "S", "subcondition": 23, "parent": 3315}}, {"model": "template.logicnode", "pk": 3317, "fields": {"state_transition": 780, "node_type": "S", "subcondition": 7, "parent": 3320}}, {"model": "template.logicnode", "pk": 3318, "fields": {"state_transition": 780, "node_type": "S", "subcondition": 2, "parent": 3320}}, {"model": "template.logicnode", "pk": 3319, "fields": {"state_transition": 780, "node_type": "S", "subcondition": 12, "parent": 3320}}, {"model": "template.logicnode", "pk": 3320, "fields": {"state_transition": 780, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3321, "fields": {"state_transition": 781, "node_type": "N", "subcondition": null, "parent": 3325}}, {"model": "template.logicnode", "pk": 3322, "fields": {"state_transition": 781, "node_type": "S", "subcondition": 23, "parent": 3321}}, {"model": "template.logicnode", "pk": 3323, "fields": {"state_transition": 781, "node_type": "S", "subcondition": 7, "parent": 3325}}, {"model": "template.logicnode", "pk": 3324, "fields": {"state_transition": 781, "node_type": "S", "subcondition": 2, "parent": 3325}}, {"model": "template.logicnode", "pk": 3325, "fields": {"state_transition": 781, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3326, "fields": {"state_transition": 782, "node_type": "N", "subcondition": null, "parent": 3330}}, {"model": "template.logicnode", "pk": 3327, "fields": {"state_transition": 782, "node_type": "S", "subcondition": 23, "parent": 3326}}, {"model": "template.logicnode", "pk": 3328, "fields": {"state_transition": 782, "node_type": "S", "subcondition": 7, "parent": 3330}}, {"model": "template.logicnode", "pk": 3329, "fields": {"state_transition": 782, "node_type": "S", "subcondition": 12, "parent": 3330}}, {"model": "template.logicnode", "pk": 3330, "fields": {"state_transition": 782, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3331, "fields": {"state_transition": 783, "node_type": "N", "subcondition": null, "parent": 3334}}, {"model": "template.logicnode", "pk": 3332, "fields": {"state_transition": 783, "node_type": "S", "subcondition": 23, "parent": 3331}}, {"model": "template.logicnode", "pk": 3333, "fields": {"state_transition": 783, "node_type": "S", "subcondition": 7, "parent": 3334}}, {"model": "template.logicnode", "pk": 3334, "fields": {"state_transition": 783, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3335, "fields": {"state_transition": 784, "node_type": "N", "subcondition": null, "parent": 3339}}, {"model": "template.logicnode", "pk": 3336, "fields": {"state_transition": 784, "node_type": "S", "subcondition": 23, "parent": 3335}}, {"model": "template.logicnode", "pk": 3337, "fields": {"state_transition": 784, "node_type": "S", "subcondition": 2, "parent": 3339}}, {"model": "template.logicnode", "pk": 3338, "fields": {"state_transition": 784, "node_type": "S", "subcondition": 12, "parent": 3339}}, {"model": "template.logicnode", "pk": 3339, "fields": {"state_transition": 784, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3340, "fields": {"state_transition": 785, "node_type": "N", "subcondition": null, "parent": 3343}}, {"model": "template.logicnode", "pk": 3341, "fields": {"state_transition": 785, "node_type": "S", "subcondition": 23, "parent": 3340}}, {"model": "template.logicnode", "pk": 3342, "fields": {"state_transition": 785, "node_type": "S", "subcondition": 2, "parent": 3343}}, {"model": "template.logicnode", "pk": 3343, "fields": {"state_transition": 785, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3344, "fields": {"state_transition": 786, "node_type": "N", "subcondition": null, "parent": 3347}}, {"model": "template.logicnode", "pk": 3345, "fields": {"state_transition": 786, "node_type": "S", "subcondition": 23, "parent": 3344}}, {"model": "template.logicnode", "pk": 3346, "fields": {"state_transition": 786, "node_type": "S", "subcondition": 12, "parent": 3347}}, {"model": "template.logicnode", "pk": 3347, "fields": {"state_transition": 786, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3348, "fields": {"state_transition": 787, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3349, "fields": {"state_transition": 787, "node_type": "S", "subcondition": 23, "parent": 3348}}, {"model": "template.logicnode", "pk": 3350, "fields": {"state_transition": 788, "node_type": "S", "subcondition": 23, "parent": 3354}}, {"model": "template.logicnode", "pk": 3351, "fields": {"state_transition": 788, "node_type": "S", "subcondition": 7, "parent": 3354}}, {"model": "template.logicnode", "pk": 3352, "fields": {"state_transition": 788, "node_type": "S", "subcondition": 2, "parent": 3354}}, {"model": "template.logicnode", "pk": 3353, "fields": {"state_transition": 788, "node_type": "S", "subcondition": 12, "parent": 3354}}, {"model": "template.logicnode", "pk": 3354, "fields": {"state_transition": 788, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3355, "fields": {"state_transition": 789, "node_type": "S", "subcondition": 23, "parent": 3358}}, {"model": "template.logicnode", "pk": 3356, "fields": {"state_transition": 789, "node_type": "S", "subcondition": 7, "parent": 3358}}, {"model": "template.logicnode", "pk": 3357, "fields": {"state_transition": 789, "node_type": "S", "subcondition": 2, "parent": 3358}}, {"model": "template.logicnode", "pk": 3358, "fields": {"state_transition": 789, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3359, "fields": {"state_transition": 790, "node_type": "S", "subcondition": 23, "parent": 3362}}, {"model": "template.logicnode", "pk": 3360, "fields": {"state_transition": 790, "node_type": "S", "subcondition": 7, "parent": 3362}}, {"model": "template.logicnode", "pk": 3361, "fields": {"state_transition": 790, "node_type": "S", "subcondition": 12, "parent": 3362}}, {"model": "template.logicnode", "pk": 3362, "fields": {"state_transition": 790, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3363, "fields": {"state_transition": 791, "node_type": "S", "subcondition": 23, "parent": 3365}}, {"model": "template.logicnode", "pk": 3364, "fields": {"state_transition": 791, "node_type": "S", "subcondition": 7, "parent": 3365}}, {"model": "template.logicnode", "pk": 3365, "fields": {"state_transition": 791, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3366, "fields": {"state_transition": 792, "node_type": "S", "subcondition": 23, "parent": 3369}}, {"model": "template.logicnode", "pk": 3367, "fields": {"state_transition": 792, "node_type": "S", "subcondition": 2, "parent": 3369}}, {"model": "template.logicnode", "pk": 3368, "fields": {"state_transition": 792, "node_type": "S", "subcondition": 12, "parent": 3369}}, {"model": "template.logicnode", "pk": 3369, "fields": {"state_transition": 792, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3370, "fields": {"state_transition": 793, "node_type": "S", "subcondition": 23, "parent": 3372}}, {"model": "template.logicnode", "pk": 3371, "fields": {"state_transition": 793, "node_type": "S", "subcondition": 2, "parent": 3372}}, {"model": "template.logicnode", "pk": 3372, "fields": {"state_transition": 793, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3373, "fields": {"state_transition": 794, "node_type": "S", "subcondition": 23, "parent": 3375}}, {"model": "template.logicnode", "pk": 3374, "fields": {"state_transition": 794, "node_type": "S", "subcondition": 12, "parent": 3375}}, {"model": "template.logicnode", "pk": 3375, "fields": {"state_transition": 794, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3376, "fields": {"state_transition": 795, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3377, "fields": {"state_transition": 796, "node_type": "N", "subcondition": null, "parent": 3383}}, {"model": "template.logicnode", "pk": 3378, "fields": {"state_transition": 796, "node_type": "S", "subcondition": 23, "parent": 3377}}, {"model": "template.logicnode", "pk": 3379, "fields": {"state_transition": 796, "node_type": "S", "subcondition": 11, "parent": 3383}}, {"model": "template.logicnode", "pk": 3380, "fields": {"state_transition": 796, "node_type": "S", "subcondition": 7, "parent": 3383}}, {"model": "template.logicnode", "pk": 3381, "fields": {"state_transition": 796, "node_type": "S", "subcondition": 2, "parent": 3383}}, {"model": "template.logicnode", "pk": 3382, "fields": {"state_transition": 796, "node_type": "S", "subcondition": 12, "parent": 3383}}, {"model": "template.logicnode", "pk": 3383, "fields": {"state_transition": 796, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3384, "fields": {"state_transition": 797, "node_type": "N", "subcondition": null, "parent": 3389}}, {"model": "template.logicnode", "pk": 3385, "fields": {"state_transition": 797, "node_type": "S", "subcondition": 23, "parent": 3384}}, {"model": "template.logicnode", "pk": 3386, "fields": {"state_transition": 797, "node_type": "S", "subcondition": 11, "parent": 3389}}, {"model": "template.logicnode", "pk": 3387, "fields": {"state_transition": 797, "node_type": "S", "subcondition": 7, "parent": 3389}}, {"model": "template.logicnode", "pk": 3388, "fields": {"state_transition": 797, "node_type": "S", "subcondition": 2, "parent": 3389}}, {"model": "template.logicnode", "pk": 3389, "fields": {"state_transition": 797, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3390, "fields": {"state_transition": 798, "node_type": "N", "subcondition": null, "parent": 3395}}, {"model": "template.logicnode", "pk": 3391, "fields": {"state_transition": 798, "node_type": "S", "subcondition": 23, "parent": 3390}}, {"model": "template.logicnode", "pk": 3392, "fields": {"state_transition": 798, "node_type": "S", "subcondition": 11, "parent": 3395}}, {"model": "template.logicnode", "pk": 3393, "fields": {"state_transition": 798, "node_type": "S", "subcondition": 7, "parent": 3395}}, {"model": "template.logicnode", "pk": 3394, "fields": {"state_transition": 798, "node_type": "S", "subcondition": 12, "parent": 3395}}, {"model": "template.logicnode", "pk": 3395, "fields": {"state_transition": 798, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3396, "fields": {"state_transition": 799, "node_type": "N", "subcondition": null, "parent": 3400}}, {"model": "template.logicnode", "pk": 3397, "fields": {"state_transition": 799, "node_type": "S", "subcondition": 23, "parent": 3396}}, {"model": "template.logicnode", "pk": 3398, "fields": {"state_transition": 799, "node_type": "S", "subcondition": 11, "parent": 3400}}, {"model": "template.logicnode", "pk": 3399, "fields": {"state_transition": 799, "node_type": "S", "subcondition": 7, "parent": 3400}}, {"model": "template.logicnode", "pk": 3400, "fields": {"state_transition": 799, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3401, "fields": {"state_transition": 800, "node_type": "N", "subcondition": null, "parent": 3406}}, {"model": "template.logicnode", "pk": 3402, "fields": {"state_transition": 800, "node_type": "S", "subcondition": 23, "parent": 3401}}, {"model": "template.logicnode", "pk": 3403, "fields": {"state_transition": 800, "node_type": "S", "subcondition": 11, "parent": 3406}}, {"model": "template.logicnode", "pk": 3404, "fields": {"state_transition": 800, "node_type": "S", "subcondition": 2, "parent": 3406}}, {"model": "template.logicnode", "pk": 3405, "fields": {"state_transition": 800, "node_type": "S", "subcondition": 12, "parent": 3406}}, {"model": "template.logicnode", "pk": 3406, "fields": {"state_transition": 800, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3407, "fields": {"state_transition": 801, "node_type": "N", "subcondition": null, "parent": 3411}}, {"model": "template.logicnode", "pk": 3408, "fields": {"state_transition": 801, "node_type": "S", "subcondition": 23, "parent": 3407}}, {"model": "template.logicnode", "pk": 3409, "fields": {"state_transition": 801, "node_type": "S", "subcondition": 11, "parent": 3411}}, {"model": "template.logicnode", "pk": 3410, "fields": {"state_transition": 801, "node_type": "S", "subcondition": 2, "parent": 3411}}, {"model": "template.logicnode", "pk": 3411, "fields": {"state_transition": 801, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3412, "fields": {"state_transition": 802, "node_type": "N", "subcondition": null, "parent": 3416}}, {"model": "template.logicnode", "pk": 3413, "fields": {"state_transition": 802, "node_type": "S", "subcondition": 23, "parent": 3412}}, {"model": "template.logicnode", "pk": 3414, "fields": {"state_transition": 802, "node_type": "S", "subcondition": 11, "parent": 3416}}, {"model": "template.logicnode", "pk": 3415, "fields": {"state_transition": 802, "node_type": "S", "subcondition": 12, "parent": 3416}}, {"model": "template.logicnode", "pk": 3416, "fields": {"state_transition": 802, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3417, "fields": {"state_transition": 803, "node_type": "N", "subcondition": null, "parent": 3420}}, {"model": "template.logicnode", "pk": 3418, "fields": {"state_transition": 803, "node_type": "S", "subcondition": 23, "parent": 3417}}, {"model": "template.logicnode", "pk": 3419, "fields": {"state_transition": 803, "node_type": "S", "subcondition": 11, "parent": 3420}}, {"model": "template.logicnode", "pk": 3420, "fields": {"state_transition": 803, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3421, "fields": {"state_transition": 804, "node_type": "N", "subcondition": null, "parent": 3426}}, {"model": "template.logicnode", "pk": 3422, "fields": {"state_transition": 804, "node_type": "S", "subcondition": 23, "parent": 3421}}, {"model": "template.logicnode", "pk": 3423, "fields": {"state_transition": 804, "node_type": "S", "subcondition": 7, "parent": 3426}}, {"model": "template.logicnode", "pk": 3424, "fields": {"state_transition": 804, "node_type": "S", "subcondition": 2, "parent": 3426}}, {"model": "template.logicnode", "pk": 3425, "fields": {"state_transition": 804, "node_type": "S", "subcondition": 12, "parent": 3426}}, {"model": "template.logicnode", "pk": 3426, "fields": {"state_transition": 804, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3427, "fields": {"state_transition": 805, "node_type": "N", "subcondition": null, "parent": 3431}}, {"model": "template.logicnode", "pk": 3428, "fields": {"state_transition": 805, "node_type": "S", "subcondition": 23, "parent": 3427}}, {"model": "template.logicnode", "pk": 3429, "fields": {"state_transition": 805, "node_type": "S", "subcondition": 7, "parent": 3431}}, {"model": "template.logicnode", "pk": 3430, "fields": {"state_transition": 805, "node_type": "S", "subcondition": 2, "parent": 3431}}, {"model": "template.logicnode", "pk": 3431, "fields": {"state_transition": 805, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3432, "fields": {"state_transition": 806, "node_type": "N", "subcondition": null, "parent": 3436}}, {"model": "template.logicnode", "pk": 3433, "fields": {"state_transition": 806, "node_type": "S", "subcondition": 23, "parent": 3432}}, {"model": "template.logicnode", "pk": 3434, "fields": {"state_transition": 806, "node_type": "S", "subcondition": 7, "parent": 3436}}, {"model": "template.logicnode", "pk": 3435, "fields": {"state_transition": 806, "node_type": "S", "subcondition": 12, "parent": 3436}}, {"model": "template.logicnode", "pk": 3436, "fields": {"state_transition": 806, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3437, "fields": {"state_transition": 807, "node_type": "N", "subcondition": null, "parent": 3440}}, {"model": "template.logicnode", "pk": 3438, "fields": {"state_transition": 807, "node_type": "S", "subcondition": 23, "parent": 3437}}, {"model": "template.logicnode", "pk": 3439, "fields": {"state_transition": 807, "node_type": "S", "subcondition": 7, "parent": 3440}}, {"model": "template.logicnode", "pk": 3440, "fields": {"state_transition": 807, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3441, "fields": {"state_transition": 808, "node_type": "N", "subcondition": null, "parent": 3445}}, {"model": "template.logicnode", "pk": 3442, "fields": {"state_transition": 808, "node_type": "S", "subcondition": 23, "parent": 3441}}, {"model": "template.logicnode", "pk": 3443, "fields": {"state_transition": 808, "node_type": "S", "subcondition": 2, "parent": 3445}}, {"model": "template.logicnode", "pk": 3444, "fields": {"state_transition": 808, "node_type": "S", "subcondition": 12, "parent": 3445}}, {"model": "template.logicnode", "pk": 3445, "fields": {"state_transition": 808, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3446, "fields": {"state_transition": 809, "node_type": "N", "subcondition": null, "parent": 3449}}, {"model": "template.logicnode", "pk": 3447, "fields": {"state_transition": 809, "node_type": "S", "subcondition": 23, "parent": 3446}}, {"model": "template.logicnode", "pk": 3448, "fields": {"state_transition": 809, "node_type": "S", "subcondition": 2, "parent": 3449}}, {"model": "template.logicnode", "pk": 3449, "fields": {"state_transition": 809, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3450, "fields": {"state_transition": 810, "node_type": "N", "subcondition": null, "parent": 3453}}, {"model": "template.logicnode", "pk": 3451, "fields": {"state_transition": 810, "node_type": "S", "subcondition": 23, "parent": 3450}}, {"model": "template.logicnode", "pk": 3452, "fields": {"state_transition": 810, "node_type": "S", "subcondition": 12, "parent": 3453}}, {"model": "template.logicnode", "pk": 3453, "fields": {"state_transition": 810, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3454, "fields": {"state_transition": 811, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3455, "fields": {"state_transition": 811, "node_type": "S", "subcondition": 23, "parent": 3454}}, {"model": "template.logicnode", "pk": 3456, "fields": {"state_transition": 812, "node_type": "S", "subcondition": 23, "parent": 3460}}, {"model": "template.logicnode", "pk": 3457, "fields": {"state_transition": 812, "node_type": "S", "subcondition": 7, "parent": 3460}}, {"model": "template.logicnode", "pk": 3458, "fields": {"state_transition": 812, "node_type": "S", "subcondition": 2, "parent": 3460}}, {"model": "template.logicnode", "pk": 3459, "fields": {"state_transition": 812, "node_type": "S", "subcondition": 12, "parent": 3460}}, {"model": "template.logicnode", "pk": 3460, "fields": {"state_transition": 812, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3461, "fields": {"state_transition": 813, "node_type": "S", "subcondition": 23, "parent": 3464}}, {"model": "template.logicnode", "pk": 3462, "fields": {"state_transition": 813, "node_type": "S", "subcondition": 7, "parent": 3464}}, {"model": "template.logicnode", "pk": 3463, "fields": {"state_transition": 813, "node_type": "S", "subcondition": 2, "parent": 3464}}, {"model": "template.logicnode", "pk": 3464, "fields": {"state_transition": 813, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3465, "fields": {"state_transition": 814, "node_type": "S", "subcondition": 23, "parent": 3468}}, {"model": "template.logicnode", "pk": 3466, "fields": {"state_transition": 814, "node_type": "S", "subcondition": 7, "parent": 3468}}, {"model": "template.logicnode", "pk": 3467, "fields": {"state_transition": 814, "node_type": "S", "subcondition": 12, "parent": 3468}}, {"model": "template.logicnode", "pk": 3468, "fields": {"state_transition": 814, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3469, "fields": {"state_transition": 815, "node_type": "S", "subcondition": 23, "parent": 3471}}, {"model": "template.logicnode", "pk": 3470, "fields": {"state_transition": 815, "node_type": "S", "subcondition": 7, "parent": 3471}}, {"model": "template.logicnode", "pk": 3471, "fields": {"state_transition": 815, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3472, "fields": {"state_transition": 816, "node_type": "S", "subcondition": 23, "parent": 3475}}, {"model": "template.logicnode", "pk": 3473, "fields": {"state_transition": 816, "node_type": "S", "subcondition": 2, "parent": 3475}}, {"model": "template.logicnode", "pk": 3474, "fields": {"state_transition": 816, "node_type": "S", "subcondition": 12, "parent": 3475}}, {"model": "template.logicnode", "pk": 3475, "fields": {"state_transition": 816, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3476, "fields": {"state_transition": 817, "node_type": "S", "subcondition": 23, "parent": 3478}}, {"model": "template.logicnode", "pk": 3477, "fields": {"state_transition": 817, "node_type": "S", "subcondition": 2, "parent": 3478}}, {"model": "template.logicnode", "pk": 3478, "fields": {"state_transition": 817, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3479, "fields": {"state_transition": 818, "node_type": "S", "subcondition": 23, "parent": 3481}}, {"model": "template.logicnode", "pk": 3480, "fields": {"state_transition": 818, "node_type": "S", "subcondition": 12, "parent": 3481}}, {"model": "template.logicnode", "pk": 3481, "fields": {"state_transition": 818, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3482, "fields": {"state_transition": 819, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3483, "fields": {"state_transition": 820, "node_type": "N", "subcondition": null, "parent": 3489}}, {"model": "template.logicnode", "pk": 3484, "fields": {"state_transition": 820, "node_type": "S", "subcondition": 23, "parent": 3483}}, {"model": "template.logicnode", "pk": 3485, "fields": {"state_transition": 820, "node_type": "S", "subcondition": 11, "parent": 3489}}, {"model": "template.logicnode", "pk": 3486, "fields": {"state_transition": 820, "node_type": "S", "subcondition": 7, "parent": 3489}}, {"model": "template.logicnode", "pk": 3487, "fields": {"state_transition": 820, "node_type": "S", "subcondition": 2, "parent": 3489}}, {"model": "template.logicnode", "pk": 3488, "fields": {"state_transition": 820, "node_type": "S", "subcondition": 12, "parent": 3489}}, {"model": "template.logicnode", "pk": 3489, "fields": {"state_transition": 820, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3490, "fields": {"state_transition": 821, "node_type": "N", "subcondition": null, "parent": 3495}}, {"model": "template.logicnode", "pk": 3491, "fields": {"state_transition": 821, "node_type": "S", "subcondition": 23, "parent": 3490}}, {"model": "template.logicnode", "pk": 3492, "fields": {"state_transition": 821, "node_type": "S", "subcondition": 11, "parent": 3495}}, {"model": "template.logicnode", "pk": 3493, "fields": {"state_transition": 821, "node_type": "S", "subcondition": 7, "parent": 3495}}, {"model": "template.logicnode", "pk": 3494, "fields": {"state_transition": 821, "node_type": "S", "subcondition": 2, "parent": 3495}}, {"model": "template.logicnode", "pk": 3495, "fields": {"state_transition": 821, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3496, "fields": {"state_transition": 822, "node_type": "N", "subcondition": null, "parent": 3501}}, {"model": "template.logicnode", "pk": 3497, "fields": {"state_transition": 822, "node_type": "S", "subcondition": 23, "parent": 3496}}, {"model": "template.logicnode", "pk": 3498, "fields": {"state_transition": 822, "node_type": "S", "subcondition": 11, "parent": 3501}}, {"model": "template.logicnode", "pk": 3499, "fields": {"state_transition": 822, "node_type": "S", "subcondition": 7, "parent": 3501}}, {"model": "template.logicnode", "pk": 3500, "fields": {"state_transition": 822, "node_type": "S", "subcondition": 12, "parent": 3501}}, {"model": "template.logicnode", "pk": 3501, "fields": {"state_transition": 822, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3502, "fields": {"state_transition": 823, "node_type": "N", "subcondition": null, "parent": 3506}}, {"model": "template.logicnode", "pk": 3503, "fields": {"state_transition": 823, "node_type": "S", "subcondition": 23, "parent": 3502}}, {"model": "template.logicnode", "pk": 3504, "fields": {"state_transition": 823, "node_type": "S", "subcondition": 11, "parent": 3506}}, {"model": "template.logicnode", "pk": 3505, "fields": {"state_transition": 823, "node_type": "S", "subcondition": 7, "parent": 3506}}, {"model": "template.logicnode", "pk": 3506, "fields": {"state_transition": 823, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3507, "fields": {"state_transition": 824, "node_type": "N", "subcondition": null, "parent": 3512}}, {"model": "template.logicnode", "pk": 3508, "fields": {"state_transition": 824, "node_type": "S", "subcondition": 23, "parent": 3507}}, {"model": "template.logicnode", "pk": 3509, "fields": {"state_transition": 824, "node_type": "S", "subcondition": 11, "parent": 3512}}, {"model": "template.logicnode", "pk": 3510, "fields": {"state_transition": 824, "node_type": "S", "subcondition": 2, "parent": 3512}}, {"model": "template.logicnode", "pk": 3511, "fields": {"state_transition": 824, "node_type": "S", "subcondition": 12, "parent": 3512}}, {"model": "template.logicnode", "pk": 3512, "fields": {"state_transition": 824, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3513, "fields": {"state_transition": 825, "node_type": "N", "subcondition": null, "parent": 3517}}, {"model": "template.logicnode", "pk": 3514, "fields": {"state_transition": 825, "node_type": "S", "subcondition": 23, "parent": 3513}}, {"model": "template.logicnode", "pk": 3515, "fields": {"state_transition": 825, "node_type": "S", "subcondition": 11, "parent": 3517}}, {"model": "template.logicnode", "pk": 3516, "fields": {"state_transition": 825, "node_type": "S", "subcondition": 2, "parent": 3517}}, {"model": "template.logicnode", "pk": 3517, "fields": {"state_transition": 825, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3518, "fields": {"state_transition": 826, "node_type": "N", "subcondition": null, "parent": 3522}}, {"model": "template.logicnode", "pk": 3519, "fields": {"state_transition": 826, "node_type": "S", "subcondition": 23, "parent": 3518}}, {"model": "template.logicnode", "pk": 3520, "fields": {"state_transition": 826, "node_type": "S", "subcondition": 11, "parent": 3522}}, {"model": "template.logicnode", "pk": 3521, "fields": {"state_transition": 826, "node_type": "S", "subcondition": 12, "parent": 3522}}, {"model": "template.logicnode", "pk": 3522, "fields": {"state_transition": 826, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3523, "fields": {"state_transition": 827, "node_type": "N", "subcondition": null, "parent": 3526}}, {"model": "template.logicnode", "pk": 3524, "fields": {"state_transition": 827, "node_type": "S", "subcondition": 23, "parent": 3523}}, {"model": "template.logicnode", "pk": 3525, "fields": {"state_transition": 827, "node_type": "S", "subcondition": 11, "parent": 3526}}, {"model": "template.logicnode", "pk": 3526, "fields": {"state_transition": 827, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3527, "fields": {"state_transition": 828, "node_type": "N", "subcondition": null, "parent": 3532}}, {"model": "template.logicnode", "pk": 3528, "fields": {"state_transition": 828, "node_type": "S", "subcondition": 23, "parent": 3527}}, {"model": "template.logicnode", "pk": 3529, "fields": {"state_transition": 828, "node_type": "S", "subcondition": 7, "parent": 3532}}, {"model": "template.logicnode", "pk": 3530, "fields": {"state_transition": 828, "node_type": "S", "subcondition": 2, "parent": 3532}}, {"model": "template.logicnode", "pk": 3531, "fields": {"state_transition": 828, "node_type": "S", "subcondition": 12, "parent": 3532}}, {"model": "template.logicnode", "pk": 3532, "fields": {"state_transition": 828, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3533, "fields": {"state_transition": 829, "node_type": "N", "subcondition": null, "parent": 3537}}, {"model": "template.logicnode", "pk": 3534, "fields": {"state_transition": 829, "node_type": "S", "subcondition": 23, "parent": 3533}}, {"model": "template.logicnode", "pk": 3535, "fields": {"state_transition": 829, "node_type": "S", "subcondition": 7, "parent": 3537}}, {"model": "template.logicnode", "pk": 3536, "fields": {"state_transition": 829, "node_type": "S", "subcondition": 2, "parent": 3537}}, {"model": "template.logicnode", "pk": 3537, "fields": {"state_transition": 829, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3538, "fields": {"state_transition": 830, "node_type": "N", "subcondition": null, "parent": 3542}}, {"model": "template.logicnode", "pk": 3539, "fields": {"state_transition": 830, "node_type": "S", "subcondition": 23, "parent": 3538}}, {"model": "template.logicnode", "pk": 3540, "fields": {"state_transition": 830, "node_type": "S", "subcondition": 7, "parent": 3542}}, {"model": "template.logicnode", "pk": 3541, "fields": {"state_transition": 830, "node_type": "S", "subcondition": 12, "parent": 3542}}, {"model": "template.logicnode", "pk": 3542, "fields": {"state_transition": 830, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3543, "fields": {"state_transition": 831, "node_type": "N", "subcondition": null, "parent": 3546}}, {"model": "template.logicnode", "pk": 3544, "fields": {"state_transition": 831, "node_type": "S", "subcondition": 23, "parent": 3543}}, {"model": "template.logicnode", "pk": 3545, "fields": {"state_transition": 831, "node_type": "S", "subcondition": 7, "parent": 3546}}, {"model": "template.logicnode", "pk": 3546, "fields": {"state_transition": 831, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3547, "fields": {"state_transition": 832, "node_type": "N", "subcondition": null, "parent": 3551}}, {"model": "template.logicnode", "pk": 3548, "fields": {"state_transition": 832, "node_type": "S", "subcondition": 23, "parent": 3547}}, {"model": "template.logicnode", "pk": 3549, "fields": {"state_transition": 832, "node_type": "S", "subcondition": 2, "parent": 3551}}, {"model": "template.logicnode", "pk": 3550, "fields": {"state_transition": 832, "node_type": "S", "subcondition": 12, "parent": 3551}}, {"model": "template.logicnode", "pk": 3551, "fields": {"state_transition": 832, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3552, "fields": {"state_transition": 833, "node_type": "N", "subcondition": null, "parent": 3555}}, {"model": "template.logicnode", "pk": 3553, "fields": {"state_transition": 833, "node_type": "S", "subcondition": 23, "parent": 3552}}, {"model": "template.logicnode", "pk": 3554, "fields": {"state_transition": 833, "node_type": "S", "subcondition": 2, "parent": 3555}}, {"model": "template.logicnode", "pk": 3555, "fields": {"state_transition": 833, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3556, "fields": {"state_transition": 834, "node_type": "N", "subcondition": null, "parent": 3559}}, {"model": "template.logicnode", "pk": 3557, "fields": {"state_transition": 834, "node_type": "S", "subcondition": 23, "parent": 3556}}, {"model": "template.logicnode", "pk": 3558, "fields": {"state_transition": 834, "node_type": "S", "subcondition": 12, "parent": 3559}}, {"model": "template.logicnode", "pk": 3559, "fields": {"state_transition": 834, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3560, "fields": {"state_transition": 835, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3561, "fields": {"state_transition": 835, "node_type": "S", "subcondition": 23, "parent": 3560}}, {"model": "template.logicnode", "pk": 3562, "fields": {"state_transition": 836, "node_type": "S", "subcondition": 23, "parent": 3566}}, {"model": "template.logicnode", "pk": 3563, "fields": {"state_transition": 836, "node_type": "S", "subcondition": 7, "parent": 3566}}, {"model": "template.logicnode", "pk": 3564, "fields": {"state_transition": 836, "node_type": "S", "subcondition": 2, "parent": 3566}}, {"model": "template.logicnode", "pk": 3565, "fields": {"state_transition": 836, "node_type": "S", "subcondition": 12, "parent": 3566}}, {"model": "template.logicnode", "pk": 3566, "fields": {"state_transition": 836, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3567, "fields": {"state_transition": 837, "node_type": "S", "subcondition": 23, "parent": 3570}}, {"model": "template.logicnode", "pk": 3568, "fields": {"state_transition": 837, "node_type": "S", "subcondition": 7, "parent": 3570}}, {"model": "template.logicnode", "pk": 3569, "fields": {"state_transition": 837, "node_type": "S", "subcondition": 2, "parent": 3570}}, {"model": "template.logicnode", "pk": 3570, "fields": {"state_transition": 837, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3571, "fields": {"state_transition": 838, "node_type": "S", "subcondition": 23, "parent": 3574}}, {"model": "template.logicnode", "pk": 3572, "fields": {"state_transition": 838, "node_type": "S", "subcondition": 7, "parent": 3574}}, {"model": "template.logicnode", "pk": 3573, "fields": {"state_transition": 838, "node_type": "S", "subcondition": 12, "parent": 3574}}, {"model": "template.logicnode", "pk": 3574, "fields": {"state_transition": 838, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3575, "fields": {"state_transition": 839, "node_type": "S", "subcondition": 23, "parent": 3577}}, {"model": "template.logicnode", "pk": 3576, "fields": {"state_transition": 839, "node_type": "S", "subcondition": 7, "parent": 3577}}, {"model": "template.logicnode", "pk": 3577, "fields": {"state_transition": 839, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3578, "fields": {"state_transition": 840, "node_type": "S", "subcondition": 23, "parent": 3581}}, {"model": "template.logicnode", "pk": 3579, "fields": {"state_transition": 840, "node_type": "S", "subcondition": 2, "parent": 3581}}, {"model": "template.logicnode", "pk": 3580, "fields": {"state_transition": 840, "node_type": "S", "subcondition": 12, "parent": 3581}}, {"model": "template.logicnode", "pk": 3581, "fields": {"state_transition": 840, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3582, "fields": {"state_transition": 841, "node_type": "S", "subcondition": 23, "parent": 3584}}, {"model": "template.logicnode", "pk": 3583, "fields": {"state_transition": 841, "node_type": "S", "subcondition": 2, "parent": 3584}}, {"model": "template.logicnode", "pk": 3584, "fields": {"state_transition": 841, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3585, "fields": {"state_transition": 842, "node_type": "S", "subcondition": 23, "parent": 3587}}, {"model": "template.logicnode", "pk": 3586, "fields": {"state_transition": 842, "node_type": "S", "subcondition": 12, "parent": 3587}}, {"model": "template.logicnode", "pk": 3587, "fields": {"state_transition": 842, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3588, "fields": {"state_transition": 843, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3589, "fields": {"state_transition": 844, "node_type": "N", "subcondition": null, "parent": 3595}}, {"model": "template.logicnode", "pk": 3590, "fields": {"state_transition": 844, "node_type": "S", "subcondition": 23, "parent": 3589}}, {"model": "template.logicnode", "pk": 3591, "fields": {"state_transition": 844, "node_type": "S", "subcondition": 11, "parent": 3595}}, {"model": "template.logicnode", "pk": 3592, "fields": {"state_transition": 844, "node_type": "S", "subcondition": 7, "parent": 3595}}, {"model": "template.logicnode", "pk": 3593, "fields": {"state_transition": 844, "node_type": "S", "subcondition": 2, "parent": 3595}}, {"model": "template.logicnode", "pk": 3594, "fields": {"state_transition": 844, "node_type": "S", "subcondition": 12, "parent": 3595}}, {"model": "template.logicnode", "pk": 3595, "fields": {"state_transition": 844, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3596, "fields": {"state_transition": 845, "node_type": "N", "subcondition": null, "parent": 3601}}, {"model": "template.logicnode", "pk": 3597, "fields": {"state_transition": 845, "node_type": "S", "subcondition": 23, "parent": 3596}}, {"model": "template.logicnode", "pk": 3598, "fields": {"state_transition": 845, "node_type": "S", "subcondition": 11, "parent": 3601}}, {"model": "template.logicnode", "pk": 3599, "fields": {"state_transition": 845, "node_type": "S", "subcondition": 7, "parent": 3601}}, {"model": "template.logicnode", "pk": 3600, "fields": {"state_transition": 845, "node_type": "S", "subcondition": 2, "parent": 3601}}, {"model": "template.logicnode", "pk": 3601, "fields": {"state_transition": 845, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3602, "fields": {"state_transition": 846, "node_type": "N", "subcondition": null, "parent": 3607}}, {"model": "template.logicnode", "pk": 3603, "fields": {"state_transition": 846, "node_type": "S", "subcondition": 23, "parent": 3602}}, {"model": "template.logicnode", "pk": 3604, "fields": {"state_transition": 846, "node_type": "S", "subcondition": 11, "parent": 3607}}, {"model": "template.logicnode", "pk": 3605, "fields": {"state_transition": 846, "node_type": "S", "subcondition": 7, "parent": 3607}}, {"model": "template.logicnode", "pk": 3606, "fields": {"state_transition": 846, "node_type": "S", "subcondition": 12, "parent": 3607}}, {"model": "template.logicnode", "pk": 3607, "fields": {"state_transition": 846, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3608, "fields": {"state_transition": 847, "node_type": "N", "subcondition": null, "parent": 3612}}, {"model": "template.logicnode", "pk": 3609, "fields": {"state_transition": 847, "node_type": "S", "subcondition": 23, "parent": 3608}}, {"model": "template.logicnode", "pk": 3610, "fields": {"state_transition": 847, "node_type": "S", "subcondition": 11, "parent": 3612}}, {"model": "template.logicnode", "pk": 3611, "fields": {"state_transition": 847, "node_type": "S", "subcondition": 7, "parent": 3612}}, {"model": "template.logicnode", "pk": 3612, "fields": {"state_transition": 847, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3613, "fields": {"state_transition": 848, "node_type": "N", "subcondition": null, "parent": 3618}}, {"model": "template.logicnode", "pk": 3614, "fields": {"state_transition": 848, "node_type": "S", "subcondition": 23, "parent": 3613}}, {"model": "template.logicnode", "pk": 3615, "fields": {"state_transition": 848, "node_type": "S", "subcondition": 11, "parent": 3618}}, {"model": "template.logicnode", "pk": 3616, "fields": {"state_transition": 848, "node_type": "S", "subcondition": 2, "parent": 3618}}, {"model": "template.logicnode", "pk": 3617, "fields": {"state_transition": 848, "node_type": "S", "subcondition": 12, "parent": 3618}}, {"model": "template.logicnode", "pk": 3618, "fields": {"state_transition": 848, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3619, "fields": {"state_transition": 849, "node_type": "N", "subcondition": null, "parent": 3623}}, {"model": "template.logicnode", "pk": 3620, "fields": {"state_transition": 849, "node_type": "S", "subcondition": 23, "parent": 3619}}, {"model": "template.logicnode", "pk": 3621, "fields": {"state_transition": 849, "node_type": "S", "subcondition": 11, "parent": 3623}}, {"model": "template.logicnode", "pk": 3622, "fields": {"state_transition": 849, "node_type": "S", "subcondition": 2, "parent": 3623}}, {"model": "template.logicnode", "pk": 3623, "fields": {"state_transition": 849, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3624, "fields": {"state_transition": 850, "node_type": "N", "subcondition": null, "parent": 3628}}, {"model": "template.logicnode", "pk": 3625, "fields": {"state_transition": 850, "node_type": "S", "subcondition": 23, "parent": 3624}}, {"model": "template.logicnode", "pk": 3626, "fields": {"state_transition": 850, "node_type": "S", "subcondition": 11, "parent": 3628}}, {"model": "template.logicnode", "pk": 3627, "fields": {"state_transition": 850, "node_type": "S", "subcondition": 12, "parent": 3628}}, {"model": "template.logicnode", "pk": 3628, "fields": {"state_transition": 850, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3629, "fields": {"state_transition": 851, "node_type": "N", "subcondition": null, "parent": 3632}}, {"model": "template.logicnode", "pk": 3630, "fields": {"state_transition": 851, "node_type": "S", "subcondition": 23, "parent": 3629}}, {"model": "template.logicnode", "pk": 3631, "fields": {"state_transition": 851, "node_type": "S", "subcondition": 11, "parent": 3632}}, {"model": "template.logicnode", "pk": 3632, "fields": {"state_transition": 851, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3633, "fields": {"state_transition": 852, "node_type": "N", "subcondition": null, "parent": 3638}}, {"model": "template.logicnode", "pk": 3634, "fields": {"state_transition": 852, "node_type": "S", "subcondition": 23, "parent": 3633}}, {"model": "template.logicnode", "pk": 3635, "fields": {"state_transition": 852, "node_type": "S", "subcondition": 7, "parent": 3638}}, {"model": "template.logicnode", "pk": 3636, "fields": {"state_transition": 852, "node_type": "S", "subcondition": 2, "parent": 3638}}, {"model": "template.logicnode", "pk": 3637, "fields": {"state_transition": 852, "node_type": "S", "subcondition": 12, "parent": 3638}}, {"model": "template.logicnode", "pk": 3638, "fields": {"state_transition": 852, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3639, "fields": {"state_transition": 853, "node_type": "N", "subcondition": null, "parent": 3643}}, {"model": "template.logicnode", "pk": 3640, "fields": {"state_transition": 853, "node_type": "S", "subcondition": 23, "parent": 3639}}, {"model": "template.logicnode", "pk": 3641, "fields": {"state_transition": 853, "node_type": "S", "subcondition": 7, "parent": 3643}}, {"model": "template.logicnode", "pk": 3642, "fields": {"state_transition": 853, "node_type": "S", "subcondition": 2, "parent": 3643}}, {"model": "template.logicnode", "pk": 3643, "fields": {"state_transition": 853, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3644, "fields": {"state_transition": 854, "node_type": "N", "subcondition": null, "parent": 3648}}, {"model": "template.logicnode", "pk": 3645, "fields": {"state_transition": 854, "node_type": "S", "subcondition": 23, "parent": 3644}}, {"model": "template.logicnode", "pk": 3646, "fields": {"state_transition": 854, "node_type": "S", "subcondition": 7, "parent": 3648}}, {"model": "template.logicnode", "pk": 3647, "fields": {"state_transition": 854, "node_type": "S", "subcondition": 12, "parent": 3648}}, {"model": "template.logicnode", "pk": 3648, "fields": {"state_transition": 854, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3649, "fields": {"state_transition": 855, "node_type": "N", "subcondition": null, "parent": 3652}}, {"model": "template.logicnode", "pk": 3650, "fields": {"state_transition": 855, "node_type": "S", "subcondition": 23, "parent": 3649}}, {"model": "template.logicnode", "pk": 3651, "fields": {"state_transition": 855, "node_type": "S", "subcondition": 7, "parent": 3652}}, {"model": "template.logicnode", "pk": 3652, "fields": {"state_transition": 855, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3653, "fields": {"state_transition": 856, "node_type": "N", "subcondition": null, "parent": 3657}}, {"model": "template.logicnode", "pk": 3654, "fields": {"state_transition": 856, "node_type": "S", "subcondition": 23, "parent": 3653}}, {"model": "template.logicnode", "pk": 3655, "fields": {"state_transition": 856, "node_type": "S", "subcondition": 2, "parent": 3657}}, {"model": "template.logicnode", "pk": 3656, "fields": {"state_transition": 856, "node_type": "S", "subcondition": 12, "parent": 3657}}, {"model": "template.logicnode", "pk": 3657, "fields": {"state_transition": 856, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3658, "fields": {"state_transition": 857, "node_type": "N", "subcondition": null, "parent": 3661}}, {"model": "template.logicnode", "pk": 3659, "fields": {"state_transition": 857, "node_type": "S", "subcondition": 23, "parent": 3658}}, {"model": "template.logicnode", "pk": 3660, "fields": {"state_transition": 857, "node_type": "S", "subcondition": 2, "parent": 3661}}, {"model": "template.logicnode", "pk": 3661, "fields": {"state_transition": 857, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3662, "fields": {"state_transition": 858, "node_type": "N", "subcondition": null, "parent": 3665}}, {"model": "template.logicnode", "pk": 3663, "fields": {"state_transition": 858, "node_type": "S", "subcondition": 23, "parent": 3662}}, {"model": "template.logicnode", "pk": 3664, "fields": {"state_transition": 858, "node_type": "S", "subcondition": 12, "parent": 3665}}, {"model": "template.logicnode", "pk": 3665, "fields": {"state_transition": 858, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3666, "fields": {"state_transition": 859, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3667, "fields": {"state_transition": 859, "node_type": "S", "subcondition": 23, "parent": 3666}}, {"model": "template.logicnode", "pk": 3668, "fields": {"state_transition": 860, "node_type": "S", "subcondition": 23, "parent": 3672}}, {"model": "template.logicnode", "pk": 3669, "fields": {"state_transition": 860, "node_type": "S", "subcondition": 7, "parent": 3672}}, {"model": "template.logicnode", "pk": 3670, "fields": {"state_transition": 860, "node_type": "S", "subcondition": 2, "parent": 3672}}, {"model": "template.logicnode", "pk": 3671, "fields": {"state_transition": 860, "node_type": "S", "subcondition": 12, "parent": 3672}}, {"model": "template.logicnode", "pk": 3672, "fields": {"state_transition": 860, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3673, "fields": {"state_transition": 861, "node_type": "S", "subcondition": 23, "parent": 3676}}, {"model": "template.logicnode", "pk": 3674, "fields": {"state_transition": 861, "node_type": "S", "subcondition": 7, "parent": 3676}}, {"model": "template.logicnode", "pk": 3675, "fields": {"state_transition": 861, "node_type": "S", "subcondition": 2, "parent": 3676}}, {"model": "template.logicnode", "pk": 3676, "fields": {"state_transition": 861, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3677, "fields": {"state_transition": 862, "node_type": "S", "subcondition": 23, "parent": 3680}}, {"model": "template.logicnode", "pk": 3678, "fields": {"state_transition": 862, "node_type": "S", "subcondition": 7, "parent": 3680}}, {"model": "template.logicnode", "pk": 3679, "fields": {"state_transition": 862, "node_type": "S", "subcondition": 12, "parent": 3680}}, {"model": "template.logicnode", "pk": 3680, "fields": {"state_transition": 862, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3681, "fields": {"state_transition": 863, "node_type": "S", "subcondition": 23, "parent": 3683}}, {"model": "template.logicnode", "pk": 3682, "fields": {"state_transition": 863, "node_type": "S", "subcondition": 7, "parent": 3683}}, {"model": "template.logicnode", "pk": 3683, "fields": {"state_transition": 863, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3684, "fields": {"state_transition": 864, "node_type": "S", "subcondition": 23, "parent": 3687}}, {"model": "template.logicnode", "pk": 3685, "fields": {"state_transition": 864, "node_type": "S", "subcondition": 2, "parent": 3687}}, {"model": "template.logicnode", "pk": 3686, "fields": {"state_transition": 864, "node_type": "S", "subcondition": 12, "parent": 3687}}, {"model": "template.logicnode", "pk": 3687, "fields": {"state_transition": 864, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3688, "fields": {"state_transition": 865, "node_type": "S", "subcondition": 23, "parent": 3690}}, {"model": "template.logicnode", "pk": 3689, "fields": {"state_transition": 865, "node_type": "S", "subcondition": 2, "parent": 3690}}, {"model": "template.logicnode", "pk": 3690, "fields": {"state_transition": 865, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3691, "fields": {"state_transition": 866, "node_type": "S", "subcondition": 23, "parent": 3693}}, {"model": "template.logicnode", "pk": 3692, "fields": {"state_transition": 866, "node_type": "S", "subcondition": 12, "parent": 3693}}, {"model": "template.logicnode", "pk": 3693, "fields": {"state_transition": 866, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3694, "fields": {"state_transition": 867, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3695, "fields": {"state_transition": 868, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3696, "fields": {"state_transition": 869, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3697, "fields": {"state_transition": 870, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3698, "fields": {"state_transition": 870, "node_type": "S", "subcondition": 12, "parent": 3697}}, {"model": "template.logicnode", "pk": 3699, "fields": {"state_transition": 871, "node_type": "N", "subcondition": null, "parent": 3705}}, {"model": "template.logicnode", "pk": 3700, "fields": {"state_transition": 871, "node_type": "S", "subcondition": 23, "parent": 3699}}, {"model": "template.logicnode", "pk": 3701, "fields": {"state_transition": 871, "node_type": "S", "subcondition": 11, "parent": 3705}}, {"model": "template.logicnode", "pk": 3702, "fields": {"state_transition": 871, "node_type": "S", "subcondition": 7, "parent": 3705}}, {"model": "template.logicnode", "pk": 3703, "fields": {"state_transition": 871, "node_type": "S", "subcondition": 2, "parent": 3705}}, {"model": "template.logicnode", "pk": 3704, "fields": {"state_transition": 871, "node_type": "S", "subcondition": 12, "parent": 3705}}, {"model": "template.logicnode", "pk": 3705, "fields": {"state_transition": 871, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3706, "fields": {"state_transition": 872, "node_type": "N", "subcondition": null, "parent": 3711}}, {"model": "template.logicnode", "pk": 3707, "fields": {"state_transition": 872, "node_type": "S", "subcondition": 23, "parent": 3706}}, {"model": "template.logicnode", "pk": 3708, "fields": {"state_transition": 872, "node_type": "S", "subcondition": 11, "parent": 3711}}, {"model": "template.logicnode", "pk": 3709, "fields": {"state_transition": 872, "node_type": "S", "subcondition": 7, "parent": 3711}}, {"model": "template.logicnode", "pk": 3710, "fields": {"state_transition": 872, "node_type": "S", "subcondition": 2, "parent": 3711}}, {"model": "template.logicnode", "pk": 3711, "fields": {"state_transition": 872, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3712, "fields": {"state_transition": 873, "node_type": "N", "subcondition": null, "parent": 3717}}, {"model": "template.logicnode", "pk": 3713, "fields": {"state_transition": 873, "node_type": "S", "subcondition": 23, "parent": 3712}}, {"model": "template.logicnode", "pk": 3714, "fields": {"state_transition": 873, "node_type": "S", "subcondition": 11, "parent": 3717}}, {"model": "template.logicnode", "pk": 3715, "fields": {"state_transition": 873, "node_type": "S", "subcondition": 7, "parent": 3717}}, {"model": "template.logicnode", "pk": 3716, "fields": {"state_transition": 873, "node_type": "S", "subcondition": 12, "parent": 3717}}, {"model": "template.logicnode", "pk": 3717, "fields": {"state_transition": 873, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3718, "fields": {"state_transition": 874, "node_type": "N", "subcondition": null, "parent": 3722}}, {"model": "template.logicnode", "pk": 3719, "fields": {"state_transition": 874, "node_type": "S", "subcondition": 23, "parent": 3718}}, {"model": "template.logicnode", "pk": 3720, "fields": {"state_transition": 874, "node_type": "S", "subcondition": 11, "parent": 3722}}, {"model": "template.logicnode", "pk": 3721, "fields": {"state_transition": 874, "node_type": "S", "subcondition": 7, "parent": 3722}}, {"model": "template.logicnode", "pk": 3722, "fields": {"state_transition": 874, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3723, "fields": {"state_transition": 875, "node_type": "N", "subcondition": null, "parent": 3728}}, {"model": "template.logicnode", "pk": 3724, "fields": {"state_transition": 875, "node_type": "S", "subcondition": 23, "parent": 3723}}, {"model": "template.logicnode", "pk": 3725, "fields": {"state_transition": 875, "node_type": "S", "subcondition": 11, "parent": 3728}}, {"model": "template.logicnode", "pk": 3726, "fields": {"state_transition": 875, "node_type": "S", "subcondition": 2, "parent": 3728}}, {"model": "template.logicnode", "pk": 3727, "fields": {"state_transition": 875, "node_type": "S", "subcondition": 12, "parent": 3728}}, {"model": "template.logicnode", "pk": 3728, "fields": {"state_transition": 875, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3729, "fields": {"state_transition": 876, "node_type": "N", "subcondition": null, "parent": 3733}}, {"model": "template.logicnode", "pk": 3730, "fields": {"state_transition": 876, "node_type": "S", "subcondition": 23, "parent": 3729}}, {"model": "template.logicnode", "pk": 3731, "fields": {"state_transition": 876, "node_type": "S", "subcondition": 11, "parent": 3733}}, {"model": "template.logicnode", "pk": 3732, "fields": {"state_transition": 876, "node_type": "S", "subcondition": 2, "parent": 3733}}, {"model": "template.logicnode", "pk": 3733, "fields": {"state_transition": 876, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3734, "fields": {"state_transition": 877, "node_type": "N", "subcondition": null, "parent": 3738}}, {"model": "template.logicnode", "pk": 3735, "fields": {"state_transition": 877, "node_type": "S", "subcondition": 23, "parent": 3734}}, {"model": "template.logicnode", "pk": 3736, "fields": {"state_transition": 877, "node_type": "S", "subcondition": 11, "parent": 3738}}, {"model": "template.logicnode", "pk": 3737, "fields": {"state_transition": 877, "node_type": "S", "subcondition": 12, "parent": 3738}}, {"model": "template.logicnode", "pk": 3738, "fields": {"state_transition": 877, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3739, "fields": {"state_transition": 878, "node_type": "N", "subcondition": null, "parent": 3742}}, {"model": "template.logicnode", "pk": 3740, "fields": {"state_transition": 878, "node_type": "S", "subcondition": 23, "parent": 3739}}, {"model": "template.logicnode", "pk": 3741, "fields": {"state_transition": 878, "node_type": "S", "subcondition": 11, "parent": 3742}}, {"model": "template.logicnode", "pk": 3742, "fields": {"state_transition": 878, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3743, "fields": {"state_transition": 879, "node_type": "N", "subcondition": null, "parent": 3748}}, {"model": "template.logicnode", "pk": 3744, "fields": {"state_transition": 879, "node_type": "S", "subcondition": 23, "parent": 3743}}, {"model": "template.logicnode", "pk": 3745, "fields": {"state_transition": 879, "node_type": "S", "subcondition": 7, "parent": 3748}}, {"model": "template.logicnode", "pk": 3746, "fields": {"state_transition": 879, "node_type": "S", "subcondition": 2, "parent": 3748}}, {"model": "template.logicnode", "pk": 3747, "fields": {"state_transition": 879, "node_type": "S", "subcondition": 12, "parent": 3748}}, {"model": "template.logicnode", "pk": 3748, "fields": {"state_transition": 879, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3749, "fields": {"state_transition": 880, "node_type": "N", "subcondition": null, "parent": 3753}}, {"model": "template.logicnode", "pk": 3750, "fields": {"state_transition": 880, "node_type": "S", "subcondition": 23, "parent": 3749}}, {"model": "template.logicnode", "pk": 3751, "fields": {"state_transition": 880, "node_type": "S", "subcondition": 7, "parent": 3753}}, {"model": "template.logicnode", "pk": 3752, "fields": {"state_transition": 880, "node_type": "S", "subcondition": 2, "parent": 3753}}, {"model": "template.logicnode", "pk": 3753, "fields": {"state_transition": 880, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3754, "fields": {"state_transition": 881, "node_type": "N", "subcondition": null, "parent": 3758}}, {"model": "template.logicnode", "pk": 3755, "fields": {"state_transition": 881, "node_type": "S", "subcondition": 23, "parent": 3754}}, {"model": "template.logicnode", "pk": 3756, "fields": {"state_transition": 881, "node_type": "S", "subcondition": 7, "parent": 3758}}, {"model": "template.logicnode", "pk": 3757, "fields": {"state_transition": 881, "node_type": "S", "subcondition": 12, "parent": 3758}}, {"model": "template.logicnode", "pk": 3758, "fields": {"state_transition": 881, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3759, "fields": {"state_transition": 882, "node_type": "N", "subcondition": null, "parent": 3762}}, {"model": "template.logicnode", "pk": 3760, "fields": {"state_transition": 882, "node_type": "S", "subcondition": 23, "parent": 3759}}, {"model": "template.logicnode", "pk": 3761, "fields": {"state_transition": 882, "node_type": "S", "subcondition": 7, "parent": 3762}}, {"model": "template.logicnode", "pk": 3762, "fields": {"state_transition": 882, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3763, "fields": {"state_transition": 883, "node_type": "N", "subcondition": null, "parent": 3767}}, {"model": "template.logicnode", "pk": 3764, "fields": {"state_transition": 883, "node_type": "S", "subcondition": 23, "parent": 3763}}, {"model": "template.logicnode", "pk": 3765, "fields": {"state_transition": 883, "node_type": "S", "subcondition": 2, "parent": 3767}}, {"model": "template.logicnode", "pk": 3766, "fields": {"state_transition": 883, "node_type": "S", "subcondition": 12, "parent": 3767}}, {"model": "template.logicnode", "pk": 3767, "fields": {"state_transition": 883, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3768, "fields": {"state_transition": 884, "node_type": "N", "subcondition": null, "parent": 3771}}, {"model": "template.logicnode", "pk": 3769, "fields": {"state_transition": 884, "node_type": "S", "subcondition": 23, "parent": 3768}}, {"model": "template.logicnode", "pk": 3770, "fields": {"state_transition": 884, "node_type": "S", "subcondition": 2, "parent": 3771}}, {"model": "template.logicnode", "pk": 3771, "fields": {"state_transition": 884, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3772, "fields": {"state_transition": 885, "node_type": "N", "subcondition": null, "parent": 3775}}, {"model": "template.logicnode", "pk": 3773, "fields": {"state_transition": 885, "node_type": "S", "subcondition": 23, "parent": 3772}}, {"model": "template.logicnode", "pk": 3774, "fields": {"state_transition": 885, "node_type": "S", "subcondition": 12, "parent": 3775}}, {"model": "template.logicnode", "pk": 3775, "fields": {"state_transition": 885, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3776, "fields": {"state_transition": 886, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3777, "fields": {"state_transition": 886, "node_type": "S", "subcondition": 23, "parent": 3776}}, {"model": "template.logicnode", "pk": 3778, "fields": {"state_transition": 887, "node_type": "S", "subcondition": 23, "parent": 3782}}, {"model": "template.logicnode", "pk": 3779, "fields": {"state_transition": 887, "node_type": "S", "subcondition": 7, "parent": 3782}}, {"model": "template.logicnode", "pk": 3780, "fields": {"state_transition": 887, "node_type": "S", "subcondition": 2, "parent": 3782}}, {"model": "template.logicnode", "pk": 3781, "fields": {"state_transition": 887, "node_type": "S", "subcondition": 12, "parent": 3782}}, {"model": "template.logicnode", "pk": 3782, "fields": {"state_transition": 887, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3783, "fields": {"state_transition": 888, "node_type": "S", "subcondition": 23, "parent": 3786}}, {"model": "template.logicnode", "pk": 3784, "fields": {"state_transition": 888, "node_type": "S", "subcondition": 7, "parent": 3786}}, {"model": "template.logicnode", "pk": 3785, "fields": {"state_transition": 888, "node_type": "S", "subcondition": 2, "parent": 3786}}, {"model": "template.logicnode", "pk": 3786, "fields": {"state_transition": 888, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3787, "fields": {"state_transition": 889, "node_type": "S", "subcondition": 23, "parent": 3790}}, {"model": "template.logicnode", "pk": 3788, "fields": {"state_transition": 889, "node_type": "S", "subcondition": 7, "parent": 3790}}, {"model": "template.logicnode", "pk": 3789, "fields": {"state_transition": 889, "node_type": "S", "subcondition": 12, "parent": 3790}}, {"model": "template.logicnode", "pk": 3790, "fields": {"state_transition": 889, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3791, "fields": {"state_transition": 890, "node_type": "S", "subcondition": 23, "parent": 3793}}, {"model": "template.logicnode", "pk": 3792, "fields": {"state_transition": 890, "node_type": "S", "subcondition": 7, "parent": 3793}}, {"model": "template.logicnode", "pk": 3793, "fields": {"state_transition": 890, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3794, "fields": {"state_transition": 891, "node_type": "S", "subcondition": 23, "parent": 3797}}, {"model": "template.logicnode", "pk": 3795, "fields": {"state_transition": 891, "node_type": "S", "subcondition": 2, "parent": 3797}}, {"model": "template.logicnode", "pk": 3796, "fields": {"state_transition": 891, "node_type": "S", "subcondition": 12, "parent": 3797}}, {"model": "template.logicnode", "pk": 3797, "fields": {"state_transition": 891, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3798, "fields": {"state_transition": 892, "node_type": "S", "subcondition": 23, "parent": 3800}}, {"model": "template.logicnode", "pk": 3799, "fields": {"state_transition": 892, "node_type": "S", "subcondition": 2, "parent": 3800}}, {"model": "template.logicnode", "pk": 3800, "fields": {"state_transition": 892, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3801, "fields": {"state_transition": 893, "node_type": "S", "subcondition": 23, "parent": 3803}}, {"model": "template.logicnode", "pk": 3802, "fields": {"state_transition": 893, "node_type": "S", "subcondition": 12, "parent": 3803}}, {"model": "template.logicnode", "pk": 3803, "fields": {"state_transition": 893, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3804, "fields": {"state_transition": 894, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3805, "fields": {"state_transition": 895, "node_type": "N", "subcondition": null, "parent": 3811}}, {"model": "template.logicnode", "pk": 3806, "fields": {"state_transition": 895, "node_type": "S", "subcondition": 23, "parent": 3805}}, {"model": "template.logicnode", "pk": 3807, "fields": {"state_transition": 895, "node_type": "S", "subcondition": 11, "parent": 3811}}, {"model": "template.logicnode", "pk": 3808, "fields": {"state_transition": 895, "node_type": "S", "subcondition": 7, "parent": 3811}}, {"model": "template.logicnode", "pk": 3809, "fields": {"state_transition": 895, "node_type": "S", "subcondition": 2, "parent": 3811}}, {"model": "template.logicnode", "pk": 3810, "fields": {"state_transition": 895, "node_type": "S", "subcondition": 12, "parent": 3811}}, {"model": "template.logicnode", "pk": 3811, "fields": {"state_transition": 895, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3812, "fields": {"state_transition": 896, "node_type": "N", "subcondition": null, "parent": 3817}}, {"model": "template.logicnode", "pk": 3813, "fields": {"state_transition": 896, "node_type": "S", "subcondition": 23, "parent": 3812}}, {"model": "template.logicnode", "pk": 3814, "fields": {"state_transition": 896, "node_type": "S", "subcondition": 11, "parent": 3817}}, {"model": "template.logicnode", "pk": 3815, "fields": {"state_transition": 896, "node_type": "S", "subcondition": 7, "parent": 3817}}, {"model": "template.logicnode", "pk": 3816, "fields": {"state_transition": 896, "node_type": "S", "subcondition": 2, "parent": 3817}}, {"model": "template.logicnode", "pk": 3817, "fields": {"state_transition": 896, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3818, "fields": {"state_transition": 897, "node_type": "N", "subcondition": null, "parent": 3823}}, {"model": "template.logicnode", "pk": 3819, "fields": {"state_transition": 897, "node_type": "S", "subcondition": 23, "parent": 3818}}, {"model": "template.logicnode", "pk": 3820, "fields": {"state_transition": 897, "node_type": "S", "subcondition": 11, "parent": 3823}}, {"model": "template.logicnode", "pk": 3821, "fields": {"state_transition": 897, "node_type": "S", "subcondition": 7, "parent": 3823}}, {"model": "template.logicnode", "pk": 3822, "fields": {"state_transition": 897, "node_type": "S", "subcondition": 12, "parent": 3823}}, {"model": "template.logicnode", "pk": 3823, "fields": {"state_transition": 897, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3824, "fields": {"state_transition": 898, "node_type": "N", "subcondition": null, "parent": 3828}}, {"model": "template.logicnode", "pk": 3825, "fields": {"state_transition": 898, "node_type": "S", "subcondition": 23, "parent": 3824}}, {"model": "template.logicnode", "pk": 3826, "fields": {"state_transition": 898, "node_type": "S", "subcondition": 11, "parent": 3828}}, {"model": "template.logicnode", "pk": 3827, "fields": {"state_transition": 898, "node_type": "S", "subcondition": 7, "parent": 3828}}, {"model": "template.logicnode", "pk": 3828, "fields": {"state_transition": 898, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3829, "fields": {"state_transition": 899, "node_type": "N", "subcondition": null, "parent": 3834}}, {"model": "template.logicnode", "pk": 3830, "fields": {"state_transition": 899, "node_type": "S", "subcondition": 23, "parent": 3829}}, {"model": "template.logicnode", "pk": 3831, "fields": {"state_transition": 899, "node_type": "S", "subcondition": 11, "parent": 3834}}, {"model": "template.logicnode", "pk": 3832, "fields": {"state_transition": 899, "node_type": "S", "subcondition": 2, "parent": 3834}}, {"model": "template.logicnode", "pk": 3833, "fields": {"state_transition": 899, "node_type": "S", "subcondition": 12, "parent": 3834}}, {"model": "template.logicnode", "pk": 3834, "fields": {"state_transition": 899, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3835, "fields": {"state_transition": 900, "node_type": "N", "subcondition": null, "parent": 3839}}, {"model": "template.logicnode", "pk": 3836, "fields": {"state_transition": 900, "node_type": "S", "subcondition": 23, "parent": 3835}}, {"model": "template.logicnode", "pk": 3837, "fields": {"state_transition": 900, "node_type": "S", "subcondition": 11, "parent": 3839}}, {"model": "template.logicnode", "pk": 3838, "fields": {"state_transition": 900, "node_type": "S", "subcondition": 2, "parent": 3839}}, {"model": "template.logicnode", "pk": 3839, "fields": {"state_transition": 900, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3840, "fields": {"state_transition": 901, "node_type": "N", "subcondition": null, "parent": 3844}}, {"model": "template.logicnode", "pk": 3841, "fields": {"state_transition": 901, "node_type": "S", "subcondition": 23, "parent": 3840}}, {"model": "template.logicnode", "pk": 3842, "fields": {"state_transition": 901, "node_type": "S", "subcondition": 11, "parent": 3844}}, {"model": "template.logicnode", "pk": 3843, "fields": {"state_transition": 901, "node_type": "S", "subcondition": 12, "parent": 3844}}, {"model": "template.logicnode", "pk": 3844, "fields": {"state_transition": 901, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3845, "fields": {"state_transition": 902, "node_type": "N", "subcondition": null, "parent": 3848}}, {"model": "template.logicnode", "pk": 3846, "fields": {"state_transition": 902, "node_type": "S", "subcondition": 23, "parent": 3845}}, {"model": "template.logicnode", "pk": 3847, "fields": {"state_transition": 902, "node_type": "S", "subcondition": 11, "parent": 3848}}, {"model": "template.logicnode", "pk": 3848, "fields": {"state_transition": 902, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3849, "fields": {"state_transition": 903, "node_type": "N", "subcondition": null, "parent": 3854}}, {"model": "template.logicnode", "pk": 3850, "fields": {"state_transition": 903, "node_type": "S", "subcondition": 23, "parent": 3849}}, {"model": "template.logicnode", "pk": 3851, "fields": {"state_transition": 903, "node_type": "S", "subcondition": 7, "parent": 3854}}, {"model": "template.logicnode", "pk": 3852, "fields": {"state_transition": 903, "node_type": "S", "subcondition": 2, "parent": 3854}}, {"model": "template.logicnode", "pk": 3853, "fields": {"state_transition": 903, "node_type": "S", "subcondition": 12, "parent": 3854}}, {"model": "template.logicnode", "pk": 3854, "fields": {"state_transition": 903, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3855, "fields": {"state_transition": 904, "node_type": "N", "subcondition": null, "parent": 3859}}, {"model": "template.logicnode", "pk": 3856, "fields": {"state_transition": 904, "node_type": "S", "subcondition": 23, "parent": 3855}}, {"model": "template.logicnode", "pk": 3857, "fields": {"state_transition": 904, "node_type": "S", "subcondition": 7, "parent": 3859}}, {"model": "template.logicnode", "pk": 3858, "fields": {"state_transition": 904, "node_type": "S", "subcondition": 2, "parent": 3859}}, {"model": "template.logicnode", "pk": 3859, "fields": {"state_transition": 904, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3860, "fields": {"state_transition": 905, "node_type": "N", "subcondition": null, "parent": 3864}}, {"model": "template.logicnode", "pk": 3861, "fields": {"state_transition": 905, "node_type": "S", "subcondition": 23, "parent": 3860}}, {"model": "template.logicnode", "pk": 3862, "fields": {"state_transition": 905, "node_type": "S", "subcondition": 7, "parent": 3864}}, {"model": "template.logicnode", "pk": 3863, "fields": {"state_transition": 905, "node_type": "S", "subcondition": 12, "parent": 3864}}, {"model": "template.logicnode", "pk": 3864, "fields": {"state_transition": 905, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3865, "fields": {"state_transition": 906, "node_type": "N", "subcondition": null, "parent": 3868}}, {"model": "template.logicnode", "pk": 3866, "fields": {"state_transition": 906, "node_type": "S", "subcondition": 23, "parent": 3865}}, {"model": "template.logicnode", "pk": 3867, "fields": {"state_transition": 906, "node_type": "S", "subcondition": 7, "parent": 3868}}, {"model": "template.logicnode", "pk": 3868, "fields": {"state_transition": 906, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3869, "fields": {"state_transition": 907, "node_type": "N", "subcondition": null, "parent": 3873}}, {"model": "template.logicnode", "pk": 3870, "fields": {"state_transition": 907, "node_type": "S", "subcondition": 23, "parent": 3869}}, {"model": "template.logicnode", "pk": 3871, "fields": {"state_transition": 907, "node_type": "S", "subcondition": 2, "parent": 3873}}, {"model": "template.logicnode", "pk": 3872, "fields": {"state_transition": 907, "node_type": "S", "subcondition": 12, "parent": 3873}}, {"model": "template.logicnode", "pk": 3873, "fields": {"state_transition": 907, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3874, "fields": {"state_transition": 908, "node_type": "N", "subcondition": null, "parent": 3877}}, {"model": "template.logicnode", "pk": 3875, "fields": {"state_transition": 908, "node_type": "S", "subcondition": 23, "parent": 3874}}, {"model": "template.logicnode", "pk": 3876, "fields": {"state_transition": 908, "node_type": "S", "subcondition": 2, "parent": 3877}}, {"model": "template.logicnode", "pk": 3877, "fields": {"state_transition": 908, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3878, "fields": {"state_transition": 909, "node_type": "N", "subcondition": null, "parent": 3881}}, {"model": "template.logicnode", "pk": 3879, "fields": {"state_transition": 909, "node_type": "S", "subcondition": 23, "parent": 3878}}, {"model": "template.logicnode", "pk": 3880, "fields": {"state_transition": 909, "node_type": "S", "subcondition": 12, "parent": 3881}}, {"model": "template.logicnode", "pk": 3881, "fields": {"state_transition": 909, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3882, "fields": {"state_transition": 910, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3883, "fields": {"state_transition": 910, "node_type": "S", "subcondition": 23, "parent": 3882}}, {"model": "template.logicnode", "pk": 3884, "fields": {"state_transition": 911, "node_type": "S", "subcondition": 23, "parent": 3888}}, {"model": "template.logicnode", "pk": 3885, "fields": {"state_transition": 911, "node_type": "S", "subcondition": 7, "parent": 3888}}, {"model": "template.logicnode", "pk": 3886, "fields": {"state_transition": 911, "node_type": "S", "subcondition": 2, "parent": 3888}}, {"model": "template.logicnode", "pk": 3887, "fields": {"state_transition": 911, "node_type": "S", "subcondition": 12, "parent": 3888}}, {"model": "template.logicnode", "pk": 3888, "fields": {"state_transition": 911, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3889, "fields": {"state_transition": 912, "node_type": "S", "subcondition": 23, "parent": 3892}}, {"model": "template.logicnode", "pk": 3890, "fields": {"state_transition": 912, "node_type": "S", "subcondition": 7, "parent": 3892}}, {"model": "template.logicnode", "pk": 3891, "fields": {"state_transition": 912, "node_type": "S", "subcondition": 2, "parent": 3892}}, {"model": "template.logicnode", "pk": 3892, "fields": {"state_transition": 912, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3893, "fields": {"state_transition": 913, "node_type": "S", "subcondition": 23, "parent": 3896}}, {"model": "template.logicnode", "pk": 3894, "fields": {"state_transition": 913, "node_type": "S", "subcondition": 7, "parent": 3896}}, {"model": "template.logicnode", "pk": 3895, "fields": {"state_transition": 913, "node_type": "S", "subcondition": 12, "parent": 3896}}, {"model": "template.logicnode", "pk": 3896, "fields": {"state_transition": 913, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3897, "fields": {"state_transition": 914, "node_type": "S", "subcondition": 23, "parent": 3899}}, {"model": "template.logicnode", "pk": 3898, "fields": {"state_transition": 914, "node_type": "S", "subcondition": 7, "parent": 3899}}, {"model": "template.logicnode", "pk": 3899, "fields": {"state_transition": 914, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3900, "fields": {"state_transition": 915, "node_type": "S", "subcondition": 23, "parent": 3903}}, {"model": "template.logicnode", "pk": 3901, "fields": {"state_transition": 915, "node_type": "S", "subcondition": 2, "parent": 3903}}, {"model": "template.logicnode", "pk": 3902, "fields": {"state_transition": 915, "node_type": "S", "subcondition": 12, "parent": 3903}}, {"model": "template.logicnode", "pk": 3903, "fields": {"state_transition": 915, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3904, "fields": {"state_transition": 916, "node_type": "S", "subcondition": 23, "parent": 3906}}, {"model": "template.logicnode", "pk": 3905, "fields": {"state_transition": 916, "node_type": "S", "subcondition": 2, "parent": 3906}}, {"model": "template.logicnode", "pk": 3906, "fields": {"state_transition": 916, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3907, "fields": {"state_transition": 917, "node_type": "S", "subcondition": 23, "parent": 3909}}, {"model": "template.logicnode", "pk": 3908, "fields": {"state_transition": 917, "node_type": "S", "subcondition": 12, "parent": 3909}}, {"model": "template.logicnode", "pk": 3909, "fields": {"state_transition": 917, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3910, "fields": {"state_transition": 918, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 3911, "fields": {"state_transition": 919, "node_type": "N", "subcondition": null, "parent": 3917}}, {"model": "template.logicnode", "pk": 3912, "fields": {"state_transition": 919, "node_type": "S", "subcondition": 23, "parent": 3911}}, {"model": "template.logicnode", "pk": 3913, "fields": {"state_transition": 919, "node_type": "S", "subcondition": 11, "parent": 3917}}, {"model": "template.logicnode", "pk": 3914, "fields": {"state_transition": 919, "node_type": "S", "subcondition": 7, "parent": 3917}}, {"model": "template.logicnode", "pk": 3915, "fields": {"state_transition": 919, "node_type": "S", "subcondition": 2, "parent": 3917}}, {"model": "template.logicnode", "pk": 3916, "fields": {"state_transition": 919, "node_type": "S", "subcondition": 12, "parent": 3917}}, {"model": "template.logicnode", "pk": 3917, "fields": {"state_transition": 919, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3918, "fields": {"state_transition": 920, "node_type": "N", "subcondition": null, "parent": 3923}}, {"model": "template.logicnode", "pk": 3919, "fields": {"state_transition": 920, "node_type": "S", "subcondition": 23, "parent": 3918}}, {"model": "template.logicnode", "pk": 3920, "fields": {"state_transition": 920, "node_type": "S", "subcondition": 11, "parent": 3923}}, {"model": "template.logicnode", "pk": 3921, "fields": {"state_transition": 920, "node_type": "S", "subcondition": 7, "parent": 3923}}, {"model": "template.logicnode", "pk": 3922, "fields": {"state_transition": 920, "node_type": "S", "subcondition": 2, "parent": 3923}}, {"model": "template.logicnode", "pk": 3923, "fields": {"state_transition": 920, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3924, "fields": {"state_transition": 921, "node_type": "N", "subcondition": null, "parent": 3929}}, {"model": "template.logicnode", "pk": 3925, "fields": {"state_transition": 921, "node_type": "S", "subcondition": 23, "parent": 3924}}, {"model": "template.logicnode", "pk": 3926, "fields": {"state_transition": 921, "node_type": "S", "subcondition": 11, "parent": 3929}}, {"model": "template.logicnode", "pk": 3927, "fields": {"state_transition": 921, "node_type": "S", "subcondition": 7, "parent": 3929}}, {"model": "template.logicnode", "pk": 3928, "fields": {"state_transition": 921, "node_type": "S", "subcondition": 12, "parent": 3929}}, {"model": "template.logicnode", "pk": 3929, "fields": {"state_transition": 921, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3930, "fields": {"state_transition": 922, "node_type": "N", "subcondition": null, "parent": 3934}}, {"model": "template.logicnode", "pk": 3931, "fields": {"state_transition": 922, "node_type": "S", "subcondition": 23, "parent": 3930}}, {"model": "template.logicnode", "pk": 3932, "fields": {"state_transition": 922, "node_type": "S", "subcondition": 11, "parent": 3934}}, {"model": "template.logicnode", "pk": 3933, "fields": {"state_transition": 922, "node_type": "S", "subcondition": 7, "parent": 3934}}, {"model": "template.logicnode", "pk": 3934, "fields": {"state_transition": 922, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3935, "fields": {"state_transition": 923, "node_type": "N", "subcondition": null, "parent": 3940}}, {"model": "template.logicnode", "pk": 3936, "fields": {"state_transition": 923, "node_type": "S", "subcondition": 23, "parent": 3935}}, {"model": "template.logicnode", "pk": 3937, "fields": {"state_transition": 923, "node_type": "S", "subcondition": 11, "parent": 3940}}, {"model": "template.logicnode", "pk": 3938, "fields": {"state_transition": 923, "node_type": "S", "subcondition": 2, "parent": 3940}}, {"model": "template.logicnode", "pk": 3939, "fields": {"state_transition": 923, "node_type": "S", "subcondition": 12, "parent": 3940}}, {"model": "template.logicnode", "pk": 3940, "fields": {"state_transition": 923, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3941, "fields": {"state_transition": 924, "node_type": "N", "subcondition": null, "parent": 3945}}, {"model": "template.logicnode", "pk": 3942, "fields": {"state_transition": 924, "node_type": "S", "subcondition": 23, "parent": 3941}}, {"model": "template.logicnode", "pk": 3943, "fields": {"state_transition": 924, "node_type": "S", "subcondition": 11, "parent": 3945}}, {"model": "template.logicnode", "pk": 3944, "fields": {"state_transition": 924, "node_type": "S", "subcondition": 2, "parent": 3945}}, {"model": "template.logicnode", "pk": 3945, "fields": {"state_transition": 924, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3946, "fields": {"state_transition": 925, "node_type": "N", "subcondition": null, "parent": 3950}}, {"model": "template.logicnode", "pk": 3947, "fields": {"state_transition": 925, "node_type": "S", "subcondition": 23, "parent": 3946}}, {"model": "template.logicnode", "pk": 3948, "fields": {"state_transition": 925, "node_type": "S", "subcondition": 11, "parent": 3950}}, {"model": "template.logicnode", "pk": 3949, "fields": {"state_transition": 925, "node_type": "S", "subcondition": 12, "parent": 3950}}, {"model": "template.logicnode", "pk": 3950, "fields": {"state_transition": 925, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3951, "fields": {"state_transition": 926, "node_type": "N", "subcondition": null, "parent": 3954}}, {"model": "template.logicnode", "pk": 3952, "fields": {"state_transition": 926, "node_type": "S", "subcondition": 23, "parent": 3951}}, {"model": "template.logicnode", "pk": 3953, "fields": {"state_transition": 926, "node_type": "S", "subcondition": 11, "parent": 3954}}, {"model": "template.logicnode", "pk": 3954, "fields": {"state_transition": 926, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3955, "fields": {"state_transition": 927, "node_type": "N", "subcondition": null, "parent": 3960}}, {"model": "template.logicnode", "pk": 3956, "fields": {"state_transition": 927, "node_type": "S", "subcondition": 23, "parent": 3955}}, {"model": "template.logicnode", "pk": 3957, "fields": {"state_transition": 927, "node_type": "S", "subcondition": 7, "parent": 3960}}, {"model": "template.logicnode", "pk": 3958, "fields": {"state_transition": 927, "node_type": "S", "subcondition": 2, "parent": 3960}}, {"model": "template.logicnode", "pk": 3959, "fields": {"state_transition": 927, "node_type": "S", "subcondition": 12, "parent": 3960}}, {"model": "template.logicnode", "pk": 3960, "fields": {"state_transition": 927, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3961, "fields": {"state_transition": 928, "node_type": "N", "subcondition": null, "parent": 3965}}, {"model": "template.logicnode", "pk": 3962, "fields": {"state_transition": 928, "node_type": "S", "subcondition": 23, "parent": 3961}}, {"model": "template.logicnode", "pk": 3963, "fields": {"state_transition": 928, "node_type": "S", "subcondition": 7, "parent": 3965}}, {"model": "template.logicnode", "pk": 3964, "fields": {"state_transition": 928, "node_type": "S", "subcondition": 2, "parent": 3965}}, {"model": "template.logicnode", "pk": 3965, "fields": {"state_transition": 928, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3966, "fields": {"state_transition": 929, "node_type": "N", "subcondition": null, "parent": 3970}}, {"model": "template.logicnode", "pk": 3967, "fields": {"state_transition": 929, "node_type": "S", "subcondition": 23, "parent": 3966}}, {"model": "template.logicnode", "pk": 3968, "fields": {"state_transition": 929, "node_type": "S", "subcondition": 7, "parent": 3970}}, {"model": "template.logicnode", "pk": 3969, "fields": {"state_transition": 929, "node_type": "S", "subcondition": 12, "parent": 3970}}, {"model": "template.logicnode", "pk": 3970, "fields": {"state_transition": 929, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3971, "fields": {"state_transition": 930, "node_type": "N", "subcondition": null, "parent": 3974}}, {"model": "template.logicnode", "pk": 3972, "fields": {"state_transition": 930, "node_type": "S", "subcondition": 23, "parent": 3971}}, {"model": "template.logicnode", "pk": 3973, "fields": {"state_transition": 930, "node_type": "S", "subcondition": 7, "parent": 3974}}, {"model": "template.logicnode", "pk": 3974, "fields": {"state_transition": 930, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3975, "fields": {"state_transition": 931, "node_type": "N", "subcondition": null, "parent": 3979}}, {"model": "template.logicnode", "pk": 3976, "fields": {"state_transition": 931, "node_type": "S", "subcondition": 23, "parent": 3975}}, {"model": "template.logicnode", "pk": 3977, "fields": {"state_transition": 931, "node_type": "S", "subcondition": 2, "parent": 3979}}, {"model": "template.logicnode", "pk": 3978, "fields": {"state_transition": 931, "node_type": "S", "subcondition": 12, "parent": 3979}}, {"model": "template.logicnode", "pk": 3979, "fields": {"state_transition": 931, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3980, "fields": {"state_transition": 932, "node_type": "N", "subcondition": null, "parent": 3983}}, {"model": "template.logicnode", "pk": 3981, "fields": {"state_transition": 932, "node_type": "S", "subcondition": 23, "parent": 3980}}, {"model": "template.logicnode", "pk": 3982, "fields": {"state_transition": 932, "node_type": "S", "subcondition": 2, "parent": 3983}}, {"model": "template.logicnode", "pk": 3983, "fields": {"state_transition": 932, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3984, "fields": {"state_transition": 933, "node_type": "N", "subcondition": null, "parent": 3987}}, {"model": "template.logicnode", "pk": 3985, "fields": {"state_transition": 933, "node_type": "S", "subcondition": 23, "parent": 3984}}, {"model": "template.logicnode", "pk": 3986, "fields": {"state_transition": 933, "node_type": "S", "subcondition": 12, "parent": 3987}}, {"model": "template.logicnode", "pk": 3987, "fields": {"state_transition": 933, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3988, "fields": {"state_transition": 934, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3989, "fields": {"state_transition": 934, "node_type": "S", "subcondition": 23, "parent": 3988}}, {"model": "template.logicnode", "pk": 3990, "fields": {"state_transition": 935, "node_type": "S", "subcondition": 23, "parent": 3994}}, {"model": "template.logicnode", "pk": 3991, "fields": {"state_transition": 935, "node_type": "S", "subcondition": 7, "parent": 3994}}, {"model": "template.logicnode", "pk": 3992, "fields": {"state_transition": 935, "node_type": "S", "subcondition": 2, "parent": 3994}}, {"model": "template.logicnode", "pk": 3993, "fields": {"state_transition": 935, "node_type": "S", "subcondition": 12, "parent": 3994}}, {"model": "template.logicnode", "pk": 3994, "fields": {"state_transition": 935, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3995, "fields": {"state_transition": 936, "node_type": "S", "subcondition": 23, "parent": 3998}}, {"model": "template.logicnode", "pk": 3996, "fields": {"state_transition": 936, "node_type": "S", "subcondition": 7, "parent": 3998}}, {"model": "template.logicnode", "pk": 3997, "fields": {"state_transition": 936, "node_type": "S", "subcondition": 2, "parent": 3998}}, {"model": "template.logicnode", "pk": 3998, "fields": {"state_transition": 936, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 3999, "fields": {"state_transition": 937, "node_type": "S", "subcondition": 23, "parent": 4002}}, {"model": "template.logicnode", "pk": 4000, "fields": {"state_transition": 937, "node_type": "S", "subcondition": 7, "parent": 4002}}, {"model": "template.logicnode", "pk": 4001, "fields": {"state_transition": 937, "node_type": "S", "subcondition": 12, "parent": 4002}}, {"model": "template.logicnode", "pk": 4002, "fields": {"state_transition": 937, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4003, "fields": {"state_transition": 938, "node_type": "S", "subcondition": 23, "parent": 4005}}, {"model": "template.logicnode", "pk": 4004, "fields": {"state_transition": 938, "node_type": "S", "subcondition": 7, "parent": 4005}}, {"model": "template.logicnode", "pk": 4005, "fields": {"state_transition": 938, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4006, "fields": {"state_transition": 939, "node_type": "S", "subcondition": 23, "parent": 4009}}, {"model": "template.logicnode", "pk": 4007, "fields": {"state_transition": 939, "node_type": "S", "subcondition": 2, "parent": 4009}}, {"model": "template.logicnode", "pk": 4008, "fields": {"state_transition": 939, "node_type": "S", "subcondition": 12, "parent": 4009}}, {"model": "template.logicnode", "pk": 4009, "fields": {"state_transition": 939, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4010, "fields": {"state_transition": 940, "node_type": "S", "subcondition": 23, "parent": 4012}}, {"model": "template.logicnode", "pk": 4011, "fields": {"state_transition": 940, "node_type": "S", "subcondition": 2, "parent": 4012}}, {"model": "template.logicnode", "pk": 4012, "fields": {"state_transition": 940, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4013, "fields": {"state_transition": 941, "node_type": "S", "subcondition": 23, "parent": 4015}}, {"model": "template.logicnode", "pk": 4014, "fields": {"state_transition": 941, "node_type": "S", "subcondition": 12, "parent": 4015}}, {"model": "template.logicnode", "pk": 4015, "fields": {"state_transition": 941, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4016, "fields": {"state_transition": 942, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4017, "fields": {"state_transition": 943, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4018, "fields": {"state_transition": 943, "node_type": "S", "subcondition": 12, "parent": 4017}}, {"model": "template.logicnode", "pk": 4019, "fields": {"state_transition": 944, "node_type": "N", "subcondition": null, "parent": 4025}}, {"model": "template.logicnode", "pk": 4020, "fields": {"state_transition": 944, "node_type": "S", "subcondition": 23, "parent": 4019}}, {"model": "template.logicnode", "pk": 4021, "fields": {"state_transition": 944, "node_type": "S", "subcondition": 11, "parent": 4025}}, {"model": "template.logicnode", "pk": 4022, "fields": {"state_transition": 944, "node_type": "S", "subcondition": 7, "parent": 4025}}, {"model": "template.logicnode", "pk": 4023, "fields": {"state_transition": 944, "node_type": "S", "subcondition": 2, "parent": 4025}}, {"model": "template.logicnode", "pk": 4024, "fields": {"state_transition": 944, "node_type": "S", "subcondition": 12, "parent": 4025}}, {"model": "template.logicnode", "pk": 4025, "fields": {"state_transition": 944, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4026, "fields": {"state_transition": 945, "node_type": "N", "subcondition": null, "parent": 4031}}, {"model": "template.logicnode", "pk": 4027, "fields": {"state_transition": 945, "node_type": "S", "subcondition": 23, "parent": 4026}}, {"model": "template.logicnode", "pk": 4028, "fields": {"state_transition": 945, "node_type": "S", "subcondition": 11, "parent": 4031}}, {"model": "template.logicnode", "pk": 4029, "fields": {"state_transition": 945, "node_type": "S", "subcondition": 7, "parent": 4031}}, {"model": "template.logicnode", "pk": 4030, "fields": {"state_transition": 945, "node_type": "S", "subcondition": 2, "parent": 4031}}, {"model": "template.logicnode", "pk": 4031, "fields": {"state_transition": 945, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4032, "fields": {"state_transition": 946, "node_type": "N", "subcondition": null, "parent": 4037}}, {"model": "template.logicnode", "pk": 4033, "fields": {"state_transition": 946, "node_type": "S", "subcondition": 23, "parent": 4032}}, {"model": "template.logicnode", "pk": 4034, "fields": {"state_transition": 946, "node_type": "S", "subcondition": 11, "parent": 4037}}, {"model": "template.logicnode", "pk": 4035, "fields": {"state_transition": 946, "node_type": "S", "subcondition": 7, "parent": 4037}}, {"model": "template.logicnode", "pk": 4036, "fields": {"state_transition": 946, "node_type": "S", "subcondition": 12, "parent": 4037}}, {"model": "template.logicnode", "pk": 4037, "fields": {"state_transition": 946, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4038, "fields": {"state_transition": 947, "node_type": "N", "subcondition": null, "parent": 4042}}, {"model": "template.logicnode", "pk": 4039, "fields": {"state_transition": 947, "node_type": "S", "subcondition": 23, "parent": 4038}}, {"model": "template.logicnode", "pk": 4040, "fields": {"state_transition": 947, "node_type": "S", "subcondition": 11, "parent": 4042}}, {"model": "template.logicnode", "pk": 4041, "fields": {"state_transition": 947, "node_type": "S", "subcondition": 7, "parent": 4042}}, {"model": "template.logicnode", "pk": 4042, "fields": {"state_transition": 947, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4043, "fields": {"state_transition": 948, "node_type": "N", "subcondition": null, "parent": 4048}}, {"model": "template.logicnode", "pk": 4044, "fields": {"state_transition": 948, "node_type": "S", "subcondition": 23, "parent": 4043}}, {"model": "template.logicnode", "pk": 4045, "fields": {"state_transition": 948, "node_type": "S", "subcondition": 11, "parent": 4048}}, {"model": "template.logicnode", "pk": 4046, "fields": {"state_transition": 948, "node_type": "S", "subcondition": 2, "parent": 4048}}, {"model": "template.logicnode", "pk": 4047, "fields": {"state_transition": 948, "node_type": "S", "subcondition": 12, "parent": 4048}}, {"model": "template.logicnode", "pk": 4048, "fields": {"state_transition": 948, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4049, "fields": {"state_transition": 949, "node_type": "N", "subcondition": null, "parent": 4053}}, {"model": "template.logicnode", "pk": 4050, "fields": {"state_transition": 949, "node_type": "S", "subcondition": 23, "parent": 4049}}, {"model": "template.logicnode", "pk": 4051, "fields": {"state_transition": 949, "node_type": "S", "subcondition": 11, "parent": 4053}}, {"model": "template.logicnode", "pk": 4052, "fields": {"state_transition": 949, "node_type": "S", "subcondition": 2, "parent": 4053}}, {"model": "template.logicnode", "pk": 4053, "fields": {"state_transition": 949, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4054, "fields": {"state_transition": 950, "node_type": "N", "subcondition": null, "parent": 4058}}, {"model": "template.logicnode", "pk": 4055, "fields": {"state_transition": 950, "node_type": "S", "subcondition": 23, "parent": 4054}}, {"model": "template.logicnode", "pk": 4056, "fields": {"state_transition": 950, "node_type": "S", "subcondition": 11, "parent": 4058}}, {"model": "template.logicnode", "pk": 4057, "fields": {"state_transition": 950, "node_type": "S", "subcondition": 12, "parent": 4058}}, {"model": "template.logicnode", "pk": 4058, "fields": {"state_transition": 950, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4059, "fields": {"state_transition": 951, "node_type": "N", "subcondition": null, "parent": 4062}}, {"model": "template.logicnode", "pk": 4060, "fields": {"state_transition": 951, "node_type": "S", "subcondition": 23, "parent": 4059}}, {"model": "template.logicnode", "pk": 4061, "fields": {"state_transition": 951, "node_type": "S", "subcondition": 11, "parent": 4062}}, {"model": "template.logicnode", "pk": 4062, "fields": {"state_transition": 951, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4063, "fields": {"state_transition": 952, "node_type": "N", "subcondition": null, "parent": 4068}}, {"model": "template.logicnode", "pk": 4064, "fields": {"state_transition": 952, "node_type": "S", "subcondition": 23, "parent": 4063}}, {"model": "template.logicnode", "pk": 4065, "fields": {"state_transition": 952, "node_type": "S", "subcondition": 7, "parent": 4068}}, {"model": "template.logicnode", "pk": 4066, "fields": {"state_transition": 952, "node_type": "S", "subcondition": 2, "parent": 4068}}, {"model": "template.logicnode", "pk": 4067, "fields": {"state_transition": 952, "node_type": "S", "subcondition": 12, "parent": 4068}}, {"model": "template.logicnode", "pk": 4068, "fields": {"state_transition": 952, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4069, "fields": {"state_transition": 953, "node_type": "N", "subcondition": null, "parent": 4073}}, {"model": "template.logicnode", "pk": 4070, "fields": {"state_transition": 953, "node_type": "S", "subcondition": 23, "parent": 4069}}, {"model": "template.logicnode", "pk": 4071, "fields": {"state_transition": 953, "node_type": "S", "subcondition": 7, "parent": 4073}}, {"model": "template.logicnode", "pk": 4072, "fields": {"state_transition": 953, "node_type": "S", "subcondition": 2, "parent": 4073}}, {"model": "template.logicnode", "pk": 4073, "fields": {"state_transition": 953, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4074, "fields": {"state_transition": 954, "node_type": "N", "subcondition": null, "parent": 4078}}, {"model": "template.logicnode", "pk": 4075, "fields": {"state_transition": 954, "node_type": "S", "subcondition": 23, "parent": 4074}}, {"model": "template.logicnode", "pk": 4076, "fields": {"state_transition": 954, "node_type": "S", "subcondition": 7, "parent": 4078}}, {"model": "template.logicnode", "pk": 4077, "fields": {"state_transition": 954, "node_type": "S", "subcondition": 12, "parent": 4078}}, {"model": "template.logicnode", "pk": 4078, "fields": {"state_transition": 954, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4079, "fields": {"state_transition": 955, "node_type": "N", "subcondition": null, "parent": 4082}}, {"model": "template.logicnode", "pk": 4080, "fields": {"state_transition": 955, "node_type": "S", "subcondition": 23, "parent": 4079}}, {"model": "template.logicnode", "pk": 4081, "fields": {"state_transition": 955, "node_type": "S", "subcondition": 7, "parent": 4082}}, {"model": "template.logicnode", "pk": 4082, "fields": {"state_transition": 955, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4083, "fields": {"state_transition": 956, "node_type": "N", "subcondition": null, "parent": 4087}}, {"model": "template.logicnode", "pk": 4084, "fields": {"state_transition": 956, "node_type": "S", "subcondition": 23, "parent": 4083}}, {"model": "template.logicnode", "pk": 4085, "fields": {"state_transition": 956, "node_type": "S", "subcondition": 2, "parent": 4087}}, {"model": "template.logicnode", "pk": 4086, "fields": {"state_transition": 956, "node_type": "S", "subcondition": 12, "parent": 4087}}, {"model": "template.logicnode", "pk": 4087, "fields": {"state_transition": 956, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4088, "fields": {"state_transition": 957, "node_type": "N", "subcondition": null, "parent": 4091}}, {"model": "template.logicnode", "pk": 4089, "fields": {"state_transition": 957, "node_type": "S", "subcondition": 23, "parent": 4088}}, {"model": "template.logicnode", "pk": 4090, "fields": {"state_transition": 957, "node_type": "S", "subcondition": 2, "parent": 4091}}, {"model": "template.logicnode", "pk": 4091, "fields": {"state_transition": 957, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4092, "fields": {"state_transition": 958, "node_type": "N", "subcondition": null, "parent": 4095}}, {"model": "template.logicnode", "pk": 4093, "fields": {"state_transition": 958, "node_type": "S", "subcondition": 23, "parent": 4092}}, {"model": "template.logicnode", "pk": 4094, "fields": {"state_transition": 958, "node_type": "S", "subcondition": 12, "parent": 4095}}, {"model": "template.logicnode", "pk": 4095, "fields": {"state_transition": 958, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4096, "fields": {"state_transition": 959, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4097, "fields": {"state_transition": 959, "node_type": "S", "subcondition": 23, "parent": 4096}}, {"model": "template.logicnode", "pk": 4098, "fields": {"state_transition": 960, "node_type": "S", "subcondition": 23, "parent": 4102}}, {"model": "template.logicnode", "pk": 4099, "fields": {"state_transition": 960, "node_type": "S", "subcondition": 7, "parent": 4102}}, {"model": "template.logicnode", "pk": 4100, "fields": {"state_transition": 960, "node_type": "S", "subcondition": 2, "parent": 4102}}, {"model": "template.logicnode", "pk": 4101, "fields": {"state_transition": 960, "node_type": "S", "subcondition": 12, "parent": 4102}}, {"model": "template.logicnode", "pk": 4102, "fields": {"state_transition": 960, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4103, "fields": {"state_transition": 961, "node_type": "S", "subcondition": 23, "parent": 4106}}, {"model": "template.logicnode", "pk": 4104, "fields": {"state_transition": 961, "node_type": "S", "subcondition": 7, "parent": 4106}}, {"model": "template.logicnode", "pk": 4105, "fields": {"state_transition": 961, "node_type": "S", "subcondition": 2, "parent": 4106}}, {"model": "template.logicnode", "pk": 4106, "fields": {"state_transition": 961, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4107, "fields": {"state_transition": 962, "node_type": "S", "subcondition": 23, "parent": 4110}}, {"model": "template.logicnode", "pk": 4108, "fields": {"state_transition": 962, "node_type": "S", "subcondition": 7, "parent": 4110}}, {"model": "template.logicnode", "pk": 4109, "fields": {"state_transition": 962, "node_type": "S", "subcondition": 12, "parent": 4110}}, {"model": "template.logicnode", "pk": 4110, "fields": {"state_transition": 962, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4111, "fields": {"state_transition": 963, "node_type": "S", "subcondition": 23, "parent": 4113}}, {"model": "template.logicnode", "pk": 4112, "fields": {"state_transition": 963, "node_type": "S", "subcondition": 7, "parent": 4113}}, {"model": "template.logicnode", "pk": 4113, "fields": {"state_transition": 963, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4114, "fields": {"state_transition": 964, "node_type": "S", "subcondition": 23, "parent": 4117}}, {"model": "template.logicnode", "pk": 4115, "fields": {"state_transition": 964, "node_type": "S", "subcondition": 2, "parent": 4117}}, {"model": "template.logicnode", "pk": 4116, "fields": {"state_transition": 964, "node_type": "S", "subcondition": 12, "parent": 4117}}, {"model": "template.logicnode", "pk": 4117, "fields": {"state_transition": 964, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4118, "fields": {"state_transition": 965, "node_type": "S", "subcondition": 23, "parent": 4120}}, {"model": "template.logicnode", "pk": 4119, "fields": {"state_transition": 965, "node_type": "S", "subcondition": 2, "parent": 4120}}, {"model": "template.logicnode", "pk": 4120, "fields": {"state_transition": 965, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4121, "fields": {"state_transition": 966, "node_type": "S", "subcondition": 23, "parent": 4123}}, {"model": "template.logicnode", "pk": 4122, "fields": {"state_transition": 966, "node_type": "S", "subcondition": 12, "parent": 4123}}, {"model": "template.logicnode", "pk": 4123, "fields": {"state_transition": 966, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4124, "fields": {"state_transition": 967, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4125, "fields": {"state_transition": 968, "node_type": "N", "subcondition": null, "parent": 4131}}, {"model": "template.logicnode", "pk": 4126, "fields": {"state_transition": 968, "node_type": "S", "subcondition": 23, "parent": 4125}}, {"model": "template.logicnode", "pk": 4127, "fields": {"state_transition": 968, "node_type": "S", "subcondition": 11, "parent": 4131}}, {"model": "template.logicnode", "pk": 4128, "fields": {"state_transition": 968, "node_type": "S", "subcondition": 7, "parent": 4131}}, {"model": "template.logicnode", "pk": 4129, "fields": {"state_transition": 968, "node_type": "S", "subcondition": 2, "parent": 4131}}, {"model": "template.logicnode", "pk": 4130, "fields": {"state_transition": 968, "node_type": "S", "subcondition": 12, "parent": 4131}}, {"model": "template.logicnode", "pk": 4131, "fields": {"state_transition": 968, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4132, "fields": {"state_transition": 969, "node_type": "N", "subcondition": null, "parent": 4137}}, {"model": "template.logicnode", "pk": 4133, "fields": {"state_transition": 969, "node_type": "S", "subcondition": 23, "parent": 4132}}, {"model": "template.logicnode", "pk": 4134, "fields": {"state_transition": 969, "node_type": "S", "subcondition": 11, "parent": 4137}}, {"model": "template.logicnode", "pk": 4135, "fields": {"state_transition": 969, "node_type": "S", "subcondition": 7, "parent": 4137}}, {"model": "template.logicnode", "pk": 4136, "fields": {"state_transition": 969, "node_type": "S", "subcondition": 2, "parent": 4137}}, {"model": "template.logicnode", "pk": 4137, "fields": {"state_transition": 969, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4138, "fields": {"state_transition": 970, "node_type": "N", "subcondition": null, "parent": 4143}}, {"model": "template.logicnode", "pk": 4139, "fields": {"state_transition": 970, "node_type": "S", "subcondition": 23, "parent": 4138}}, {"model": "template.logicnode", "pk": 4140, "fields": {"state_transition": 970, "node_type": "S", "subcondition": 11, "parent": 4143}}, {"model": "template.logicnode", "pk": 4141, "fields": {"state_transition": 970, "node_type": "S", "subcondition": 7, "parent": 4143}}, {"model": "template.logicnode", "pk": 4142, "fields": {"state_transition": 970, "node_type": "S", "subcondition": 12, "parent": 4143}}, {"model": "template.logicnode", "pk": 4143, "fields": {"state_transition": 970, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4144, "fields": {"state_transition": 971, "node_type": "N", "subcondition": null, "parent": 4148}}, {"model": "template.logicnode", "pk": 4145, "fields": {"state_transition": 971, "node_type": "S", "subcondition": 23, "parent": 4144}}, {"model": "template.logicnode", "pk": 4146, "fields": {"state_transition": 971, "node_type": "S", "subcondition": 11, "parent": 4148}}, {"model": "template.logicnode", "pk": 4147, "fields": {"state_transition": 971, "node_type": "S", "subcondition": 7, "parent": 4148}}, {"model": "template.logicnode", "pk": 4148, "fields": {"state_transition": 971, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4149, "fields": {"state_transition": 972, "node_type": "N", "subcondition": null, "parent": 4154}}, {"model": "template.logicnode", "pk": 4150, "fields": {"state_transition": 972, "node_type": "S", "subcondition": 23, "parent": 4149}}, {"model": "template.logicnode", "pk": 4151, "fields": {"state_transition": 972, "node_type": "S", "subcondition": 11, "parent": 4154}}, {"model": "template.logicnode", "pk": 4152, "fields": {"state_transition": 972, "node_type": "S", "subcondition": 2, "parent": 4154}}, {"model": "template.logicnode", "pk": 4153, "fields": {"state_transition": 972, "node_type": "S", "subcondition": 12, "parent": 4154}}, {"model": "template.logicnode", "pk": 4154, "fields": {"state_transition": 972, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4155, "fields": {"state_transition": 973, "node_type": "N", "subcondition": null, "parent": 4159}}, {"model": "template.logicnode", "pk": 4156, "fields": {"state_transition": 973, "node_type": "S", "subcondition": 23, "parent": 4155}}, {"model": "template.logicnode", "pk": 4157, "fields": {"state_transition": 973, "node_type": "S", "subcondition": 11, "parent": 4159}}, {"model": "template.logicnode", "pk": 4158, "fields": {"state_transition": 973, "node_type": "S", "subcondition": 2, "parent": 4159}}, {"model": "template.logicnode", "pk": 4159, "fields": {"state_transition": 973, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4160, "fields": {"state_transition": 974, "node_type": "N", "subcondition": null, "parent": 4164}}, {"model": "template.logicnode", "pk": 4161, "fields": {"state_transition": 974, "node_type": "S", "subcondition": 23, "parent": 4160}}, {"model": "template.logicnode", "pk": 4162, "fields": {"state_transition": 974, "node_type": "S", "subcondition": 11, "parent": 4164}}, {"model": "template.logicnode", "pk": 4163, "fields": {"state_transition": 974, "node_type": "S", "subcondition": 12, "parent": 4164}}, {"model": "template.logicnode", "pk": 4164, "fields": {"state_transition": 974, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4165, "fields": {"state_transition": 975, "node_type": "N", "subcondition": null, "parent": 4168}}, {"model": "template.logicnode", "pk": 4166, "fields": {"state_transition": 975, "node_type": "S", "subcondition": 23, "parent": 4165}}, {"model": "template.logicnode", "pk": 4167, "fields": {"state_transition": 975, "node_type": "S", "subcondition": 11, "parent": 4168}}, {"model": "template.logicnode", "pk": 4168, "fields": {"state_transition": 975, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4169, "fields": {"state_transition": 976, "node_type": "N", "subcondition": null, "parent": 4174}}, {"model": "template.logicnode", "pk": 4170, "fields": {"state_transition": 976, "node_type": "S", "subcondition": 23, "parent": 4169}}, {"model": "template.logicnode", "pk": 4171, "fields": {"state_transition": 976, "node_type": "S", "subcondition": 7, "parent": 4174}}, {"model": "template.logicnode", "pk": 4172, "fields": {"state_transition": 976, "node_type": "S", "subcondition": 2, "parent": 4174}}, {"model": "template.logicnode", "pk": 4173, "fields": {"state_transition": 976, "node_type": "S", "subcondition": 12, "parent": 4174}}, {"model": "template.logicnode", "pk": 4174, "fields": {"state_transition": 976, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4175, "fields": {"state_transition": 977, "node_type": "N", "subcondition": null, "parent": 4179}}, {"model": "template.logicnode", "pk": 4176, "fields": {"state_transition": 977, "node_type": "S", "subcondition": 23, "parent": 4175}}, {"model": "template.logicnode", "pk": 4177, "fields": {"state_transition": 977, "node_type": "S", "subcondition": 7, "parent": 4179}}, {"model": "template.logicnode", "pk": 4178, "fields": {"state_transition": 977, "node_type": "S", "subcondition": 2, "parent": 4179}}, {"model": "template.logicnode", "pk": 4179, "fields": {"state_transition": 977, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4180, "fields": {"state_transition": 978, "node_type": "N", "subcondition": null, "parent": 4184}}, {"model": "template.logicnode", "pk": 4181, "fields": {"state_transition": 978, "node_type": "S", "subcondition": 23, "parent": 4180}}, {"model": "template.logicnode", "pk": 4182, "fields": {"state_transition": 978, "node_type": "S", "subcondition": 7, "parent": 4184}}, {"model": "template.logicnode", "pk": 4183, "fields": {"state_transition": 978, "node_type": "S", "subcondition": 12, "parent": 4184}}, {"model": "template.logicnode", "pk": 4184, "fields": {"state_transition": 978, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4185, "fields": {"state_transition": 979, "node_type": "N", "subcondition": null, "parent": 4188}}, {"model": "template.logicnode", "pk": 4186, "fields": {"state_transition": 979, "node_type": "S", "subcondition": 23, "parent": 4185}}, {"model": "template.logicnode", "pk": 4187, "fields": {"state_transition": 979, "node_type": "S", "subcondition": 7, "parent": 4188}}, {"model": "template.logicnode", "pk": 4188, "fields": {"state_transition": 979, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4189, "fields": {"state_transition": 980, "node_type": "N", "subcondition": null, "parent": 4193}}, {"model": "template.logicnode", "pk": 4190, "fields": {"state_transition": 980, "node_type": "S", "subcondition": 23, "parent": 4189}}, {"model": "template.logicnode", "pk": 4191, "fields": {"state_transition": 980, "node_type": "S", "subcondition": 2, "parent": 4193}}, {"model": "template.logicnode", "pk": 4192, "fields": {"state_transition": 980, "node_type": "S", "subcondition": 12, "parent": 4193}}, {"model": "template.logicnode", "pk": 4193, "fields": {"state_transition": 980, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4194, "fields": {"state_transition": 981, "node_type": "N", "subcondition": null, "parent": 4197}}, {"model": "template.logicnode", "pk": 4195, "fields": {"state_transition": 981, "node_type": "S", "subcondition": 23, "parent": 4194}}, {"model": "template.logicnode", "pk": 4196, "fields": {"state_transition": 981, "node_type": "S", "subcondition": 2, "parent": 4197}}, {"model": "template.logicnode", "pk": 4197, "fields": {"state_transition": 981, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4198, "fields": {"state_transition": 982, "node_type": "N", "subcondition": null, "parent": 4201}}, {"model": "template.logicnode", "pk": 4199, "fields": {"state_transition": 982, "node_type": "S", "subcondition": 23, "parent": 4198}}, {"model": "template.logicnode", "pk": 4200, "fields": {"state_transition": 982, "node_type": "S", "subcondition": 12, "parent": 4201}}, {"model": "template.logicnode", "pk": 4201, "fields": {"state_transition": 982, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4202, "fields": {"state_transition": 983, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4203, "fields": {"state_transition": 983, "node_type": "S", "subcondition": 23, "parent": 4202}}, {"model": "template.logicnode", "pk": 4204, "fields": {"state_transition": 984, "node_type": "S", "subcondition": 23, "parent": 4208}}, {"model": "template.logicnode", "pk": 4205, "fields": {"state_transition": 984, "node_type": "S", "subcondition": 7, "parent": 4208}}, {"model": "template.logicnode", "pk": 4206, "fields": {"state_transition": 984, "node_type": "S", "subcondition": 2, "parent": 4208}}, {"model": "template.logicnode", "pk": 4207, "fields": {"state_transition": 984, "node_type": "S", "subcondition": 12, "parent": 4208}}, {"model": "template.logicnode", "pk": 4208, "fields": {"state_transition": 984, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4209, "fields": {"state_transition": 985, "node_type": "S", "subcondition": 23, "parent": 4212}}, {"model": "template.logicnode", "pk": 4210, "fields": {"state_transition": 985, "node_type": "S", "subcondition": 7, "parent": 4212}}, {"model": "template.logicnode", "pk": 4211, "fields": {"state_transition": 985, "node_type": "S", "subcondition": 2, "parent": 4212}}, {"model": "template.logicnode", "pk": 4212, "fields": {"state_transition": 985, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4213, "fields": {"state_transition": 986, "node_type": "S", "subcondition": 23, "parent": 4216}}, {"model": "template.logicnode", "pk": 4214, "fields": {"state_transition": 986, "node_type": "S", "subcondition": 7, "parent": 4216}}, {"model": "template.logicnode", "pk": 4215, "fields": {"state_transition": 986, "node_type": "S", "subcondition": 12, "parent": 4216}}, {"model": "template.logicnode", "pk": 4216, "fields": {"state_transition": 986, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4217, "fields": {"state_transition": 987, "node_type": "S", "subcondition": 23, "parent": 4219}}, {"model": "template.logicnode", "pk": 4218, "fields": {"state_transition": 987, "node_type": "S", "subcondition": 7, "parent": 4219}}, {"model": "template.logicnode", "pk": 4219, "fields": {"state_transition": 987, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4220, "fields": {"state_transition": 988, "node_type": "S", "subcondition": 23, "parent": 4223}}, {"model": "template.logicnode", "pk": 4221, "fields": {"state_transition": 988, "node_type": "S", "subcondition": 2, "parent": 4223}}, {"model": "template.logicnode", "pk": 4222, "fields": {"state_transition": 988, "node_type": "S", "subcondition": 12, "parent": 4223}}, {"model": "template.logicnode", "pk": 4223, "fields": {"state_transition": 988, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4224, "fields": {"state_transition": 989, "node_type": "S", "subcondition": 23, "parent": 4226}}, {"model": "template.logicnode", "pk": 4225, "fields": {"state_transition": 989, "node_type": "S", "subcondition": 2, "parent": 4226}}, {"model": "template.logicnode", "pk": 4226, "fields": {"state_transition": 989, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4227, "fields": {"state_transition": 990, "node_type": "S", "subcondition": 23, "parent": 4229}}, {"model": "template.logicnode", "pk": 4228, "fields": {"state_transition": 990, "node_type": "S", "subcondition": 12, "parent": 4229}}, {"model": "template.logicnode", "pk": 4229, "fields": {"state_transition": 990, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4230, "fields": {"state_transition": 991, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4231, "fields": {"state_transition": 992, "node_type": "N", "subcondition": null, "parent": 4237}}, {"model": "template.logicnode", "pk": 4232, "fields": {"state_transition": 992, "node_type": "S", "subcondition": 23, "parent": 4231}}, {"model": "template.logicnode", "pk": 4233, "fields": {"state_transition": 992, "node_type": "S", "subcondition": 11, "parent": 4237}}, {"model": "template.logicnode", "pk": 4234, "fields": {"state_transition": 992, "node_type": "S", "subcondition": 7, "parent": 4237}}, {"model": "template.logicnode", "pk": 4235, "fields": {"state_transition": 992, "node_type": "S", "subcondition": 2, "parent": 4237}}, {"model": "template.logicnode", "pk": 4236, "fields": {"state_transition": 992, "node_type": "S", "subcondition": 12, "parent": 4237}}, {"model": "template.logicnode", "pk": 4237, "fields": {"state_transition": 992, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4238, "fields": {"state_transition": 993, "node_type": "N", "subcondition": null, "parent": 4243}}, {"model": "template.logicnode", "pk": 4239, "fields": {"state_transition": 993, "node_type": "S", "subcondition": 23, "parent": 4238}}, {"model": "template.logicnode", "pk": 4240, "fields": {"state_transition": 993, "node_type": "S", "subcondition": 11, "parent": 4243}}, {"model": "template.logicnode", "pk": 4241, "fields": {"state_transition": 993, "node_type": "S", "subcondition": 7, "parent": 4243}}, {"model": "template.logicnode", "pk": 4242, "fields": {"state_transition": 993, "node_type": "S", "subcondition": 2, "parent": 4243}}, {"model": "template.logicnode", "pk": 4243, "fields": {"state_transition": 993, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4244, "fields": {"state_transition": 994, "node_type": "N", "subcondition": null, "parent": 4249}}, {"model": "template.logicnode", "pk": 4245, "fields": {"state_transition": 994, "node_type": "S", "subcondition": 23, "parent": 4244}}, {"model": "template.logicnode", "pk": 4246, "fields": {"state_transition": 994, "node_type": "S", "subcondition": 11, "parent": 4249}}, {"model": "template.logicnode", "pk": 4247, "fields": {"state_transition": 994, "node_type": "S", "subcondition": 7, "parent": 4249}}, {"model": "template.logicnode", "pk": 4248, "fields": {"state_transition": 994, "node_type": "S", "subcondition": 12, "parent": 4249}}, {"model": "template.logicnode", "pk": 4249, "fields": {"state_transition": 994, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4250, "fields": {"state_transition": 995, "node_type": "N", "subcondition": null, "parent": 4254}}, {"model": "template.logicnode", "pk": 4251, "fields": {"state_transition": 995, "node_type": "S", "subcondition": 23, "parent": 4250}}, {"model": "template.logicnode", "pk": 4252, "fields": {"state_transition": 995, "node_type": "S", "subcondition": 11, "parent": 4254}}, {"model": "template.logicnode", "pk": 4253, "fields": {"state_transition": 995, "node_type": "S", "subcondition": 7, "parent": 4254}}, {"model": "template.logicnode", "pk": 4254, "fields": {"state_transition": 995, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4255, "fields": {"state_transition": 996, "node_type": "N", "subcondition": null, "parent": 4260}}, {"model": "template.logicnode", "pk": 4256, "fields": {"state_transition": 996, "node_type": "S", "subcondition": 23, "parent": 4255}}, {"model": "template.logicnode", "pk": 4257, "fields": {"state_transition": 996, "node_type": "S", "subcondition": 11, "parent": 4260}}, {"model": "template.logicnode", "pk": 4258, "fields": {"state_transition": 996, "node_type": "S", "subcondition": 2, "parent": 4260}}, {"model": "template.logicnode", "pk": 4259, "fields": {"state_transition": 996, "node_type": "S", "subcondition": 12, "parent": 4260}}, {"model": "template.logicnode", "pk": 4260, "fields": {"state_transition": 996, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4261, "fields": {"state_transition": 997, "node_type": "N", "subcondition": null, "parent": 4265}}, {"model": "template.logicnode", "pk": 4262, "fields": {"state_transition": 997, "node_type": "S", "subcondition": 23, "parent": 4261}}, {"model": "template.logicnode", "pk": 4263, "fields": {"state_transition": 997, "node_type": "S", "subcondition": 11, "parent": 4265}}, {"model": "template.logicnode", "pk": 4264, "fields": {"state_transition": 997, "node_type": "S", "subcondition": 2, "parent": 4265}}, {"model": "template.logicnode", "pk": 4265, "fields": {"state_transition": 997, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4266, "fields": {"state_transition": 998, "node_type": "N", "subcondition": null, "parent": 4270}}, {"model": "template.logicnode", "pk": 4267, "fields": {"state_transition": 998, "node_type": "S", "subcondition": 23, "parent": 4266}}, {"model": "template.logicnode", "pk": 4268, "fields": {"state_transition": 998, "node_type": "S", "subcondition": 11, "parent": 4270}}, {"model": "template.logicnode", "pk": 4269, "fields": {"state_transition": 998, "node_type": "S", "subcondition": 12, "parent": 4270}}, {"model": "template.logicnode", "pk": 4270, "fields": {"state_transition": 998, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4271, "fields": {"state_transition": 999, "node_type": "N", "subcondition": null, "parent": 4274}}, {"model": "template.logicnode", "pk": 4272, "fields": {"state_transition": 999, "node_type": "S", "subcondition": 23, "parent": 4271}}, {"model": "template.logicnode", "pk": 4273, "fields": {"state_transition": 999, "node_type": "S", "subcondition": 11, "parent": 4274}}, {"model": "template.logicnode", "pk": 4274, "fields": {"state_transition": 999, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4275, "fields": {"state_transition": 1000, "node_type": "N", "subcondition": null, "parent": 4280}}, {"model": "template.logicnode", "pk": 4276, "fields": {"state_transition": 1000, "node_type": "S", "subcondition": 23, "parent": 4275}}, {"model": "template.logicnode", "pk": 4277, "fields": {"state_transition": 1000, "node_type": "S", "subcondition": 7, "parent": 4280}}, {"model": "template.logicnode", "pk": 4278, "fields": {"state_transition": 1000, "node_type": "S", "subcondition": 2, "parent": 4280}}, {"model": "template.logicnode", "pk": 4279, "fields": {"state_transition": 1000, "node_type": "S", "subcondition": 12, "parent": 4280}}, {"model": "template.logicnode", "pk": 4280, "fields": {"state_transition": 1000, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4281, "fields": {"state_transition": 1001, "node_type": "N", "subcondition": null, "parent": 4285}}, {"model": "template.logicnode", "pk": 4282, "fields": {"state_transition": 1001, "node_type": "S", "subcondition": 23, "parent": 4281}}, {"model": "template.logicnode", "pk": 4283, "fields": {"state_transition": 1001, "node_type": "S", "subcondition": 7, "parent": 4285}}, {"model": "template.logicnode", "pk": 4284, "fields": {"state_transition": 1001, "node_type": "S", "subcondition": 2, "parent": 4285}}, {"model": "template.logicnode", "pk": 4285, "fields": {"state_transition": 1001, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4286, "fields": {"state_transition": 1002, "node_type": "N", "subcondition": null, "parent": 4290}}, {"model": "template.logicnode", "pk": 4287, "fields": {"state_transition": 1002, "node_type": "S", "subcondition": 23, "parent": 4286}}, {"model": "template.logicnode", "pk": 4288, "fields": {"state_transition": 1002, "node_type": "S", "subcondition": 7, "parent": 4290}}, {"model": "template.logicnode", "pk": 4289, "fields": {"state_transition": 1002, "node_type": "S", "subcondition": 12, "parent": 4290}}, {"model": "template.logicnode", "pk": 4290, "fields": {"state_transition": 1002, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4291, "fields": {"state_transition": 1003, "node_type": "N", "subcondition": null, "parent": 4294}}, {"model": "template.logicnode", "pk": 4292, "fields": {"state_transition": 1003, "node_type": "S", "subcondition": 23, "parent": 4291}}, {"model": "template.logicnode", "pk": 4293, "fields": {"state_transition": 1003, "node_type": "S", "subcondition": 7, "parent": 4294}}, {"model": "template.logicnode", "pk": 4294, "fields": {"state_transition": 1003, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4295, "fields": {"state_transition": 1004, "node_type": "N", "subcondition": null, "parent": 4299}}, {"model": "template.logicnode", "pk": 4296, "fields": {"state_transition": 1004, "node_type": "S", "subcondition": 23, "parent": 4295}}, {"model": "template.logicnode", "pk": 4297, "fields": {"state_transition": 1004, "node_type": "S", "subcondition": 2, "parent": 4299}}, {"model": "template.logicnode", "pk": 4298, "fields": {"state_transition": 1004, "node_type": "S", "subcondition": 12, "parent": 4299}}, {"model": "template.logicnode", "pk": 4299, "fields": {"state_transition": 1004, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4300, "fields": {"state_transition": 1005, "node_type": "N", "subcondition": null, "parent": 4303}}, {"model": "template.logicnode", "pk": 4301, "fields": {"state_transition": 1005, "node_type": "S", "subcondition": 23, "parent": 4300}}, {"model": "template.logicnode", "pk": 4302, "fields": {"state_transition": 1005, "node_type": "S", "subcondition": 2, "parent": 4303}}, {"model": "template.logicnode", "pk": 4303, "fields": {"state_transition": 1005, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4304, "fields": {"state_transition": 1006, "node_type": "N", "subcondition": null, "parent": 4307}}, {"model": "template.logicnode", "pk": 4305, "fields": {"state_transition": 1006, "node_type": "S", "subcondition": 23, "parent": 4304}}, {"model": "template.logicnode", "pk": 4306, "fields": {"state_transition": 1006, "node_type": "S", "subcondition": 12, "parent": 4307}}, {"model": "template.logicnode", "pk": 4307, "fields": {"state_transition": 1006, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4308, "fields": {"state_transition": 1007, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4309, "fields": {"state_transition": 1007, "node_type": "S", "subcondition": 23, "parent": 4308}}, {"model": "template.logicnode", "pk": 4310, "fields": {"state_transition": 1008, "node_type": "S", "subcondition": 23, "parent": 4314}}, {"model": "template.logicnode", "pk": 4311, "fields": {"state_transition": 1008, "node_type": "S", "subcondition": 7, "parent": 4314}}, {"model": "template.logicnode", "pk": 4312, "fields": {"state_transition": 1008, "node_type": "S", "subcondition": 2, "parent": 4314}}, {"model": "template.logicnode", "pk": 4313, "fields": {"state_transition": 1008, "node_type": "S", "subcondition": 12, "parent": 4314}}, {"model": "template.logicnode", "pk": 4314, "fields": {"state_transition": 1008, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4315, "fields": {"state_transition": 1009, "node_type": "S", "subcondition": 23, "parent": 4318}}, {"model": "template.logicnode", "pk": 4316, "fields": {"state_transition": 1009, "node_type": "S", "subcondition": 7, "parent": 4318}}, {"model": "template.logicnode", "pk": 4317, "fields": {"state_transition": 1009, "node_type": "S", "subcondition": 2, "parent": 4318}}, {"model": "template.logicnode", "pk": 4318, "fields": {"state_transition": 1009, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4319, "fields": {"state_transition": 1010, "node_type": "S", "subcondition": 23, "parent": 4322}}, {"model": "template.logicnode", "pk": 4320, "fields": {"state_transition": 1010, "node_type": "S", "subcondition": 7, "parent": 4322}}, {"model": "template.logicnode", "pk": 4321, "fields": {"state_transition": 1010, "node_type": "S", "subcondition": 12, "parent": 4322}}, {"model": "template.logicnode", "pk": 4322, "fields": {"state_transition": 1010, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4323, "fields": {"state_transition": 1011, "node_type": "S", "subcondition": 23, "parent": 4325}}, {"model": "template.logicnode", "pk": 4324, "fields": {"state_transition": 1011, "node_type": "S", "subcondition": 7, "parent": 4325}}, {"model": "template.logicnode", "pk": 4325, "fields": {"state_transition": 1011, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4326, "fields": {"state_transition": 1012, "node_type": "S", "subcondition": 23, "parent": 4329}}, {"model": "template.logicnode", "pk": 4327, "fields": {"state_transition": 1012, "node_type": "S", "subcondition": 2, "parent": 4329}}, {"model": "template.logicnode", "pk": 4328, "fields": {"state_transition": 1012, "node_type": "S", "subcondition": 12, "parent": 4329}}, {"model": "template.logicnode", "pk": 4329, "fields": {"state_transition": 1012, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4330, "fields": {"state_transition": 1013, "node_type": "S", "subcondition": 23, "parent": 4332}}, {"model": "template.logicnode", "pk": 4331, "fields": {"state_transition": 1013, "node_type": "S", "subcondition": 2, "parent": 4332}}, {"model": "template.logicnode", "pk": 4332, "fields": {"state_transition": 1013, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4333, "fields": {"state_transition": 1014, "node_type": "S", "subcondition": 23, "parent": 4335}}, {"model": "template.logicnode", "pk": 4334, "fields": {"state_transition": 1014, "node_type": "S", "subcondition": 12, "parent": 4335}}, {"model": "template.logicnode", "pk": 4335, "fields": {"state_transition": 1014, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4336, "fields": {"state_transition": 1015, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4337, "fields": {"state_transition": 1016, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4338, "fields": {"state_transition": 1017, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4339, "fields": {"state_transition": 1018, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4340, "fields": {"state_transition": 1019, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4341, "fields": {"state_transition": 1020, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4342, "fields": {"state_transition": 1021, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4343, "fields": {"state_transition": 1022, "node_type": "N", "subcondition": null, "parent": 4348}}, {"model": "template.logicnode", "pk": 4344, "fields": {"state_transition": 1022, "node_type": "S", "subcondition": 23, "parent": 4343}}, {"model": "template.logicnode", "pk": 4345, "fields": {"state_transition": 1022, "node_type": "S", "subcondition": 11, "parent": 4348}}, {"model": "template.logicnode", "pk": 4346, "fields": {"state_transition": 1022, "node_type": "S", "subcondition": 13, "parent": 4348}}, {"model": "template.logicnode", "pk": 4347, "fields": {"state_transition": 1022, "node_type": "S", "subcondition": 8, "parent": 4348}}, {"model": "template.logicnode", "pk": 4348, "fields": {"state_transition": 1022, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4349, "fields": {"state_transition": 1023, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4350, "fields": {"state_transition": 1024, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4351, "fields": {"state_transition": 1025, "node_type": "N", "subcondition": null, "parent": 4355}}, {"model": "template.logicnode", "pk": 4352, "fields": {"state_transition": 1025, "node_type": "S", "subcondition": 23, "parent": 4351}}, {"model": "template.logicnode", "pk": 4353, "fields": {"state_transition": 1025, "node_type": "S", "subcondition": 11, "parent": 4355}}, {"model": "template.logicnode", "pk": 4354, "fields": {"state_transition": 1025, "node_type": "S", "subcondition": 13, "parent": 4355}}, {"model": "template.logicnode", "pk": 4355, "fields": {"state_transition": 1025, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4356, "fields": {"state_transition": 1026, "node_type": "N", "subcondition": null, "parent": 4360}}, {"model": "template.logicnode", "pk": 4357, "fields": {"state_transition": 1026, "node_type": "S", "subcondition": 23, "parent": 4356}}, {"model": "template.logicnode", "pk": 4358, "fields": {"state_transition": 1026, "node_type": "S", "subcondition": 11, "parent": 4360}}, {"model": "template.logicnode", "pk": 4359, "fields": {"state_transition": 1026, "node_type": "S", "subcondition": 8, "parent": 4360}}, {"model": "template.logicnode", "pk": 4360, "fields": {"state_transition": 1026, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4361, "fields": {"state_transition": 1027, "node_type": "N", "subcondition": null, "parent": 4364}}, {"model": "template.logicnode", "pk": 4362, "fields": {"state_transition": 1027, "node_type": "S", "subcondition": 23, "parent": 4361}}, {"model": "template.logicnode", "pk": 4363, "fields": {"state_transition": 1027, "node_type": "S", "subcondition": 11, "parent": 4364}}, {"model": "template.logicnode", "pk": 4364, "fields": {"state_transition": 1027, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4365, "fields": {"state_transition": 1028, "node_type": "N", "subcondition": null, "parent": 4369}}, {"model": "template.logicnode", "pk": 4366, "fields": {"state_transition": 1028, "node_type": "S", "subcondition": 23, "parent": 4365}}, {"model": "template.logicnode", "pk": 4367, "fields": {"state_transition": 1028, "node_type": "S", "subcondition": 13, "parent": 4369}}, {"model": "template.logicnode", "pk": 4368, "fields": {"state_transition": 1028, "node_type": "S", "subcondition": 8, "parent": 4369}}, {"model": "template.logicnode", "pk": 4369, "fields": {"state_transition": 1028, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4370, "fields": {"state_transition": 1029, "node_type": "N", "subcondition": null, "parent": 4373}}, {"model": "template.logicnode", "pk": 4371, "fields": {"state_transition": 1029, "node_type": "S", "subcondition": 23, "parent": 4370}}, {"model": "template.logicnode", "pk": 4372, "fields": {"state_transition": 1029, "node_type": "S", "subcondition": 13, "parent": 4373}}, {"model": "template.logicnode", "pk": 4373, "fields": {"state_transition": 1029, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4374, "fields": {"state_transition": 1030, "node_type": "N", "subcondition": null, "parent": 4377}}, {"model": "template.logicnode", "pk": 4375, "fields": {"state_transition": 1030, "node_type": "S", "subcondition": 23, "parent": 4374}}, {"model": "template.logicnode", "pk": 4376, "fields": {"state_transition": 1030, "node_type": "S", "subcondition": 8, "parent": 4377}}, {"model": "template.logicnode", "pk": 4377, "fields": {"state_transition": 1030, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4378, "fields": {"state_transition": 1031, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4379, "fields": {"state_transition": 1031, "node_type": "S", "subcondition": 23, "parent": 4378}}, {"model": "template.logicnode", "pk": 4380, "fields": {"state_transition": 1032, "node_type": "S", "subcondition": 23, "parent": 4382}}, {"model": "template.logicnode", "pk": 4381, "fields": {"state_transition": 1032, "node_type": "S", "subcondition": 8, "parent": 4382}}, {"model": "template.logicnode", "pk": 4382, "fields": {"state_transition": 1032, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4383, "fields": {"state_transition": 1033, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4384, "fields": {"state_transition": 1034, "node_type": "N", "subcondition": null, "parent": 4389}}, {"model": "template.logicnode", "pk": 4385, "fields": {"state_transition": 1034, "node_type": "S", "subcondition": 23, "parent": 4384}}, {"model": "template.logicnode", "pk": 4386, "fields": {"state_transition": 1034, "node_type": "S", "subcondition": 11, "parent": 4389}}, {"model": "template.logicnode", "pk": 4387, "fields": {"state_transition": 1034, "node_type": "S", "subcondition": 13, "parent": 4389}}, {"model": "template.logicnode", "pk": 4388, "fields": {"state_transition": 1034, "node_type": "S", "subcondition": 8, "parent": 4389}}, {"model": "template.logicnode", "pk": 4389, "fields": {"state_transition": 1034, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4390, "fields": {"state_transition": 1035, "node_type": "N", "subcondition": null, "parent": 4394}}, {"model": "template.logicnode", "pk": 4391, "fields": {"state_transition": 1035, "node_type": "S", "subcondition": 23, "parent": 4390}}, {"model": "template.logicnode", "pk": 4392, "fields": {"state_transition": 1035, "node_type": "S", "subcondition": 11, "parent": 4394}}, {"model": "template.logicnode", "pk": 4393, "fields": {"state_transition": 1035, "node_type": "S", "subcondition": 13, "parent": 4394}}, {"model": "template.logicnode", "pk": 4394, "fields": {"state_transition": 1035, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4395, "fields": {"state_transition": 1036, "node_type": "N", "subcondition": null, "parent": 4399}}, {"model": "template.logicnode", "pk": 4396, "fields": {"state_transition": 1036, "node_type": "S", "subcondition": 23, "parent": 4395}}, {"model": "template.logicnode", "pk": 4397, "fields": {"state_transition": 1036, "node_type": "S", "subcondition": 11, "parent": 4399}}, {"model": "template.logicnode", "pk": 4398, "fields": {"state_transition": 1036, "node_type": "S", "subcondition": 8, "parent": 4399}}, {"model": "template.logicnode", "pk": 4399, "fields": {"state_transition": 1036, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4400, "fields": {"state_transition": 1037, "node_type": "N", "subcondition": null, "parent": 4403}}, {"model": "template.logicnode", "pk": 4401, "fields": {"state_transition": 1037, "node_type": "S", "subcondition": 23, "parent": 4400}}, {"model": "template.logicnode", "pk": 4402, "fields": {"state_transition": 1037, "node_type": "S", "subcondition": 11, "parent": 4403}}, {"model": "template.logicnode", "pk": 4403, "fields": {"state_transition": 1037, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4404, "fields": {"state_transition": 1038, "node_type": "N", "subcondition": null, "parent": 4408}}, {"model": "template.logicnode", "pk": 4405, "fields": {"state_transition": 1038, "node_type": "S", "subcondition": 23, "parent": 4404}}, {"model": "template.logicnode", "pk": 4406, "fields": {"state_transition": 1038, "node_type": "S", "subcondition": 13, "parent": 4408}}, {"model": "template.logicnode", "pk": 4407, "fields": {"state_transition": 1038, "node_type": "S", "subcondition": 8, "parent": 4408}}, {"model": "template.logicnode", "pk": 4408, "fields": {"state_transition": 1038, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4409, "fields": {"state_transition": 1039, "node_type": "N", "subcondition": null, "parent": 4412}}, {"model": "template.logicnode", "pk": 4410, "fields": {"state_transition": 1039, "node_type": "S", "subcondition": 23, "parent": 4409}}, {"model": "template.logicnode", "pk": 4411, "fields": {"state_transition": 1039, "node_type": "S", "subcondition": 13, "parent": 4412}}, {"model": "template.logicnode", "pk": 4412, "fields": {"state_transition": 1039, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4413, "fields": {"state_transition": 1040, "node_type": "N", "subcondition": null, "parent": 4416}}, {"model": "template.logicnode", "pk": 4414, "fields": {"state_transition": 1040, "node_type": "S", "subcondition": 23, "parent": 4413}}, {"model": "template.logicnode", "pk": 4415, "fields": {"state_transition": 1040, "node_type": "S", "subcondition": 8, "parent": 4416}}, {"model": "template.logicnode", "pk": 4416, "fields": {"state_transition": 1040, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4417, "fields": {"state_transition": 1041, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4418, "fields": {"state_transition": 1041, "node_type": "S", "subcondition": 23, "parent": 4417}}, {"model": "template.logicnode", "pk": 4419, "fields": {"state_transition": 1042, "node_type": "S", "subcondition": 23, "parent": 4421}}, {"model": "template.logicnode", "pk": 4420, "fields": {"state_transition": 1042, "node_type": "S", "subcondition": 8, "parent": 4421}}, {"model": "template.logicnode", "pk": 4421, "fields": {"state_transition": 1042, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4422, "fields": {"state_transition": 1043, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4423, "fields": {"state_transition": 1044, "node_type": "N", "subcondition": null, "parent": 4428}}, {"model": "template.logicnode", "pk": 4424, "fields": {"state_transition": 1044, "node_type": "S", "subcondition": 23, "parent": 4423}}, {"model": "template.logicnode", "pk": 4425, "fields": {"state_transition": 1044, "node_type": "S", "subcondition": 11, "parent": 4428}}, {"model": "template.logicnode", "pk": 4426, "fields": {"state_transition": 1044, "node_type": "S", "subcondition": 13, "parent": 4428}}, {"model": "template.logicnode", "pk": 4427, "fields": {"state_transition": 1044, "node_type": "S", "subcondition": 8, "parent": 4428}}, {"model": "template.logicnode", "pk": 4428, "fields": {"state_transition": 1044, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4429, "fields": {"state_transition": 1045, "node_type": "N", "subcondition": null, "parent": 4433}}, {"model": "template.logicnode", "pk": 4430, "fields": {"state_transition": 1045, "node_type": "S", "subcondition": 23, "parent": 4429}}, {"model": "template.logicnode", "pk": 4431, "fields": {"state_transition": 1045, "node_type": "S", "subcondition": 11, "parent": 4433}}, {"model": "template.logicnode", "pk": 4432, "fields": {"state_transition": 1045, "node_type": "S", "subcondition": 13, "parent": 4433}}, {"model": "template.logicnode", "pk": 4433, "fields": {"state_transition": 1045, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4434, "fields": {"state_transition": 1046, "node_type": "N", "subcondition": null, "parent": 4438}}, {"model": "template.logicnode", "pk": 4435, "fields": {"state_transition": 1046, "node_type": "S", "subcondition": 23, "parent": 4434}}, {"model": "template.logicnode", "pk": 4436, "fields": {"state_transition": 1046, "node_type": "S", "subcondition": 11, "parent": 4438}}, {"model": "template.logicnode", "pk": 4437, "fields": {"state_transition": 1046, "node_type": "S", "subcondition": 8, "parent": 4438}}, {"model": "template.logicnode", "pk": 4438, "fields": {"state_transition": 1046, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4439, "fields": {"state_transition": 1047, "node_type": "N", "subcondition": null, "parent": 4442}}, {"model": "template.logicnode", "pk": 4440, "fields": {"state_transition": 1047, "node_type": "S", "subcondition": 23, "parent": 4439}}, {"model": "template.logicnode", "pk": 4441, "fields": {"state_transition": 1047, "node_type": "S", "subcondition": 11, "parent": 4442}}, {"model": "template.logicnode", "pk": 4442, "fields": {"state_transition": 1047, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4443, "fields": {"state_transition": 1048, "node_type": "N", "subcondition": null, "parent": 4447}}, {"model": "template.logicnode", "pk": 4444, "fields": {"state_transition": 1048, "node_type": "S", "subcondition": 23, "parent": 4443}}, {"model": "template.logicnode", "pk": 4445, "fields": {"state_transition": 1048, "node_type": "S", "subcondition": 13, "parent": 4447}}, {"model": "template.logicnode", "pk": 4446, "fields": {"state_transition": 1048, "node_type": "S", "subcondition": 8, "parent": 4447}}, {"model": "template.logicnode", "pk": 4447, "fields": {"state_transition": 1048, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4448, "fields": {"state_transition": 1049, "node_type": "N", "subcondition": null, "parent": 4451}}, {"model": "template.logicnode", "pk": 4449, "fields": {"state_transition": 1049, "node_type": "S", "subcondition": 23, "parent": 4448}}, {"model": "template.logicnode", "pk": 4450, "fields": {"state_transition": 1049, "node_type": "S", "subcondition": 13, "parent": 4451}}, {"model": "template.logicnode", "pk": 4451, "fields": {"state_transition": 1049, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4452, "fields": {"state_transition": 1050, "node_type": "N", "subcondition": null, "parent": 4455}}, {"model": "template.logicnode", "pk": 4453, "fields": {"state_transition": 1050, "node_type": "S", "subcondition": 23, "parent": 4452}}, {"model": "template.logicnode", "pk": 4454, "fields": {"state_transition": 1050, "node_type": "S", "subcondition": 8, "parent": 4455}}, {"model": "template.logicnode", "pk": 4455, "fields": {"state_transition": 1050, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4456, "fields": {"state_transition": 1051, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4457, "fields": {"state_transition": 1051, "node_type": "S", "subcondition": 23, "parent": 4456}}, {"model": "template.logicnode", "pk": 4458, "fields": {"state_transition": 1052, "node_type": "S", "subcondition": 23, "parent": 4460}}, {"model": "template.logicnode", "pk": 4459, "fields": {"state_transition": 1052, "node_type": "S", "subcondition": 8, "parent": 4460}}, {"model": "template.logicnode", "pk": 4460, "fields": {"state_transition": 1052, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4461, "fields": {"state_transition": 1053, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4462, "fields": {"state_transition": 1054, "node_type": "N", "subcondition": null, "parent": 4467}}, {"model": "template.logicnode", "pk": 4463, "fields": {"state_transition": 1054, "node_type": "S", "subcondition": 23, "parent": 4462}}, {"model": "template.logicnode", "pk": 4464, "fields": {"state_transition": 1054, "node_type": "S", "subcondition": 11, "parent": 4467}}, {"model": "template.logicnode", "pk": 4465, "fields": {"state_transition": 1054, "node_type": "S", "subcondition": 13, "parent": 4467}}, {"model": "template.logicnode", "pk": 4466, "fields": {"state_transition": 1054, "node_type": "S", "subcondition": 8, "parent": 4467}}, {"model": "template.logicnode", "pk": 4467, "fields": {"state_transition": 1054, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4468, "fields": {"state_transition": 1055, "node_type": "N", "subcondition": null, "parent": 4472}}, {"model": "template.logicnode", "pk": 4469, "fields": {"state_transition": 1055, "node_type": "S", "subcondition": 23, "parent": 4468}}, {"model": "template.logicnode", "pk": 4470, "fields": {"state_transition": 1055, "node_type": "S", "subcondition": 11, "parent": 4472}}, {"model": "template.logicnode", "pk": 4471, "fields": {"state_transition": 1055, "node_type": "S", "subcondition": 13, "parent": 4472}}, {"model": "template.logicnode", "pk": 4472, "fields": {"state_transition": 1055, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4473, "fields": {"state_transition": 1056, "node_type": "N", "subcondition": null, "parent": 4477}}, {"model": "template.logicnode", "pk": 4474, "fields": {"state_transition": 1056, "node_type": "S", "subcondition": 23, "parent": 4473}}, {"model": "template.logicnode", "pk": 4475, "fields": {"state_transition": 1056, "node_type": "S", "subcondition": 11, "parent": 4477}}, {"model": "template.logicnode", "pk": 4476, "fields": {"state_transition": 1056, "node_type": "S", "subcondition": 8, "parent": 4477}}, {"model": "template.logicnode", "pk": 4477, "fields": {"state_transition": 1056, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4478, "fields": {"state_transition": 1057, "node_type": "N", "subcondition": null, "parent": 4481}}, {"model": "template.logicnode", "pk": 4479, "fields": {"state_transition": 1057, "node_type": "S", "subcondition": 23, "parent": 4478}}, {"model": "template.logicnode", "pk": 4480, "fields": {"state_transition": 1057, "node_type": "S", "subcondition": 11, "parent": 4481}}, {"model": "template.logicnode", "pk": 4481, "fields": {"state_transition": 1057, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4482, "fields": {"state_transition": 1058, "node_type": "N", "subcondition": null, "parent": 4486}}, {"model": "template.logicnode", "pk": 4483, "fields": {"state_transition": 1058, "node_type": "S", "subcondition": 23, "parent": 4482}}, {"model": "template.logicnode", "pk": 4484, "fields": {"state_transition": 1058, "node_type": "S", "subcondition": 13, "parent": 4486}}, {"model": "template.logicnode", "pk": 4485, "fields": {"state_transition": 1058, "node_type": "S", "subcondition": 8, "parent": 4486}}, {"model": "template.logicnode", "pk": 4486, "fields": {"state_transition": 1058, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4487, "fields": {"state_transition": 1059, "node_type": "N", "subcondition": null, "parent": 4490}}, {"model": "template.logicnode", "pk": 4488, "fields": {"state_transition": 1059, "node_type": "S", "subcondition": 23, "parent": 4487}}, {"model": "template.logicnode", "pk": 4489, "fields": {"state_transition": 1059, "node_type": "S", "subcondition": 13, "parent": 4490}}, {"model": "template.logicnode", "pk": 4490, "fields": {"state_transition": 1059, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4491, "fields": {"state_transition": 1060, "node_type": "N", "subcondition": null, "parent": 4494}}, {"model": "template.logicnode", "pk": 4492, "fields": {"state_transition": 1060, "node_type": "S", "subcondition": 23, "parent": 4491}}, {"model": "template.logicnode", "pk": 4493, "fields": {"state_transition": 1060, "node_type": "S", "subcondition": 8, "parent": 4494}}, {"model": "template.logicnode", "pk": 4494, "fields": {"state_transition": 1060, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4495, "fields": {"state_transition": 1061, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4496, "fields": {"state_transition": 1061, "node_type": "S", "subcondition": 23, "parent": 4495}}, {"model": "template.logicnode", "pk": 4497, "fields": {"state_transition": 1062, "node_type": "S", "subcondition": 23, "parent": 4499}}, {"model": "template.logicnode", "pk": 4498, "fields": {"state_transition": 1062, "node_type": "S", "subcondition": 8, "parent": 4499}}, {"model": "template.logicnode", "pk": 4499, "fields": {"state_transition": 1062, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4500, "fields": {"state_transition": 1063, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4501, "fields": {"state_transition": 1064, "node_type": "N", "subcondition": null, "parent": 4506}}, {"model": "template.logicnode", "pk": 4502, "fields": {"state_transition": 1064, "node_type": "S", "subcondition": 23, "parent": 4501}}, {"model": "template.logicnode", "pk": 4503, "fields": {"state_transition": 1064, "node_type": "S", "subcondition": 11, "parent": 4506}}, {"model": "template.logicnode", "pk": 4504, "fields": {"state_transition": 1064, "node_type": "S", "subcondition": 13, "parent": 4506}}, {"model": "template.logicnode", "pk": 4505, "fields": {"state_transition": 1064, "node_type": "S", "subcondition": 8, "parent": 4506}}, {"model": "template.logicnode", "pk": 4506, "fields": {"state_transition": 1064, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4507, "fields": {"state_transition": 1065, "node_type": "N", "subcondition": null, "parent": 4511}}, {"model": "template.logicnode", "pk": 4508, "fields": {"state_transition": 1065, "node_type": "S", "subcondition": 23, "parent": 4507}}, {"model": "template.logicnode", "pk": 4509, "fields": {"state_transition": 1065, "node_type": "S", "subcondition": 11, "parent": 4511}}, {"model": "template.logicnode", "pk": 4510, "fields": {"state_transition": 1065, "node_type": "S", "subcondition": 13, "parent": 4511}}, {"model": "template.logicnode", "pk": 4511, "fields": {"state_transition": 1065, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4512, "fields": {"state_transition": 1066, "node_type": "N", "subcondition": null, "parent": 4516}}, {"model": "template.logicnode", "pk": 4513, "fields": {"state_transition": 1066, "node_type": "S", "subcondition": 23, "parent": 4512}}, {"model": "template.logicnode", "pk": 4514, "fields": {"state_transition": 1066, "node_type": "S", "subcondition": 11, "parent": 4516}}, {"model": "template.logicnode", "pk": 4515, "fields": {"state_transition": 1066, "node_type": "S", "subcondition": 8, "parent": 4516}}, {"model": "template.logicnode", "pk": 4516, "fields": {"state_transition": 1066, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4517, "fields": {"state_transition": 1067, "node_type": "N", "subcondition": null, "parent": 4520}}, {"model": "template.logicnode", "pk": 4518, "fields": {"state_transition": 1067, "node_type": "S", "subcondition": 23, "parent": 4517}}, {"model": "template.logicnode", "pk": 4519, "fields": {"state_transition": 1067, "node_type": "S", "subcondition": 11, "parent": 4520}}, {"model": "template.logicnode", "pk": 4520, "fields": {"state_transition": 1067, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4521, "fields": {"state_transition": 1068, "node_type": "N", "subcondition": null, "parent": 4525}}, {"model": "template.logicnode", "pk": 4522, "fields": {"state_transition": 1068, "node_type": "S", "subcondition": 23, "parent": 4521}}, {"model": "template.logicnode", "pk": 4523, "fields": {"state_transition": 1068, "node_type": "S", "subcondition": 13, "parent": 4525}}, {"model": "template.logicnode", "pk": 4524, "fields": {"state_transition": 1068, "node_type": "S", "subcondition": 8, "parent": 4525}}, {"model": "template.logicnode", "pk": 4525, "fields": {"state_transition": 1068, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4526, "fields": {"state_transition": 1069, "node_type": "N", "subcondition": null, "parent": 4529}}, {"model": "template.logicnode", "pk": 4527, "fields": {"state_transition": 1069, "node_type": "S", "subcondition": 23, "parent": 4526}}, {"model": "template.logicnode", "pk": 4528, "fields": {"state_transition": 1069, "node_type": "S", "subcondition": 13, "parent": 4529}}, {"model": "template.logicnode", "pk": 4529, "fields": {"state_transition": 1069, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4530, "fields": {"state_transition": 1070, "node_type": "N", "subcondition": null, "parent": 4533}}, {"model": "template.logicnode", "pk": 4531, "fields": {"state_transition": 1070, "node_type": "S", "subcondition": 23, "parent": 4530}}, {"model": "template.logicnode", "pk": 4532, "fields": {"state_transition": 1070, "node_type": "S", "subcondition": 8, "parent": 4533}}, {"model": "template.logicnode", "pk": 4533, "fields": {"state_transition": 1070, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4534, "fields": {"state_transition": 1071, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4535, "fields": {"state_transition": 1071, "node_type": "S", "subcondition": 23, "parent": 4534}}, {"model": "template.logicnode", "pk": 4536, "fields": {"state_transition": 1072, "node_type": "S", "subcondition": 23, "parent": 4538}}, {"model": "template.logicnode", "pk": 4537, "fields": {"state_transition": 1072, "node_type": "S", "subcondition": 8, "parent": 4538}}, {"model": "template.logicnode", "pk": 4538, "fields": {"state_transition": 1072, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4539, "fields": {"state_transition": 1073, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4540, "fields": {"state_transition": 1074, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4541, "fields": {"state_transition": 1075, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4542, "fields": {"state_transition": 1076, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4543, "fields": {"state_transition": 1077, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4544, "fields": {"state_transition": 1078, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4545, "fields": {"state_transition": 1079, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4546, "fields": {"state_transition": 1080, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4547, "fields": {"state_transition": 1081, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4548, "fields": {"state_transition": 1082, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4549, "fields": {"state_transition": 1082, "node_type": "S", "subcondition": 24, "parent": 4548}}, {"model": "template.logicnode", "pk": 4550, "fields": {"state_transition": 1083, "node_type": "N", "subcondition": null, "parent": 4554}}, {"model": "template.logicnode", "pk": 4551, "fields": {"state_transition": 1083, "node_type": "S", "subcondition": 23, "parent": 4550}}, {"model": "template.logicnode", "pk": 4552, "fields": {"state_transition": 1083, "node_type": "S", "subcondition": 3, "parent": 4554}}, {"model": "template.logicnode", "pk": 4553, "fields": {"state_transition": 1083, "node_type": "S", "subcondition": 19, "parent": 4554}}, {"model": "template.logicnode", "pk": 4554, "fields": {"state_transition": 1083, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4555, "fields": {"state_transition": 1084, "node_type": "N", "subcondition": null, "parent": 4559}}, {"model": "template.logicnode", "pk": 4556, "fields": {"state_transition": 1084, "node_type": "S", "subcondition": 23, "parent": 4555}}, {"model": "template.logicnode", "pk": 4557, "fields": {"state_transition": 1084, "node_type": "S", "subcondition": 3, "parent": 4559}}, {"model": "template.logicnode", "pk": 4558, "fields": {"state_transition": 1084, "node_type": "S", "subcondition": 20, "parent": 4559}}, {"model": "template.logicnode", "pk": 4559, "fields": {"state_transition": 1084, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4560, "fields": {"state_transition": 1085, "node_type": "N", "subcondition": null, "parent": 4564}}, {"model": "template.logicnode", "pk": 4561, "fields": {"state_transition": 1085, "node_type": "S", "subcondition": 23, "parent": 4560}}, {"model": "template.logicnode", "pk": 4562, "fields": {"state_transition": 1085, "node_type": "S", "subcondition": 3, "parent": 4564}}, {"model": "template.logicnode", "pk": 4563, "fields": {"state_transition": 1085, "node_type": "S", "subcondition": 21, "parent": 4564}}, {"model": "template.logicnode", "pk": 4564, "fields": {"state_transition": 1085, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4565, "fields": {"state_transition": 1086, "node_type": "N", "subcondition": null, "parent": 4569}}, {"model": "template.logicnode", "pk": 4566, "fields": {"state_transition": 1086, "node_type": "S", "subcondition": 23, "parent": 4565}}, {"model": "template.logicnode", "pk": 4567, "fields": {"state_transition": 1086, "node_type": "S", "subcondition": 3, "parent": 4569}}, {"model": "template.logicnode", "pk": 4568, "fields": {"state_transition": 1086, "node_type": "S", "subcondition": 22, "parent": 4569}}, {"model": "template.logicnode", "pk": 4569, "fields": {"state_transition": 1086, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4570, "fields": {"state_transition": 1087, "node_type": "N", "subcondition": null, "parent": 4574}}, {"model": "template.logicnode", "pk": 4571, "fields": {"state_transition": 1087, "node_type": "S", "subcondition": 23, "parent": 4570}}, {"model": "template.logicnode", "pk": 4572, "fields": {"state_transition": 1087, "node_type": "S", "subcondition": 4, "parent": 4574}}, {"model": "template.logicnode", "pk": 4573, "fields": {"state_transition": 1087, "node_type": "S", "subcondition": 19, "parent": 4574}}, {"model": "template.logicnode", "pk": 4574, "fields": {"state_transition": 1087, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4575, "fields": {"state_transition": 1088, "node_type": "N", "subcondition": null, "parent": 4579}}, {"model": "template.logicnode", "pk": 4576, "fields": {"state_transition": 1088, "node_type": "S", "subcondition": 23, "parent": 4575}}, {"model": "template.logicnode", "pk": 4577, "fields": {"state_transition": 1088, "node_type": "S", "subcondition": 4, "parent": 4579}}, {"model": "template.logicnode", "pk": 4578, "fields": {"state_transition": 1088, "node_type": "S", "subcondition": 20, "parent": 4579}}, {"model": "template.logicnode", "pk": 4579, "fields": {"state_transition": 1088, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4580, "fields": {"state_transition": 1089, "node_type": "N", "subcondition": null, "parent": 4584}}, {"model": "template.logicnode", "pk": 4581, "fields": {"state_transition": 1089, "node_type": "S", "subcondition": 23, "parent": 4580}}, {"model": "template.logicnode", "pk": 4582, "fields": {"state_transition": 1089, "node_type": "S", "subcondition": 4, "parent": 4584}}, {"model": "template.logicnode", "pk": 4583, "fields": {"state_transition": 1089, "node_type": "S", "subcondition": 21, "parent": 4584}}, {"model": "template.logicnode", "pk": 4584, "fields": {"state_transition": 1089, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4585, "fields": {"state_transition": 1090, "node_type": "N", "subcondition": null, "parent": 4589}}, {"model": "template.logicnode", "pk": 4586, "fields": {"state_transition": 1090, "node_type": "S", "subcondition": 23, "parent": 4585}}, {"model": "template.logicnode", "pk": 4587, "fields": {"state_transition": 1090, "node_type": "S", "subcondition": 4, "parent": 4589}}, {"model": "template.logicnode", "pk": 4588, "fields": {"state_transition": 1090, "node_type": "S", "subcondition": 22, "parent": 4589}}, {"model": "template.logicnode", "pk": 4589, "fields": {"state_transition": 1090, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4590, "fields": {"state_transition": 1091, "node_type": "N", "subcondition": null, "parent": 4594}}, {"model": "template.logicnode", "pk": 4591, "fields": {"state_transition": 1091, "node_type": "S", "subcondition": 23, "parent": 4590}}, {"model": "template.logicnode", "pk": 4592, "fields": {"state_transition": 1091, "node_type": "S", "subcondition": 5, "parent": 4594}}, {"model": "template.logicnode", "pk": 4593, "fields": {"state_transition": 1091, "node_type": "S", "subcondition": 19, "parent": 4594}}, {"model": "template.logicnode", "pk": 4594, "fields": {"state_transition": 1091, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4595, "fields": {"state_transition": 1092, "node_type": "N", "subcondition": null, "parent": 4599}}, {"model": "template.logicnode", "pk": 4596, "fields": {"state_transition": 1092, "node_type": "S", "subcondition": 23, "parent": 4595}}, {"model": "template.logicnode", "pk": 4597, "fields": {"state_transition": 1092, "node_type": "S", "subcondition": 5, "parent": 4599}}, {"model": "template.logicnode", "pk": 4598, "fields": {"state_transition": 1092, "node_type": "S", "subcondition": 20, "parent": 4599}}, {"model": "template.logicnode", "pk": 4599, "fields": {"state_transition": 1092, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4600, "fields": {"state_transition": 1093, "node_type": "N", "subcondition": null, "parent": 4604}}, {"model": "template.logicnode", "pk": 4601, "fields": {"state_transition": 1093, "node_type": "S", "subcondition": 23, "parent": 4600}}, {"model": "template.logicnode", "pk": 4602, "fields": {"state_transition": 1093, "node_type": "S", "subcondition": 5, "parent": 4604}}, {"model": "template.logicnode", "pk": 4603, "fields": {"state_transition": 1093, "node_type": "S", "subcondition": 21, "parent": 4604}}, {"model": "template.logicnode", "pk": 4604, "fields": {"state_transition": 1093, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4605, "fields": {"state_transition": 1094, "node_type": "N", "subcondition": null, "parent": 4609}}, {"model": "template.logicnode", "pk": 4606, "fields": {"state_transition": 1094, "node_type": "S", "subcondition": 23, "parent": 4605}}, {"model": "template.logicnode", "pk": 4607, "fields": {"state_transition": 1094, "node_type": "S", "subcondition": 5, "parent": 4609}}, {"model": "template.logicnode", "pk": 4608, "fields": {"state_transition": 1094, "node_type": "S", "subcondition": 22, "parent": 4609}}, {"model": "template.logicnode", "pk": 4609, "fields": {"state_transition": 1094, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4610, "fields": {"state_transition": 1095, "node_type": "N", "subcondition": null, "parent": 4614}}, {"model": "template.logicnode", "pk": 4611, "fields": {"state_transition": 1095, "node_type": "S", "subcondition": 23, "parent": 4610}}, {"model": "template.logicnode", "pk": 4612, "fields": {"state_transition": 1095, "node_type": "S", "subcondition": 6, "parent": 4614}}, {"model": "template.logicnode", "pk": 4613, "fields": {"state_transition": 1095, "node_type": "S", "subcondition": 19, "parent": 4614}}, {"model": "template.logicnode", "pk": 4614, "fields": {"state_transition": 1095, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4615, "fields": {"state_transition": 1096, "node_type": "N", "subcondition": null, "parent": 4619}}, {"model": "template.logicnode", "pk": 4616, "fields": {"state_transition": 1096, "node_type": "S", "subcondition": 23, "parent": 4615}}, {"model": "template.logicnode", "pk": 4617, "fields": {"state_transition": 1096, "node_type": "S", "subcondition": 6, "parent": 4619}}, {"model": "template.logicnode", "pk": 4618, "fields": {"state_transition": 1096, "node_type": "S", "subcondition": 20, "parent": 4619}}, {"model": "template.logicnode", "pk": 4619, "fields": {"state_transition": 1096, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4620, "fields": {"state_transition": 1097, "node_type": "N", "subcondition": null, "parent": 4624}}, {"model": "template.logicnode", "pk": 4621, "fields": {"state_transition": 1097, "node_type": "S", "subcondition": 23, "parent": 4620}}, {"model": "template.logicnode", "pk": 4622, "fields": {"state_transition": 1097, "node_type": "S", "subcondition": 6, "parent": 4624}}, {"model": "template.logicnode", "pk": 4623, "fields": {"state_transition": 1097, "node_type": "S", "subcondition": 21, "parent": 4624}}, {"model": "template.logicnode", "pk": 4624, "fields": {"state_transition": 1097, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4625, "fields": {"state_transition": 1098, "node_type": "N", "subcondition": null, "parent": 4629}}, {"model": "template.logicnode", "pk": 4626, "fields": {"state_transition": 1098, "node_type": "S", "subcondition": 23, "parent": 4625}}, {"model": "template.logicnode", "pk": 4627, "fields": {"state_transition": 1098, "node_type": "S", "subcondition": 6, "parent": 4629}}, {"model": "template.logicnode", "pk": 4628, "fields": {"state_transition": 1098, "node_type": "S", "subcondition": 22, "parent": 4629}}, {"model": "template.logicnode", "pk": 4629, "fields": {"state_transition": 1098, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4630, "fields": {"state_transition": 1099, "node_type": "S", "subcondition": 23, "parent": 4633}}, {"model": "template.logicnode", "pk": 4631, "fields": {"state_transition": 1099, "node_type": "S", "subcondition": 3, "parent": 4633}}, {"model": "template.logicnode", "pk": 4632, "fields": {"state_transition": 1099, "node_type": "S", "subcondition": 19, "parent": 4633}}, {"model": "template.logicnode", "pk": 4633, "fields": {"state_transition": 1099, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4634, "fields": {"state_transition": 1100, "node_type": "S", "subcondition": 23, "parent": 4637}}, {"model": "template.logicnode", "pk": 4635, "fields": {"state_transition": 1100, "node_type": "S", "subcondition": 3, "parent": 4637}}, {"model": "template.logicnode", "pk": 4636, "fields": {"state_transition": 1100, "node_type": "S", "subcondition": 20, "parent": 4637}}, {"model": "template.logicnode", "pk": 4637, "fields": {"state_transition": 1100, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4638, "fields": {"state_transition": 1101, "node_type": "S", "subcondition": 23, "parent": 4641}}, {"model": "template.logicnode", "pk": 4639, "fields": {"state_transition": 1101, "node_type": "S", "subcondition": 3, "parent": 4641}}, {"model": "template.logicnode", "pk": 4640, "fields": {"state_transition": 1101, "node_type": "S", "subcondition": 21, "parent": 4641}}, {"model": "template.logicnode", "pk": 4641, "fields": {"state_transition": 1101, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4642, "fields": {"state_transition": 1102, "node_type": "S", "subcondition": 23, "parent": 4645}}, {"model": "template.logicnode", "pk": 4643, "fields": {"state_transition": 1102, "node_type": "S", "subcondition": 3, "parent": 4645}}, {"model": "template.logicnode", "pk": 4644, "fields": {"state_transition": 1102, "node_type": "S", "subcondition": 22, "parent": 4645}}, {"model": "template.logicnode", "pk": 4645, "fields": {"state_transition": 1102, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4646, "fields": {"state_transition": 1103, "node_type": "S", "subcondition": 23, "parent": 4649}}, {"model": "template.logicnode", "pk": 4647, "fields": {"state_transition": 1103, "node_type": "S", "subcondition": 4, "parent": 4649}}, {"model": "template.logicnode", "pk": 4648, "fields": {"state_transition": 1103, "node_type": "S", "subcondition": 19, "parent": 4649}}, {"model": "template.logicnode", "pk": 4649, "fields": {"state_transition": 1103, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4650, "fields": {"state_transition": 1104, "node_type": "S", "subcondition": 23, "parent": 4653}}, {"model": "template.logicnode", "pk": 4651, "fields": {"state_transition": 1104, "node_type": "S", "subcondition": 4, "parent": 4653}}, {"model": "template.logicnode", "pk": 4652, "fields": {"state_transition": 1104, "node_type": "S", "subcondition": 20, "parent": 4653}}, {"model": "template.logicnode", "pk": 4653, "fields": {"state_transition": 1104, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4654, "fields": {"state_transition": 1105, "node_type": "S", "subcondition": 23, "parent": 4657}}, {"model": "template.logicnode", "pk": 4655, "fields": {"state_transition": 1105, "node_type": "S", "subcondition": 4, "parent": 4657}}, {"model": "template.logicnode", "pk": 4656, "fields": {"state_transition": 1105, "node_type": "S", "subcondition": 21, "parent": 4657}}, {"model": "template.logicnode", "pk": 4657, "fields": {"state_transition": 1105, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4658, "fields": {"state_transition": 1106, "node_type": "S", "subcondition": 23, "parent": 4661}}, {"model": "template.logicnode", "pk": 4659, "fields": {"state_transition": 1106, "node_type": "S", "subcondition": 4, "parent": 4661}}, {"model": "template.logicnode", "pk": 4660, "fields": {"state_transition": 1106, "node_type": "S", "subcondition": 22, "parent": 4661}}, {"model": "template.logicnode", "pk": 4661, "fields": {"state_transition": 1106, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4662, "fields": {"state_transition": 1107, "node_type": "S", "subcondition": 23, "parent": 4665}}, {"model": "template.logicnode", "pk": 4663, "fields": {"state_transition": 1107, "node_type": "S", "subcondition": 5, "parent": 4665}}, {"model": "template.logicnode", "pk": 4664, "fields": {"state_transition": 1107, "node_type": "S", "subcondition": 19, "parent": 4665}}, {"model": "template.logicnode", "pk": 4665, "fields": {"state_transition": 1107, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4666, "fields": {"state_transition": 1108, "node_type": "S", "subcondition": 23, "parent": 4669}}, {"model": "template.logicnode", "pk": 4667, "fields": {"state_transition": 1108, "node_type": "S", "subcondition": 5, "parent": 4669}}, {"model": "template.logicnode", "pk": 4668, "fields": {"state_transition": 1108, "node_type": "S", "subcondition": 20, "parent": 4669}}, {"model": "template.logicnode", "pk": 4669, "fields": {"state_transition": 1108, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4670, "fields": {"state_transition": 1109, "node_type": "S", "subcondition": 23, "parent": 4673}}, {"model": "template.logicnode", "pk": 4671, "fields": {"state_transition": 1109, "node_type": "S", "subcondition": 5, "parent": 4673}}, {"model": "template.logicnode", "pk": 4672, "fields": {"state_transition": 1109, "node_type": "S", "subcondition": 21, "parent": 4673}}, {"model": "template.logicnode", "pk": 4673, "fields": {"state_transition": 1109, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4674, "fields": {"state_transition": 1110, "node_type": "S", "subcondition": 23, "parent": 4677}}, {"model": "template.logicnode", "pk": 4675, "fields": {"state_transition": 1110, "node_type": "S", "subcondition": 5, "parent": 4677}}, {"model": "template.logicnode", "pk": 4676, "fields": {"state_transition": 1110, "node_type": "S", "subcondition": 22, "parent": 4677}}, {"model": "template.logicnode", "pk": 4677, "fields": {"state_transition": 1110, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4678, "fields": {"state_transition": 1111, "node_type": "S", "subcondition": 23, "parent": 4681}}, {"model": "template.logicnode", "pk": 4679, "fields": {"state_transition": 1111, "node_type": "S", "subcondition": 6, "parent": 4681}}, {"model": "template.logicnode", "pk": 4680, "fields": {"state_transition": 1111, "node_type": "S", "subcondition": 19, "parent": 4681}}, {"model": "template.logicnode", "pk": 4681, "fields": {"state_transition": 1111, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4682, "fields": {"state_transition": 1112, "node_type": "S", "subcondition": 23, "parent": 4685}}, {"model": "template.logicnode", "pk": 4683, "fields": {"state_transition": 1112, "node_type": "S", "subcondition": 6, "parent": 4685}}, {"model": "template.logicnode", "pk": 4684, "fields": {"state_transition": 1112, "node_type": "S", "subcondition": 20, "parent": 4685}}, {"model": "template.logicnode", "pk": 4685, "fields": {"state_transition": 1112, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4686, "fields": {"state_transition": 1113, "node_type": "S", "subcondition": 23, "parent": 4689}}, {"model": "template.logicnode", "pk": 4687, "fields": {"state_transition": 1113, "node_type": "S", "subcondition": 6, "parent": 4689}}, {"model": "template.logicnode", "pk": 4688, "fields": {"state_transition": 1113, "node_type": "S", "subcondition": 21, "parent": 4689}}, {"model": "template.logicnode", "pk": 4689, "fields": {"state_transition": 1113, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4690, "fields": {"state_transition": 1114, "node_type": "S", "subcondition": 23, "parent": 4693}}, {"model": "template.logicnode", "pk": 4691, "fields": {"state_transition": 1114, "node_type": "S", "subcondition": 6, "parent": 4693}}, {"model": "template.logicnode", "pk": 4692, "fields": {"state_transition": 1114, "node_type": "S", "subcondition": 22, "parent": 4693}}, {"model": "template.logicnode", "pk": 4693, "fields": {"state_transition": 1114, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4694, "fields": {"state_transition": 1115, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4695, "fields": {"state_transition": 1115, "node_type": "S", "subcondition": 24, "parent": 4694}}, {"model": "template.logicnode", "pk": 4696, "fields": {"state_transition": 1116, "node_type": "N", "subcondition": null, "parent": 4700}}, {"model": "template.logicnode", "pk": 4697, "fields": {"state_transition": 1116, "node_type": "S", "subcondition": 23, "parent": 4696}}, {"model": "template.logicnode", "pk": 4698, "fields": {"state_transition": 1116, "node_type": "S", "subcondition": 3, "parent": 4700}}, {"model": "template.logicnode", "pk": 4699, "fields": {"state_transition": 1116, "node_type": "S", "subcondition": 19, "parent": 4700}}, {"model": "template.logicnode", "pk": 4700, "fields": {"state_transition": 1116, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4701, "fields": {"state_transition": 1117, "node_type": "N", "subcondition": null, "parent": 4705}}, {"model": "template.logicnode", "pk": 4702, "fields": {"state_transition": 1117, "node_type": "S", "subcondition": 23, "parent": 4701}}, {"model": "template.logicnode", "pk": 4703, "fields": {"state_transition": 1117, "node_type": "S", "subcondition": 3, "parent": 4705}}, {"model": "template.logicnode", "pk": 4704, "fields": {"state_transition": 1117, "node_type": "S", "subcondition": 20, "parent": 4705}}, {"model": "template.logicnode", "pk": 4705, "fields": {"state_transition": 1117, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4706, "fields": {"state_transition": 1118, "node_type": "N", "subcondition": null, "parent": 4710}}, {"model": "template.logicnode", "pk": 4707, "fields": {"state_transition": 1118, "node_type": "S", "subcondition": 23, "parent": 4706}}, {"model": "template.logicnode", "pk": 4708, "fields": {"state_transition": 1118, "node_type": "S", "subcondition": 3, "parent": 4710}}, {"model": "template.logicnode", "pk": 4709, "fields": {"state_transition": 1118, "node_type": "S", "subcondition": 21, "parent": 4710}}, {"model": "template.logicnode", "pk": 4710, "fields": {"state_transition": 1118, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4711, "fields": {"state_transition": 1119, "node_type": "N", "subcondition": null, "parent": 4715}}, {"model": "template.logicnode", "pk": 4712, "fields": {"state_transition": 1119, "node_type": "S", "subcondition": 23, "parent": 4711}}, {"model": "template.logicnode", "pk": 4713, "fields": {"state_transition": 1119, "node_type": "S", "subcondition": 3, "parent": 4715}}, {"model": "template.logicnode", "pk": 4714, "fields": {"state_transition": 1119, "node_type": "S", "subcondition": 22, "parent": 4715}}, {"model": "template.logicnode", "pk": 4715, "fields": {"state_transition": 1119, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4716, "fields": {"state_transition": 1120, "node_type": "N", "subcondition": null, "parent": 4720}}, {"model": "template.logicnode", "pk": 4717, "fields": {"state_transition": 1120, "node_type": "S", "subcondition": 23, "parent": 4716}}, {"model": "template.logicnode", "pk": 4718, "fields": {"state_transition": 1120, "node_type": "S", "subcondition": 4, "parent": 4720}}, {"model": "template.logicnode", "pk": 4719, "fields": {"state_transition": 1120, "node_type": "S", "subcondition": 19, "parent": 4720}}, {"model": "template.logicnode", "pk": 4720, "fields": {"state_transition": 1120, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4721, "fields": {"state_transition": 1121, "node_type": "N", "subcondition": null, "parent": 4725}}, {"model": "template.logicnode", "pk": 4722, "fields": {"state_transition": 1121, "node_type": "S", "subcondition": 23, "parent": 4721}}, {"model": "template.logicnode", "pk": 4723, "fields": {"state_transition": 1121, "node_type": "S", "subcondition": 4, "parent": 4725}}, {"model": "template.logicnode", "pk": 4724, "fields": {"state_transition": 1121, "node_type": "S", "subcondition": 20, "parent": 4725}}, {"model": "template.logicnode", "pk": 4725, "fields": {"state_transition": 1121, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4726, "fields": {"state_transition": 1122, "node_type": "N", "subcondition": null, "parent": 4730}}, {"model": "template.logicnode", "pk": 4727, "fields": {"state_transition": 1122, "node_type": "S", "subcondition": 23, "parent": 4726}}, {"model": "template.logicnode", "pk": 4728, "fields": {"state_transition": 1122, "node_type": "S", "subcondition": 4, "parent": 4730}}, {"model": "template.logicnode", "pk": 4729, "fields": {"state_transition": 1122, "node_type": "S", "subcondition": 21, "parent": 4730}}, {"model": "template.logicnode", "pk": 4730, "fields": {"state_transition": 1122, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4731, "fields": {"state_transition": 1123, "node_type": "N", "subcondition": null, "parent": 4735}}, {"model": "template.logicnode", "pk": 4732, "fields": {"state_transition": 1123, "node_type": "S", "subcondition": 23, "parent": 4731}}, {"model": "template.logicnode", "pk": 4733, "fields": {"state_transition": 1123, "node_type": "S", "subcondition": 4, "parent": 4735}}, {"model": "template.logicnode", "pk": 4734, "fields": {"state_transition": 1123, "node_type": "S", "subcondition": 22, "parent": 4735}}, {"model": "template.logicnode", "pk": 4735, "fields": {"state_transition": 1123, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4736, "fields": {"state_transition": 1124, "node_type": "N", "subcondition": null, "parent": 4740}}, {"model": "template.logicnode", "pk": 4737, "fields": {"state_transition": 1124, "node_type": "S", "subcondition": 23, "parent": 4736}}, {"model": "template.logicnode", "pk": 4738, "fields": {"state_transition": 1124, "node_type": "S", "subcondition": 5, "parent": 4740}}, {"model": "template.logicnode", "pk": 4739, "fields": {"state_transition": 1124, "node_type": "S", "subcondition": 19, "parent": 4740}}, {"model": "template.logicnode", "pk": 4740, "fields": {"state_transition": 1124, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4741, "fields": {"state_transition": 1125, "node_type": "N", "subcondition": null, "parent": 4745}}, {"model": "template.logicnode", "pk": 4742, "fields": {"state_transition": 1125, "node_type": "S", "subcondition": 23, "parent": 4741}}, {"model": "template.logicnode", "pk": 4743, "fields": {"state_transition": 1125, "node_type": "S", "subcondition": 5, "parent": 4745}}, {"model": "template.logicnode", "pk": 4744, "fields": {"state_transition": 1125, "node_type": "S", "subcondition": 20, "parent": 4745}}, {"model": "template.logicnode", "pk": 4745, "fields": {"state_transition": 1125, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4746, "fields": {"state_transition": 1126, "node_type": "N", "subcondition": null, "parent": 4750}}, {"model": "template.logicnode", "pk": 4747, "fields": {"state_transition": 1126, "node_type": "S", "subcondition": 23, "parent": 4746}}, {"model": "template.logicnode", "pk": 4748, "fields": {"state_transition": 1126, "node_type": "S", "subcondition": 5, "parent": 4750}}, {"model": "template.logicnode", "pk": 4749, "fields": {"state_transition": 1126, "node_type": "S", "subcondition": 21, "parent": 4750}}, {"model": "template.logicnode", "pk": 4750, "fields": {"state_transition": 1126, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4751, "fields": {"state_transition": 1127, "node_type": "N", "subcondition": null, "parent": 4755}}, {"model": "template.logicnode", "pk": 4752, "fields": {"state_transition": 1127, "node_type": "S", "subcondition": 23, "parent": 4751}}, {"model": "template.logicnode", "pk": 4753, "fields": {"state_transition": 1127, "node_type": "S", "subcondition": 5, "parent": 4755}}, {"model": "template.logicnode", "pk": 4754, "fields": {"state_transition": 1127, "node_type": "S", "subcondition": 22, "parent": 4755}}, {"model": "template.logicnode", "pk": 4755, "fields": {"state_transition": 1127, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4756, "fields": {"state_transition": 1128, "node_type": "N", "subcondition": null, "parent": 4760}}, {"model": "template.logicnode", "pk": 4757, "fields": {"state_transition": 1128, "node_type": "S", "subcondition": 23, "parent": 4756}}, {"model": "template.logicnode", "pk": 4758, "fields": {"state_transition": 1128, "node_type": "S", "subcondition": 6, "parent": 4760}}, {"model": "template.logicnode", "pk": 4759, "fields": {"state_transition": 1128, "node_type": "S", "subcondition": 19, "parent": 4760}}, {"model": "template.logicnode", "pk": 4760, "fields": {"state_transition": 1128, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4761, "fields": {"state_transition": 1129, "node_type": "N", "subcondition": null, "parent": 4765}}, {"model": "template.logicnode", "pk": 4762, "fields": {"state_transition": 1129, "node_type": "S", "subcondition": 23, "parent": 4761}}, {"model": "template.logicnode", "pk": 4763, "fields": {"state_transition": 1129, "node_type": "S", "subcondition": 6, "parent": 4765}}, {"model": "template.logicnode", "pk": 4764, "fields": {"state_transition": 1129, "node_type": "S", "subcondition": 20, "parent": 4765}}, {"model": "template.logicnode", "pk": 4765, "fields": {"state_transition": 1129, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4766, "fields": {"state_transition": 1130, "node_type": "N", "subcondition": null, "parent": 4770}}, {"model": "template.logicnode", "pk": 4767, "fields": {"state_transition": 1130, "node_type": "S", "subcondition": 23, "parent": 4766}}, {"model": "template.logicnode", "pk": 4768, "fields": {"state_transition": 1130, "node_type": "S", "subcondition": 6, "parent": 4770}}, {"model": "template.logicnode", "pk": 4769, "fields": {"state_transition": 1130, "node_type": "S", "subcondition": 21, "parent": 4770}}, {"model": "template.logicnode", "pk": 4770, "fields": {"state_transition": 1130, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4771, "fields": {"state_transition": 1131, "node_type": "N", "subcondition": null, "parent": 4775}}, {"model": "template.logicnode", "pk": 4772, "fields": {"state_transition": 1131, "node_type": "S", "subcondition": 23, "parent": 4771}}, {"model": "template.logicnode", "pk": 4773, "fields": {"state_transition": 1131, "node_type": "S", "subcondition": 6, "parent": 4775}}, {"model": "template.logicnode", "pk": 4774, "fields": {"state_transition": 1131, "node_type": "S", "subcondition": 22, "parent": 4775}}, {"model": "template.logicnode", "pk": 4775, "fields": {"state_transition": 1131, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4776, "fields": {"state_transition": 1132, "node_type": "S", "subcondition": 23, "parent": 4779}}, {"model": "template.logicnode", "pk": 4777, "fields": {"state_transition": 1132, "node_type": "S", "subcondition": 3, "parent": 4779}}, {"model": "template.logicnode", "pk": 4778, "fields": {"state_transition": 1132, "node_type": "S", "subcondition": 19, "parent": 4779}}, {"model": "template.logicnode", "pk": 4779, "fields": {"state_transition": 1132, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4780, "fields": {"state_transition": 1133, "node_type": "S", "subcondition": 23, "parent": 4783}}, {"model": "template.logicnode", "pk": 4781, "fields": {"state_transition": 1133, "node_type": "S", "subcondition": 3, "parent": 4783}}, {"model": "template.logicnode", "pk": 4782, "fields": {"state_transition": 1133, "node_type": "S", "subcondition": 20, "parent": 4783}}, {"model": "template.logicnode", "pk": 4783, "fields": {"state_transition": 1133, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4784, "fields": {"state_transition": 1134, "node_type": "S", "subcondition": 23, "parent": 4787}}, {"model": "template.logicnode", "pk": 4785, "fields": {"state_transition": 1134, "node_type": "S", "subcondition": 3, "parent": 4787}}, {"model": "template.logicnode", "pk": 4786, "fields": {"state_transition": 1134, "node_type": "S", "subcondition": 21, "parent": 4787}}, {"model": "template.logicnode", "pk": 4787, "fields": {"state_transition": 1134, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4788, "fields": {"state_transition": 1135, "node_type": "S", "subcondition": 23, "parent": 4791}}, {"model": "template.logicnode", "pk": 4789, "fields": {"state_transition": 1135, "node_type": "S", "subcondition": 3, "parent": 4791}}, {"model": "template.logicnode", "pk": 4790, "fields": {"state_transition": 1135, "node_type": "S", "subcondition": 22, "parent": 4791}}, {"model": "template.logicnode", "pk": 4791, "fields": {"state_transition": 1135, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4792, "fields": {"state_transition": 1136, "node_type": "S", "subcondition": 23, "parent": 4795}}, {"model": "template.logicnode", "pk": 4793, "fields": {"state_transition": 1136, "node_type": "S", "subcondition": 4, "parent": 4795}}, {"model": "template.logicnode", "pk": 4794, "fields": {"state_transition": 1136, "node_type": "S", "subcondition": 19, "parent": 4795}}, {"model": "template.logicnode", "pk": 4795, "fields": {"state_transition": 1136, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4796, "fields": {"state_transition": 1137, "node_type": "S", "subcondition": 23, "parent": 4799}}, {"model": "template.logicnode", "pk": 4797, "fields": {"state_transition": 1137, "node_type": "S", "subcondition": 4, "parent": 4799}}, {"model": "template.logicnode", "pk": 4798, "fields": {"state_transition": 1137, "node_type": "S", "subcondition": 20, "parent": 4799}}, {"model": "template.logicnode", "pk": 4799, "fields": {"state_transition": 1137, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4800, "fields": {"state_transition": 1138, "node_type": "S", "subcondition": 23, "parent": 4803}}, {"model": "template.logicnode", "pk": 4801, "fields": {"state_transition": 1138, "node_type": "S", "subcondition": 4, "parent": 4803}}, {"model": "template.logicnode", "pk": 4802, "fields": {"state_transition": 1138, "node_type": "S", "subcondition": 21, "parent": 4803}}, {"model": "template.logicnode", "pk": 4803, "fields": {"state_transition": 1138, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4804, "fields": {"state_transition": 1139, "node_type": "S", "subcondition": 23, "parent": 4807}}, {"model": "template.logicnode", "pk": 4805, "fields": {"state_transition": 1139, "node_type": "S", "subcondition": 4, "parent": 4807}}, {"model": "template.logicnode", "pk": 4806, "fields": {"state_transition": 1139, "node_type": "S", "subcondition": 22, "parent": 4807}}, {"model": "template.logicnode", "pk": 4807, "fields": {"state_transition": 1139, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4808, "fields": {"state_transition": 1140, "node_type": "S", "subcondition": 23, "parent": 4811}}, {"model": "template.logicnode", "pk": 4809, "fields": {"state_transition": 1140, "node_type": "S", "subcondition": 5, "parent": 4811}}, {"model": "template.logicnode", "pk": 4810, "fields": {"state_transition": 1140, "node_type": "S", "subcondition": 19, "parent": 4811}}, {"model": "template.logicnode", "pk": 4811, "fields": {"state_transition": 1140, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4812, "fields": {"state_transition": 1141, "node_type": "S", "subcondition": 23, "parent": 4815}}, {"model": "template.logicnode", "pk": 4813, "fields": {"state_transition": 1141, "node_type": "S", "subcondition": 5, "parent": 4815}}, {"model": "template.logicnode", "pk": 4814, "fields": {"state_transition": 1141, "node_type": "S", "subcondition": 20, "parent": 4815}}, {"model": "template.logicnode", "pk": 4815, "fields": {"state_transition": 1141, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4816, "fields": {"state_transition": 1142, "node_type": "S", "subcondition": 23, "parent": 4819}}, {"model": "template.logicnode", "pk": 4817, "fields": {"state_transition": 1142, "node_type": "S", "subcondition": 5, "parent": 4819}}, {"model": "template.logicnode", "pk": 4818, "fields": {"state_transition": 1142, "node_type": "S", "subcondition": 21, "parent": 4819}}, {"model": "template.logicnode", "pk": 4819, "fields": {"state_transition": 1142, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4820, "fields": {"state_transition": 1143, "node_type": "S", "subcondition": 23, "parent": 4823}}, {"model": "template.logicnode", "pk": 4821, "fields": {"state_transition": 1143, "node_type": "S", "subcondition": 5, "parent": 4823}}, {"model": "template.logicnode", "pk": 4822, "fields": {"state_transition": 1143, "node_type": "S", "subcondition": 22, "parent": 4823}}, {"model": "template.logicnode", "pk": 4823, "fields": {"state_transition": 1143, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4824, "fields": {"state_transition": 1144, "node_type": "S", "subcondition": 23, "parent": 4827}}, {"model": "template.logicnode", "pk": 4825, "fields": {"state_transition": 1144, "node_type": "S", "subcondition": 6, "parent": 4827}}, {"model": "template.logicnode", "pk": 4826, "fields": {"state_transition": 1144, "node_type": "S", "subcondition": 19, "parent": 4827}}, {"model": "template.logicnode", "pk": 4827, "fields": {"state_transition": 1144, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4828, "fields": {"state_transition": 1145, "node_type": "S", "subcondition": 23, "parent": 4831}}, {"model": "template.logicnode", "pk": 4829, "fields": {"state_transition": 1145, "node_type": "S", "subcondition": 6, "parent": 4831}}, {"model": "template.logicnode", "pk": 4830, "fields": {"state_transition": 1145, "node_type": "S", "subcondition": 20, "parent": 4831}}, {"model": "template.logicnode", "pk": 4831, "fields": {"state_transition": 1145, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4832, "fields": {"state_transition": 1146, "node_type": "S", "subcondition": 23, "parent": 4835}}, {"model": "template.logicnode", "pk": 4833, "fields": {"state_transition": 1146, "node_type": "S", "subcondition": 6, "parent": 4835}}, {"model": "template.logicnode", "pk": 4834, "fields": {"state_transition": 1146, "node_type": "S", "subcondition": 21, "parent": 4835}}, {"model": "template.logicnode", "pk": 4835, "fields": {"state_transition": 1146, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4836, "fields": {"state_transition": 1147, "node_type": "S", "subcondition": 23, "parent": 4839}}, {"model": "template.logicnode", "pk": 4837, "fields": {"state_transition": 1147, "node_type": "S", "subcondition": 6, "parent": 4839}}, {"model": "template.logicnode", "pk": 4838, "fields": {"state_transition": 1147, "node_type": "S", "subcondition": 22, "parent": 4839}}, {"model": "template.logicnode", "pk": 4839, "fields": {"state_transition": 1147, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4840, "fields": {"state_transition": 1148, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4841, "fields": {"state_transition": 1149, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4842, "fields": {"state_transition": 1150, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4843, "fields": {"state_transition": 1151, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4844, "fields": {"state_transition": 1152, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4845, "fields": {"state_transition": 1153, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4846, "fields": {"state_transition": 1154, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4847, "fields": {"state_transition": 1155, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4848, "fields": {"state_transition": 1156, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4849, "fields": {"state_transition": 1157, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4850, "fields": {"state_transition": 1158, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4851, "fields": {"state_transition": 1159, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4852, "fields": {"state_transition": 1160, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4853, "fields": {"state_transition": 1161, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4854, "fields": {"state_transition": 1162, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4855, "fields": {"state_transition": 1162, "node_type": "S", "subcondition": 23, "parent": 4854}}, {"model": "template.logicnode", "pk": 4856, "fields": {"state_transition": 1163, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4857, "fields": {"state_transition": 1164, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4858, "fields": {"state_transition": 1164, "node_type": "S", "subcondition": 23, "parent": 4857}}, {"model": "template.logicnode", "pk": 4859, "fields": {"state_transition": 1165, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4860, "fields": {"state_transition": 1166, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4861, "fields": {"state_transition": 1166, "node_type": "S", "subcondition": 23, "parent": 4860}}, {"model": "template.logicnode", "pk": 4862, "fields": {"state_transition": 1167, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4863, "fields": {"state_transition": 1168, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4864, "fields": {"state_transition": 1168, "node_type": "S", "subcondition": 23, "parent": 4863}}, {"model": "template.logicnode", "pk": 4865, "fields": {"state_transition": 1169, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4866, "fields": {"state_transition": 1170, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4867, "fields": {"state_transition": 1170, "node_type": "S", "subcondition": 23, "parent": 4866}}, {"model": "template.logicnode", "pk": 4868, "fields": {"state_transition": 1171, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4869, "fields": {"state_transition": 1172, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4870, "fields": {"state_transition": 1172, "node_type": "S", "subcondition": 23, "parent": 4869}}, {"model": "template.logicnode", "pk": 4871, "fields": {"state_transition": 1173, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4872, "fields": {"state_transition": 1174, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4873, "fields": {"state_transition": 1174, "node_type": "S", "subcondition": 23, "parent": 4872}}, {"model": "template.logicnode", "pk": 4874, "fields": {"state_transition": 1175, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4875, "fields": {"state_transition": 1176, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4876, "fields": {"state_transition": 1176, "node_type": "S", "subcondition": 23, "parent": 4875}}, {"model": "template.logicnode", "pk": 4877, "fields": {"state_transition": 1177, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4878, "fields": {"state_transition": 1178, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4879, "fields": {"state_transition": 1178, "node_type": "S", "subcondition": 23, "parent": 4878}}, {"model": "template.logicnode", "pk": 4880, "fields": {"state_transition": 1179, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4881, "fields": {"state_transition": 1180, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4882, "fields": {"state_transition": 1180, "node_type": "S", "subcondition": 23, "parent": 4881}}, {"model": "template.logicnode", "pk": 4883, "fields": {"state_transition": 1181, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4884, "fields": {"state_transition": 1182, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4885, "fields": {"state_transition": 1182, "node_type": "S", "subcondition": 23, "parent": 4884}}, {"model": "template.logicnode", "pk": 4886, "fields": {"state_transition": 1183, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4887, "fields": {"state_transition": 1184, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4888, "fields": {"state_transition": 1184, "node_type": "S", "subcondition": 23, "parent": 4887}}, {"model": "template.logicnode", "pk": 4889, "fields": {"state_transition": 1185, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4890, "fields": {"state_transition": 1186, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4891, "fields": {"state_transition": 1186, "node_type": "S", "subcondition": 23, "parent": 4890}}, {"model": "template.logicnode", "pk": 4892, "fields": {"state_transition": 1187, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4893, "fields": {"state_transition": 1188, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4894, "fields": {"state_transition": 1188, "node_type": "S", "subcondition": 23, "parent": 4893}}, {"model": "template.logicnode", "pk": 4895, "fields": {"state_transition": 1189, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4896, "fields": {"state_transition": 1190, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4897, "fields": {"state_transition": 1190, "node_type": "S", "subcondition": 23, "parent": 4896}}, {"model": "template.logicnode", "pk": 4898, "fields": {"state_transition": 1191, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4899, "fields": {"state_transition": 1192, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4900, "fields": {"state_transition": 1193, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4901, "fields": {"state_transition": 1194, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4902, "fields": {"state_transition": 1195, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4903, "fields": {"state_transition": 1196, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4904, "fields": {"state_transition": 1197, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4905, "fields": {"state_transition": 1198, "node_type": "N", "subcondition": null, "parent": 4909}}, {"model": "template.logicnode", "pk": 4906, "fields": {"state_transition": 1198, "node_type": "S", "subcondition": 23, "parent": 4905}}, {"model": "template.logicnode", "pk": 4907, "fields": {"state_transition": 1198, "node_type": "S", "subcondition": 14, "parent": 4909}}, {"model": "template.logicnode", "pk": 4908, "fields": {"state_transition": 1198, "node_type": "S", "subcondition": 16, "parent": 4909}}, {"model": "template.logicnode", "pk": 4909, "fields": {"state_transition": 1198, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4910, "fields": {"state_transition": 1199, "node_type": "N", "subcondition": null, "parent": 4913}}, {"model": "template.logicnode", "pk": 4911, "fields": {"state_transition": 1199, "node_type": "S", "subcondition": 23, "parent": 4910}}, {"model": "template.logicnode", "pk": 4912, "fields": {"state_transition": 1199, "node_type": "S", "subcondition": 14, "parent": 4913}}, {"model": "template.logicnode", "pk": 4913, "fields": {"state_transition": 1199, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4914, "fields": {"state_transition": 1200, "node_type": "N", "subcondition": null, "parent": 4918}}, {"model": "template.logicnode", "pk": 4915, "fields": {"state_transition": 1200, "node_type": "S", "subcondition": 23, "parent": 4914}}, {"model": "template.logicnode", "pk": 4916, "fields": {"state_transition": 1200, "node_type": "S", "subcondition": 15, "parent": 4918}}, {"model": "template.logicnode", "pk": 4917, "fields": {"state_transition": 1200, "node_type": "S", "subcondition": 16, "parent": 4918}}, {"model": "template.logicnode", "pk": 4918, "fields": {"state_transition": 1200, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4919, "fields": {"state_transition": 1201, "node_type": "N", "subcondition": null, "parent": 4922}}, {"model": "template.logicnode", "pk": 4920, "fields": {"state_transition": 1201, "node_type": "S", "subcondition": 23, "parent": 4919}}, {"model": "template.logicnode", "pk": 4921, "fields": {"state_transition": 1201, "node_type": "S", "subcondition": 15, "parent": 4922}}, {"model": "template.logicnode", "pk": 4922, "fields": {"state_transition": 1201, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4923, "fields": {"state_transition": 1202, "node_type": "N", "subcondition": null, "parent": 4926}}, {"model": "template.logicnode", "pk": 4924, "fields": {"state_transition": 1202, "node_type": "S", "subcondition": 23, "parent": 4923}}, {"model": "template.logicnode", "pk": 4925, "fields": {"state_transition": 1202, "node_type": "S", "subcondition": 16, "parent": 4926}}, {"model": "template.logicnode", "pk": 4926, "fields": {"state_transition": 1202, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4927, "fields": {"state_transition": 1203, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4928, "fields": {"state_transition": 1203, "node_type": "S", "subcondition": 23, "parent": 4927}}, {"model": "template.logicnode", "pk": 4929, "fields": {"state_transition": 1204, "node_type": "S", "subcondition": 23, "parent": 4931}}, {"model": "template.logicnode", "pk": 4930, "fields": {"state_transition": 1204, "node_type": "S", "subcondition": 16, "parent": 4931}}, {"model": "template.logicnode", "pk": 4931, "fields": {"state_transition": 1204, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4932, "fields": {"state_transition": 1205, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4933, "fields": {"state_transition": 1206, "node_type": "N", "subcondition": null, "parent": 4937}}, {"model": "template.logicnode", "pk": 4934, "fields": {"state_transition": 1206, "node_type": "S", "subcondition": 23, "parent": 4933}}, {"model": "template.logicnode", "pk": 4935, "fields": {"state_transition": 1206, "node_type": "S", "subcondition": 14, "parent": 4937}}, {"model": "template.logicnode", "pk": 4936, "fields": {"state_transition": 1206, "node_type": "S", "subcondition": 16, "parent": 4937}}, {"model": "template.logicnode", "pk": 4937, "fields": {"state_transition": 1206, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4938, "fields": {"state_transition": 1207, "node_type": "N", "subcondition": null, "parent": 4941}}, {"model": "template.logicnode", "pk": 4939, "fields": {"state_transition": 1207, "node_type": "S", "subcondition": 23, "parent": 4938}}, {"model": "template.logicnode", "pk": 4940, "fields": {"state_transition": 1207, "node_type": "S", "subcondition": 14, "parent": 4941}}, {"model": "template.logicnode", "pk": 4941, "fields": {"state_transition": 1207, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4942, "fields": {"state_transition": 1208, "node_type": "N", "subcondition": null, "parent": 4946}}, {"model": "template.logicnode", "pk": 4943, "fields": {"state_transition": 1208, "node_type": "S", "subcondition": 23, "parent": 4942}}, {"model": "template.logicnode", "pk": 4944, "fields": {"state_transition": 1208, "node_type": "S", "subcondition": 15, "parent": 4946}}, {"model": "template.logicnode", "pk": 4945, "fields": {"state_transition": 1208, "node_type": "S", "subcondition": 16, "parent": 4946}}, {"model": "template.logicnode", "pk": 4946, "fields": {"state_transition": 1208, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4947, "fields": {"state_transition": 1209, "node_type": "N", "subcondition": null, "parent": 4950}}, {"model": "template.logicnode", "pk": 4948, "fields": {"state_transition": 1209, "node_type": "S", "subcondition": 23, "parent": 4947}}, {"model": "template.logicnode", "pk": 4949, "fields": {"state_transition": 1209, "node_type": "S", "subcondition": 15, "parent": 4950}}, {"model": "template.logicnode", "pk": 4950, "fields": {"state_transition": 1209, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4951, "fields": {"state_transition": 1210, "node_type": "N", "subcondition": null, "parent": 4954}}, {"model": "template.logicnode", "pk": 4952, "fields": {"state_transition": 1210, "node_type": "S", "subcondition": 23, "parent": 4951}}, {"model": "template.logicnode", "pk": 4953, "fields": {"state_transition": 1210, "node_type": "S", "subcondition": 16, "parent": 4954}}, {"model": "template.logicnode", "pk": 4954, "fields": {"state_transition": 1210, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4955, "fields": {"state_transition": 1211, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4956, "fields": {"state_transition": 1211, "node_type": "S", "subcondition": 23, "parent": 4955}}, {"model": "template.logicnode", "pk": 4957, "fields": {"state_transition": 1212, "node_type": "S", "subcondition": 23, "parent": 4959}}, {"model": "template.logicnode", "pk": 4958, "fields": {"state_transition": 1212, "node_type": "S", "subcondition": 16, "parent": 4959}}, {"model": "template.logicnode", "pk": 4959, "fields": {"state_transition": 1212, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4960, "fields": {"state_transition": 1213, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4961, "fields": {"state_transition": 1214, "node_type": "N", "subcondition": null, "parent": 4965}}, {"model": "template.logicnode", "pk": 4962, "fields": {"state_transition": 1214, "node_type": "S", "subcondition": 23, "parent": 4961}}, {"model": "template.logicnode", "pk": 4963, "fields": {"state_transition": 1214, "node_type": "S", "subcondition": 14, "parent": 4965}}, {"model": "template.logicnode", "pk": 4964, "fields": {"state_transition": 1214, "node_type": "S", "subcondition": 16, "parent": 4965}}, {"model": "template.logicnode", "pk": 4965, "fields": {"state_transition": 1214, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4966, "fields": {"state_transition": 1215, "node_type": "N", "subcondition": null, "parent": 4969}}, {"model": "template.logicnode", "pk": 4967, "fields": {"state_transition": 1215, "node_type": "S", "subcondition": 23, "parent": 4966}}, {"model": "template.logicnode", "pk": 4968, "fields": {"state_transition": 1215, "node_type": "S", "subcondition": 14, "parent": 4969}}, {"model": "template.logicnode", "pk": 4969, "fields": {"state_transition": 1215, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4970, "fields": {"state_transition": 1216, "node_type": "N", "subcondition": null, "parent": 4974}}, {"model": "template.logicnode", "pk": 4971, "fields": {"state_transition": 1216, "node_type": "S", "subcondition": 23, "parent": 4970}}, {"model": "template.logicnode", "pk": 4972, "fields": {"state_transition": 1216, "node_type": "S", "subcondition": 15, "parent": 4974}}, {"model": "template.logicnode", "pk": 4973, "fields": {"state_transition": 1216, "node_type": "S", "subcondition": 16, "parent": 4974}}, {"model": "template.logicnode", "pk": 4974, "fields": {"state_transition": 1216, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4975, "fields": {"state_transition": 1217, "node_type": "N", "subcondition": null, "parent": 4978}}, {"model": "template.logicnode", "pk": 4976, "fields": {"state_transition": 1217, "node_type": "S", "subcondition": 23, "parent": 4975}}, {"model": "template.logicnode", "pk": 4977, "fields": {"state_transition": 1217, "node_type": "S", "subcondition": 15, "parent": 4978}}, {"model": "template.logicnode", "pk": 4978, "fields": {"state_transition": 1217, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4979, "fields": {"state_transition": 1218, "node_type": "N", "subcondition": null, "parent": 4982}}, {"model": "template.logicnode", "pk": 4980, "fields": {"state_transition": 1218, "node_type": "S", "subcondition": 23, "parent": 4979}}, {"model": "template.logicnode", "pk": 4981, "fields": {"state_transition": 1218, "node_type": "S", "subcondition": 16, "parent": 4982}}, {"model": "template.logicnode", "pk": 4982, "fields": {"state_transition": 1218, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4983, "fields": {"state_transition": 1219, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4984, "fields": {"state_transition": 1219, "node_type": "S", "subcondition": 23, "parent": 4983}}, {"model": "template.logicnode", "pk": 4985, "fields": {"state_transition": 1220, "node_type": "S", "subcondition": 23, "parent": 4987}}, {"model": "template.logicnode", "pk": 4986, "fields": {"state_transition": 1220, "node_type": "S", "subcondition": 16, "parent": 4987}}, {"model": "template.logicnode", "pk": 4987, "fields": {"state_transition": 1220, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4988, "fields": {"state_transition": 1221, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 4989, "fields": {"state_transition": 1222, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4990, "fields": {"state_transition": 1223, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4991, "fields": {"state_transition": 1224, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4992, "fields": {"state_transition": 1225, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4993, "fields": {"state_transition": 1226, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4994, "fields": {"state_transition": 1227, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4995, "fields": {"state_transition": 1228, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4996, "fields": {"state_transition": 1229, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4997, "fields": {"state_transition": 1230, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4998, "fields": {"state_transition": 1231, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 4999, "fields": {"state_transition": 1232, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5000, "fields": {"state_transition": 1233, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5001, "fields": {"state_transition": 1234, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5002, "fields": {"state_transition": 1234, "node_type": "S", "subcondition": 23, "parent": 5001}}, {"model": "template.logicnode", "pk": 5003, "fields": {"state_transition": 1235, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5004, "fields": {"state_transition": 1236, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5005, "fields": {"state_transition": 1236, "node_type": "S", "subcondition": 23, "parent": 5004}}, {"model": "template.logicnode", "pk": 5006, "fields": {"state_transition": 1237, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5007, "fields": {"state_transition": 1238, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5008, "fields": {"state_transition": 1238, "node_type": "S", "subcondition": 23, "parent": 5007}}, {"model": "template.logicnode", "pk": 5009, "fields": {"state_transition": 1239, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5010, "fields": {"state_transition": 1240, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5011, "fields": {"state_transition": 1240, "node_type": "S", "subcondition": 23, "parent": 5010}}, {"model": "template.logicnode", "pk": 5012, "fields": {"state_transition": 1241, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5013, "fields": {"state_transition": 1242, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5014, "fields": {"state_transition": 1242, "node_type": "S", "subcondition": 23, "parent": 5013}}, {"model": "template.logicnode", "pk": 5015, "fields": {"state_transition": 1243, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5016, "fields": {"state_transition": 1244, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5017, "fields": {"state_transition": 1245, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5018, "fields": {"state_transition": 1246, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5019, "fields": {"state_transition": 1247, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5020, "fields": {"state_transition": 1248, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5021, "fields": {"state_transition": 1249, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5022, "fields": {"state_transition": 1250, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5023, "fields": {"state_transition": 1251, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5024, "fields": {"state_transition": 1252, "node_type": "N", "subcondition": null, "parent": 5030}}, {"model": "template.logicnode", "pk": 5025, "fields": {"state_transition": 1252, "node_type": "S", "subcondition": 23, "parent": 5024}}, {"model": "template.logicnode", "pk": 5026, "fields": {"state_transition": 1252, "node_type": "S", "subcondition": 11, "parent": 5030}}, {"model": "template.logicnode", "pk": 5027, "fields": {"state_transition": 1252, "node_type": "S", "subcondition": 13, "parent": 5030}}, {"model": "template.logicnode", "pk": 5028, "fields": {"state_transition": 1252, "node_type": "S", "subcondition": 17, "parent": 5030}}, {"model": "template.logicnode", "pk": 5029, "fields": {"state_transition": 1252, "node_type": "S", "subcondition": 25, "parent": 5030}}, {"model": "template.logicnode", "pk": 5030, "fields": {"state_transition": 1252, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5031, "fields": {"state_transition": 1253, "node_type": "N", "subcondition": null, "parent": 5036}}, {"model": "template.logicnode", "pk": 5032, "fields": {"state_transition": 1253, "node_type": "S", "subcondition": 23, "parent": 5031}}, {"model": "template.logicnode", "pk": 5033, "fields": {"state_transition": 1253, "node_type": "S", "subcondition": 11, "parent": 5036}}, {"model": "template.logicnode", "pk": 5034, "fields": {"state_transition": 1253, "node_type": "S", "subcondition": 13, "parent": 5036}}, {"model": "template.logicnode", "pk": 5035, "fields": {"state_transition": 1253, "node_type": "S", "subcondition": 17, "parent": 5036}}, {"model": "template.logicnode", "pk": 5036, "fields": {"state_transition": 1253, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5037, "fields": {"state_transition": 1254, "node_type": "N", "subcondition": null, "parent": 5042}}, {"model": "template.logicnode", "pk": 5038, "fields": {"state_transition": 1254, "node_type": "S", "subcondition": 23, "parent": 5037}}, {"model": "template.logicnode", "pk": 5039, "fields": {"state_transition": 1254, "node_type": "S", "subcondition": 11, "parent": 5042}}, {"model": "template.logicnode", "pk": 5040, "fields": {"state_transition": 1254, "node_type": "S", "subcondition": 13, "parent": 5042}}, {"model": "template.logicnode", "pk": 5041, "fields": {"state_transition": 1254, "node_type": "S", "subcondition": 25, "parent": 5042}}, {"model": "template.logicnode", "pk": 5042, "fields": {"state_transition": 1254, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5043, "fields": {"state_transition": 1255, "node_type": "N", "subcondition": null, "parent": 5047}}, {"model": "template.logicnode", "pk": 5044, "fields": {"state_transition": 1255, "node_type": "S", "subcondition": 23, "parent": 5043}}, {"model": "template.logicnode", "pk": 5045, "fields": {"state_transition": 1255, "node_type": "S", "subcondition": 11, "parent": 5047}}, {"model": "template.logicnode", "pk": 5046, "fields": {"state_transition": 1255, "node_type": "S", "subcondition": 13, "parent": 5047}}, {"model": "template.logicnode", "pk": 5047, "fields": {"state_transition": 1255, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5048, "fields": {"state_transition": 1256, "node_type": "N", "subcondition": null, "parent": 5053}}, {"model": "template.logicnode", "pk": 5049, "fields": {"state_transition": 1256, "node_type": "S", "subcondition": 23, "parent": 5048}}, {"model": "template.logicnode", "pk": 5050, "fields": {"state_transition": 1256, "node_type": "S", "subcondition": 11, "parent": 5053}}, {"model": "template.logicnode", "pk": 5051, "fields": {"state_transition": 1256, "node_type": "S", "subcondition": 17, "parent": 5053}}, {"model": "template.logicnode", "pk": 5052, "fields": {"state_transition": 1256, "node_type": "S", "subcondition": 25, "parent": 5053}}, {"model": "template.logicnode", "pk": 5053, "fields": {"state_transition": 1256, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5054, "fields": {"state_transition": 1257, "node_type": "N", "subcondition": null, "parent": 5058}}, {"model": "template.logicnode", "pk": 5055, "fields": {"state_transition": 1257, "node_type": "S", "subcondition": 23, "parent": 5054}}, {"model": "template.logicnode", "pk": 5056, "fields": {"state_transition": 1257, "node_type": "S", "subcondition": 11, "parent": 5058}}, {"model": "template.logicnode", "pk": 5057, "fields": {"state_transition": 1257, "node_type": "S", "subcondition": 17, "parent": 5058}}, {"model": "template.logicnode", "pk": 5058, "fields": {"state_transition": 1257, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5059, "fields": {"state_transition": 1258, "node_type": "N", "subcondition": null, "parent": 5063}}, {"model": "template.logicnode", "pk": 5060, "fields": {"state_transition": 1258, "node_type": "S", "subcondition": 23, "parent": 5059}}, {"model": "template.logicnode", "pk": 5061, "fields": {"state_transition": 1258, "node_type": "S", "subcondition": 11, "parent": 5063}}, {"model": "template.logicnode", "pk": 5062, "fields": {"state_transition": 1258, "node_type": "S", "subcondition": 25, "parent": 5063}}, {"model": "template.logicnode", "pk": 5063, "fields": {"state_transition": 1258, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5064, "fields": {"state_transition": 1259, "node_type": "N", "subcondition": null, "parent": 5067}}, {"model": "template.logicnode", "pk": 5065, "fields": {"state_transition": 1259, "node_type": "S", "subcondition": 23, "parent": 5064}}, {"model": "template.logicnode", "pk": 5066, "fields": {"state_transition": 1259, "node_type": "S", "subcondition": 11, "parent": 5067}}, {"model": "template.logicnode", "pk": 5067, "fields": {"state_transition": 1259, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5068, "fields": {"state_transition": 1260, "node_type": "N", "subcondition": null, "parent": 5073}}, {"model": "template.logicnode", "pk": 5069, "fields": {"state_transition": 1260, "node_type": "S", "subcondition": 23, "parent": 5068}}, {"model": "template.logicnode", "pk": 5070, "fields": {"state_transition": 1260, "node_type": "S", "subcondition": 13, "parent": 5073}}, {"model": "template.logicnode", "pk": 5071, "fields": {"state_transition": 1260, "node_type": "S", "subcondition": 17, "parent": 5073}}, {"model": "template.logicnode", "pk": 5072, "fields": {"state_transition": 1260, "node_type": "S", "subcondition": 25, "parent": 5073}}, {"model": "template.logicnode", "pk": 5073, "fields": {"state_transition": 1260, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5074, "fields": {"state_transition": 1261, "node_type": "N", "subcondition": null, "parent": 5078}}, {"model": "template.logicnode", "pk": 5075, "fields": {"state_transition": 1261, "node_type": "S", "subcondition": 23, "parent": 5074}}, {"model": "template.logicnode", "pk": 5076, "fields": {"state_transition": 1261, "node_type": "S", "subcondition": 13, "parent": 5078}}, {"model": "template.logicnode", "pk": 5077, "fields": {"state_transition": 1261, "node_type": "S", "subcondition": 17, "parent": 5078}}, {"model": "template.logicnode", "pk": 5078, "fields": {"state_transition": 1261, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5079, "fields": {"state_transition": 1262, "node_type": "N", "subcondition": null, "parent": 5083}}, {"model": "template.logicnode", "pk": 5080, "fields": {"state_transition": 1262, "node_type": "S", "subcondition": 23, "parent": 5079}}, {"model": "template.logicnode", "pk": 5081, "fields": {"state_transition": 1262, "node_type": "S", "subcondition": 13, "parent": 5083}}, {"model": "template.logicnode", "pk": 5082, "fields": {"state_transition": 1262, "node_type": "S", "subcondition": 25, "parent": 5083}}, {"model": "template.logicnode", "pk": 5083, "fields": {"state_transition": 1262, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5084, "fields": {"state_transition": 1263, "node_type": "N", "subcondition": null, "parent": 5087}}, {"model": "template.logicnode", "pk": 5085, "fields": {"state_transition": 1263, "node_type": "S", "subcondition": 23, "parent": 5084}}, {"model": "template.logicnode", "pk": 5086, "fields": {"state_transition": 1263, "node_type": "S", "subcondition": 13, "parent": 5087}}, {"model": "template.logicnode", "pk": 5087, "fields": {"state_transition": 1263, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5088, "fields": {"state_transition": 1264, "node_type": "N", "subcondition": null, "parent": 5092}}, {"model": "template.logicnode", "pk": 5089, "fields": {"state_transition": 1264, "node_type": "S", "subcondition": 23, "parent": 5088}}, {"model": "template.logicnode", "pk": 5090, "fields": {"state_transition": 1264, "node_type": "S", "subcondition": 17, "parent": 5092}}, {"model": "template.logicnode", "pk": 5091, "fields": {"state_transition": 1264, "node_type": "S", "subcondition": 25, "parent": 5092}}, {"model": "template.logicnode", "pk": 5092, "fields": {"state_transition": 1264, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5093, "fields": {"state_transition": 1265, "node_type": "N", "subcondition": null, "parent": 5096}}, {"model": "template.logicnode", "pk": 5094, "fields": {"state_transition": 1265, "node_type": "S", "subcondition": 23, "parent": 5093}}, {"model": "template.logicnode", "pk": 5095, "fields": {"state_transition": 1265, "node_type": "S", "subcondition": 17, "parent": 5096}}, {"model": "template.logicnode", "pk": 5096, "fields": {"state_transition": 1265, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5097, "fields": {"state_transition": 1266, "node_type": "N", "subcondition": null, "parent": 5100}}, {"model": "template.logicnode", "pk": 5098, "fields": {"state_transition": 1266, "node_type": "S", "subcondition": 23, "parent": 5097}}, {"model": "template.logicnode", "pk": 5099, "fields": {"state_transition": 1266, "node_type": "S", "subcondition": 25, "parent": 5100}}, {"model": "template.logicnode", "pk": 5100, "fields": {"state_transition": 1266, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5101, "fields": {"state_transition": 1267, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5102, "fields": {"state_transition": 1267, "node_type": "S", "subcondition": 23, "parent": 5101}}, {"model": "template.logicnode", "pk": 5103, "fields": {"state_transition": 1268, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5104, "fields": {"state_transition": 1269, "node_type": "N", "subcondition": null, "parent": 5110}}, {"model": "template.logicnode", "pk": 5105, "fields": {"state_transition": 1269, "node_type": "S", "subcondition": 23, "parent": 5104}}, {"model": "template.logicnode", "pk": 5106, "fields": {"state_transition": 1269, "node_type": "S", "subcondition": 11, "parent": 5110}}, {"model": "template.logicnode", "pk": 5107, "fields": {"state_transition": 1269, "node_type": "S", "subcondition": 13, "parent": 5110}}, {"model": "template.logicnode", "pk": 5108, "fields": {"state_transition": 1269, "node_type": "S", "subcondition": 17, "parent": 5110}}, {"model": "template.logicnode", "pk": 5109, "fields": {"state_transition": 1269, "node_type": "S", "subcondition": 25, "parent": 5110}}, {"model": "template.logicnode", "pk": 5110, "fields": {"state_transition": 1269, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5111, "fields": {"state_transition": 1270, "node_type": "N", "subcondition": null, "parent": 5116}}, {"model": "template.logicnode", "pk": 5112, "fields": {"state_transition": 1270, "node_type": "S", "subcondition": 23, "parent": 5111}}, {"model": "template.logicnode", "pk": 5113, "fields": {"state_transition": 1270, "node_type": "S", "subcondition": 11, "parent": 5116}}, {"model": "template.logicnode", "pk": 5114, "fields": {"state_transition": 1270, "node_type": "S", "subcondition": 13, "parent": 5116}}, {"model": "template.logicnode", "pk": 5115, "fields": {"state_transition": 1270, "node_type": "S", "subcondition": 17, "parent": 5116}}, {"model": "template.logicnode", "pk": 5116, "fields": {"state_transition": 1270, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5117, "fields": {"state_transition": 1271, "node_type": "N", "subcondition": null, "parent": 5122}}, {"model": "template.logicnode", "pk": 5118, "fields": {"state_transition": 1271, "node_type": "S", "subcondition": 23, "parent": 5117}}, {"model": "template.logicnode", "pk": 5119, "fields": {"state_transition": 1271, "node_type": "S", "subcondition": 11, "parent": 5122}}, {"model": "template.logicnode", "pk": 5120, "fields": {"state_transition": 1271, "node_type": "S", "subcondition": 13, "parent": 5122}}, {"model": "template.logicnode", "pk": 5121, "fields": {"state_transition": 1271, "node_type": "S", "subcondition": 25, "parent": 5122}}, {"model": "template.logicnode", "pk": 5122, "fields": {"state_transition": 1271, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5123, "fields": {"state_transition": 1272, "node_type": "N", "subcondition": null, "parent": 5127}}, {"model": "template.logicnode", "pk": 5124, "fields": {"state_transition": 1272, "node_type": "S", "subcondition": 23, "parent": 5123}}, {"model": "template.logicnode", "pk": 5125, "fields": {"state_transition": 1272, "node_type": "S", "subcondition": 11, "parent": 5127}}, {"model": "template.logicnode", "pk": 5126, "fields": {"state_transition": 1272, "node_type": "S", "subcondition": 13, "parent": 5127}}, {"model": "template.logicnode", "pk": 5127, "fields": {"state_transition": 1272, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5128, "fields": {"state_transition": 1273, "node_type": "N", "subcondition": null, "parent": 5133}}, {"model": "template.logicnode", "pk": 5129, "fields": {"state_transition": 1273, "node_type": "S", "subcondition": 23, "parent": 5128}}, {"model": "template.logicnode", "pk": 5130, "fields": {"state_transition": 1273, "node_type": "S", "subcondition": 11, "parent": 5133}}, {"model": "template.logicnode", "pk": 5131, "fields": {"state_transition": 1273, "node_type": "S", "subcondition": 17, "parent": 5133}}, {"model": "template.logicnode", "pk": 5132, "fields": {"state_transition": 1273, "node_type": "S", "subcondition": 25, "parent": 5133}}, {"model": "template.logicnode", "pk": 5133, "fields": {"state_transition": 1273, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5134, "fields": {"state_transition": 1274, "node_type": "N", "subcondition": null, "parent": 5138}}, {"model": "template.logicnode", "pk": 5135, "fields": {"state_transition": 1274, "node_type": "S", "subcondition": 23, "parent": 5134}}, {"model": "template.logicnode", "pk": 5136, "fields": {"state_transition": 1274, "node_type": "S", "subcondition": 11, "parent": 5138}}, {"model": "template.logicnode", "pk": 5137, "fields": {"state_transition": 1274, "node_type": "S", "subcondition": 17, "parent": 5138}}, {"model": "template.logicnode", "pk": 5138, "fields": {"state_transition": 1274, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5139, "fields": {"state_transition": 1275, "node_type": "N", "subcondition": null, "parent": 5143}}, {"model": "template.logicnode", "pk": 5140, "fields": {"state_transition": 1275, "node_type": "S", "subcondition": 23, "parent": 5139}}, {"model": "template.logicnode", "pk": 5141, "fields": {"state_transition": 1275, "node_type": "S", "subcondition": 11, "parent": 5143}}, {"model": "template.logicnode", "pk": 5142, "fields": {"state_transition": 1275, "node_type": "S", "subcondition": 25, "parent": 5143}}, {"model": "template.logicnode", "pk": 5143, "fields": {"state_transition": 1275, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5144, "fields": {"state_transition": 1276, "node_type": "N", "subcondition": null, "parent": 5147}}, {"model": "template.logicnode", "pk": 5145, "fields": {"state_transition": 1276, "node_type": "S", "subcondition": 23, "parent": 5144}}, {"model": "template.logicnode", "pk": 5146, "fields": {"state_transition": 1276, "node_type": "S", "subcondition": 11, "parent": 5147}}, {"model": "template.logicnode", "pk": 5147, "fields": {"state_transition": 1276, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5148, "fields": {"state_transition": 1277, "node_type": "N", "subcondition": null, "parent": 5153}}, {"model": "template.logicnode", "pk": 5149, "fields": {"state_transition": 1277, "node_type": "S", "subcondition": 23, "parent": 5148}}, {"model": "template.logicnode", "pk": 5150, "fields": {"state_transition": 1277, "node_type": "S", "subcondition": 13, "parent": 5153}}, {"model": "template.logicnode", "pk": 5151, "fields": {"state_transition": 1277, "node_type": "S", "subcondition": 17, "parent": 5153}}, {"model": "template.logicnode", "pk": 5152, "fields": {"state_transition": 1277, "node_type": "S", "subcondition": 25, "parent": 5153}}, {"model": "template.logicnode", "pk": 5153, "fields": {"state_transition": 1277, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5154, "fields": {"state_transition": 1278, "node_type": "N", "subcondition": null, "parent": 5158}}, {"model": "template.logicnode", "pk": 5155, "fields": {"state_transition": 1278, "node_type": "S", "subcondition": 23, "parent": 5154}}, {"model": "template.logicnode", "pk": 5156, "fields": {"state_transition": 1278, "node_type": "S", "subcondition": 13, "parent": 5158}}, {"model": "template.logicnode", "pk": 5157, "fields": {"state_transition": 1278, "node_type": "S", "subcondition": 17, "parent": 5158}}, {"model": "template.logicnode", "pk": 5158, "fields": {"state_transition": 1278, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5159, "fields": {"state_transition": 1279, "node_type": "N", "subcondition": null, "parent": 5163}}, {"model": "template.logicnode", "pk": 5160, "fields": {"state_transition": 1279, "node_type": "S", "subcondition": 23, "parent": 5159}}, {"model": "template.logicnode", "pk": 5161, "fields": {"state_transition": 1279, "node_type": "S", "subcondition": 13, "parent": 5163}}, {"model": "template.logicnode", "pk": 5162, "fields": {"state_transition": 1279, "node_type": "S", "subcondition": 25, "parent": 5163}}, {"model": "template.logicnode", "pk": 5163, "fields": {"state_transition": 1279, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5164, "fields": {"state_transition": 1280, "node_type": "N", "subcondition": null, "parent": 5167}}, {"model": "template.logicnode", "pk": 5165, "fields": {"state_transition": 1280, "node_type": "S", "subcondition": 23, "parent": 5164}}, {"model": "template.logicnode", "pk": 5166, "fields": {"state_transition": 1280, "node_type": "S", "subcondition": 13, "parent": 5167}}, {"model": "template.logicnode", "pk": 5167, "fields": {"state_transition": 1280, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5168, "fields": {"state_transition": 1281, "node_type": "N", "subcondition": null, "parent": 5172}}, {"model": "template.logicnode", "pk": 5169, "fields": {"state_transition": 1281, "node_type": "S", "subcondition": 23, "parent": 5168}}, {"model": "template.logicnode", "pk": 5170, "fields": {"state_transition": 1281, "node_type": "S", "subcondition": 17, "parent": 5172}}, {"model": "template.logicnode", "pk": 5171, "fields": {"state_transition": 1281, "node_type": "S", "subcondition": 25, "parent": 5172}}, {"model": "template.logicnode", "pk": 5172, "fields": {"state_transition": 1281, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5173, "fields": {"state_transition": 1282, "node_type": "N", "subcondition": null, "parent": 5176}}, {"model": "template.logicnode", "pk": 5174, "fields": {"state_transition": 1282, "node_type": "S", "subcondition": 23, "parent": 5173}}, {"model": "template.logicnode", "pk": 5175, "fields": {"state_transition": 1282, "node_type": "S", "subcondition": 17, "parent": 5176}}, {"model": "template.logicnode", "pk": 5176, "fields": {"state_transition": 1282, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5177, "fields": {"state_transition": 1283, "node_type": "N", "subcondition": null, "parent": 5180}}, {"model": "template.logicnode", "pk": 5178, "fields": {"state_transition": 1283, "node_type": "S", "subcondition": 23, "parent": 5177}}, {"model": "template.logicnode", "pk": 5179, "fields": {"state_transition": 1283, "node_type": "S", "subcondition": 25, "parent": 5180}}, {"model": "template.logicnode", "pk": 5180, "fields": {"state_transition": 1283, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5181, "fields": {"state_transition": 1284, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5182, "fields": {"state_transition": 1284, "node_type": "S", "subcondition": 23, "parent": 5181}}, {"model": "template.logicnode", "pk": 5183, "fields": {"state_transition": 1285, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5184, "fields": {"state_transition": 1286, "node_type": "N", "subcondition": null, "parent": 5190}}, {"model": "template.logicnode", "pk": 5185, "fields": {"state_transition": 1286, "node_type": "S", "subcondition": 23, "parent": 5184}}, {"model": "template.logicnode", "pk": 5186, "fields": {"state_transition": 1286, "node_type": "S", "subcondition": 11, "parent": 5190}}, {"model": "template.logicnode", "pk": 5187, "fields": {"state_transition": 1286, "node_type": "S", "subcondition": 13, "parent": 5190}}, {"model": "template.logicnode", "pk": 5188, "fields": {"state_transition": 1286, "node_type": "S", "subcondition": 17, "parent": 5190}}, {"model": "template.logicnode", "pk": 5189, "fields": {"state_transition": 1286, "node_type": "S", "subcondition": 25, "parent": 5190}}, {"model": "template.logicnode", "pk": 5190, "fields": {"state_transition": 1286, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5191, "fields": {"state_transition": 1287, "node_type": "N", "subcondition": null, "parent": 5196}}, {"model": "template.logicnode", "pk": 5192, "fields": {"state_transition": 1287, "node_type": "S", "subcondition": 23, "parent": 5191}}, {"model": "template.logicnode", "pk": 5193, "fields": {"state_transition": 1287, "node_type": "S", "subcondition": 11, "parent": 5196}}, {"model": "template.logicnode", "pk": 5194, "fields": {"state_transition": 1287, "node_type": "S", "subcondition": 13, "parent": 5196}}, {"model": "template.logicnode", "pk": 5195, "fields": {"state_transition": 1287, "node_type": "S", "subcondition": 17, "parent": 5196}}, {"model": "template.logicnode", "pk": 5196, "fields": {"state_transition": 1287, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5197, "fields": {"state_transition": 1288, "node_type": "N", "subcondition": null, "parent": 5202}}, {"model": "template.logicnode", "pk": 5198, "fields": {"state_transition": 1288, "node_type": "S", "subcondition": 23, "parent": 5197}}, {"model": "template.logicnode", "pk": 5199, "fields": {"state_transition": 1288, "node_type": "S", "subcondition": 11, "parent": 5202}}, {"model": "template.logicnode", "pk": 5200, "fields": {"state_transition": 1288, "node_type": "S", "subcondition": 13, "parent": 5202}}, {"model": "template.logicnode", "pk": 5201, "fields": {"state_transition": 1288, "node_type": "S", "subcondition": 25, "parent": 5202}}, {"model": "template.logicnode", "pk": 5202, "fields": {"state_transition": 1288, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5203, "fields": {"state_transition": 1289, "node_type": "N", "subcondition": null, "parent": 5207}}, {"model": "template.logicnode", "pk": 5204, "fields": {"state_transition": 1289, "node_type": "S", "subcondition": 23, "parent": 5203}}, {"model": "template.logicnode", "pk": 5205, "fields": {"state_transition": 1289, "node_type": "S", "subcondition": 11, "parent": 5207}}, {"model": "template.logicnode", "pk": 5206, "fields": {"state_transition": 1289, "node_type": "S", "subcondition": 13, "parent": 5207}}, {"model": "template.logicnode", "pk": 5207, "fields": {"state_transition": 1289, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5208, "fields": {"state_transition": 1290, "node_type": "N", "subcondition": null, "parent": 5213}}, {"model": "template.logicnode", "pk": 5209, "fields": {"state_transition": 1290, "node_type": "S", "subcondition": 23, "parent": 5208}}, {"model": "template.logicnode", "pk": 5210, "fields": {"state_transition": 1290, "node_type": "S", "subcondition": 11, "parent": 5213}}, {"model": "template.logicnode", "pk": 5211, "fields": {"state_transition": 1290, "node_type": "S", "subcondition": 17, "parent": 5213}}, {"model": "template.logicnode", "pk": 5212, "fields": {"state_transition": 1290, "node_type": "S", "subcondition": 25, "parent": 5213}}, {"model": "template.logicnode", "pk": 5213, "fields": {"state_transition": 1290, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5214, "fields": {"state_transition": 1291, "node_type": "N", "subcondition": null, "parent": 5218}}, {"model": "template.logicnode", "pk": 5215, "fields": {"state_transition": 1291, "node_type": "S", "subcondition": 23, "parent": 5214}}, {"model": "template.logicnode", "pk": 5216, "fields": {"state_transition": 1291, "node_type": "S", "subcondition": 11, "parent": 5218}}, {"model": "template.logicnode", "pk": 5217, "fields": {"state_transition": 1291, "node_type": "S", "subcondition": 17, "parent": 5218}}, {"model": "template.logicnode", "pk": 5218, "fields": {"state_transition": 1291, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5219, "fields": {"state_transition": 1292, "node_type": "N", "subcondition": null, "parent": 5223}}, {"model": "template.logicnode", "pk": 5220, "fields": {"state_transition": 1292, "node_type": "S", "subcondition": 23, "parent": 5219}}, {"model": "template.logicnode", "pk": 5221, "fields": {"state_transition": 1292, "node_type": "S", "subcondition": 11, "parent": 5223}}, {"model": "template.logicnode", "pk": 5222, "fields": {"state_transition": 1292, "node_type": "S", "subcondition": 25, "parent": 5223}}, {"model": "template.logicnode", "pk": 5223, "fields": {"state_transition": 1292, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5224, "fields": {"state_transition": 1293, "node_type": "N", "subcondition": null, "parent": 5227}}, {"model": "template.logicnode", "pk": 5225, "fields": {"state_transition": 1293, "node_type": "S", "subcondition": 23, "parent": 5224}}, {"model": "template.logicnode", "pk": 5226, "fields": {"state_transition": 1293, "node_type": "S", "subcondition": 11, "parent": 5227}}, {"model": "template.logicnode", "pk": 5227, "fields": {"state_transition": 1293, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5228, "fields": {"state_transition": 1294, "node_type": "N", "subcondition": null, "parent": 5233}}, {"model": "template.logicnode", "pk": 5229, "fields": {"state_transition": 1294, "node_type": "S", "subcondition": 23, "parent": 5228}}, {"model": "template.logicnode", "pk": 5230, "fields": {"state_transition": 1294, "node_type": "S", "subcondition": 13, "parent": 5233}}, {"model": "template.logicnode", "pk": 5231, "fields": {"state_transition": 1294, "node_type": "S", "subcondition": 17, "parent": 5233}}, {"model": "template.logicnode", "pk": 5232, "fields": {"state_transition": 1294, "node_type": "S", "subcondition": 25, "parent": 5233}}, {"model": "template.logicnode", "pk": 5233, "fields": {"state_transition": 1294, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5234, "fields": {"state_transition": 1295, "node_type": "N", "subcondition": null, "parent": 5238}}, {"model": "template.logicnode", "pk": 5235, "fields": {"state_transition": 1295, "node_type": "S", "subcondition": 23, "parent": 5234}}, {"model": "template.logicnode", "pk": 5236, "fields": {"state_transition": 1295, "node_type": "S", "subcondition": 13, "parent": 5238}}, {"model": "template.logicnode", "pk": 5237, "fields": {"state_transition": 1295, "node_type": "S", "subcondition": 17, "parent": 5238}}, {"model": "template.logicnode", "pk": 5238, "fields": {"state_transition": 1295, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5239, "fields": {"state_transition": 1296, "node_type": "N", "subcondition": null, "parent": 5243}}, {"model": "template.logicnode", "pk": 5240, "fields": {"state_transition": 1296, "node_type": "S", "subcondition": 23, "parent": 5239}}, {"model": "template.logicnode", "pk": 5241, "fields": {"state_transition": 1296, "node_type": "S", "subcondition": 13, "parent": 5243}}, {"model": "template.logicnode", "pk": 5242, "fields": {"state_transition": 1296, "node_type": "S", "subcondition": 25, "parent": 5243}}, {"model": "template.logicnode", "pk": 5243, "fields": {"state_transition": 1296, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5244, "fields": {"state_transition": 1297, "node_type": "N", "subcondition": null, "parent": 5247}}, {"model": "template.logicnode", "pk": 5245, "fields": {"state_transition": 1297, "node_type": "S", "subcondition": 23, "parent": 5244}}, {"model": "template.logicnode", "pk": 5246, "fields": {"state_transition": 1297, "node_type": "S", "subcondition": 13, "parent": 5247}}, {"model": "template.logicnode", "pk": 5247, "fields": {"state_transition": 1297, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5248, "fields": {"state_transition": 1298, "node_type": "N", "subcondition": null, "parent": 5252}}, {"model": "template.logicnode", "pk": 5249, "fields": {"state_transition": 1298, "node_type": "S", "subcondition": 23, "parent": 5248}}, {"model": "template.logicnode", "pk": 5250, "fields": {"state_transition": 1298, "node_type": "S", "subcondition": 17, "parent": 5252}}, {"model": "template.logicnode", "pk": 5251, "fields": {"state_transition": 1298, "node_type": "S", "subcondition": 25, "parent": 5252}}, {"model": "template.logicnode", "pk": 5252, "fields": {"state_transition": 1298, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5253, "fields": {"state_transition": 1299, "node_type": "N", "subcondition": null, "parent": 5256}}, {"model": "template.logicnode", "pk": 5254, "fields": {"state_transition": 1299, "node_type": "S", "subcondition": 23, "parent": 5253}}, {"model": "template.logicnode", "pk": 5255, "fields": {"state_transition": 1299, "node_type": "S", "subcondition": 17, "parent": 5256}}, {"model": "template.logicnode", "pk": 5256, "fields": {"state_transition": 1299, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5257, "fields": {"state_transition": 1300, "node_type": "N", "subcondition": null, "parent": 5260}}, {"model": "template.logicnode", "pk": 5258, "fields": {"state_transition": 1300, "node_type": "S", "subcondition": 23, "parent": 5257}}, {"model": "template.logicnode", "pk": 5259, "fields": {"state_transition": 1300, "node_type": "S", "subcondition": 25, "parent": 5260}}, {"model": "template.logicnode", "pk": 5260, "fields": {"state_transition": 1300, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5261, "fields": {"state_transition": 1301, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5262, "fields": {"state_transition": 1301, "node_type": "S", "subcondition": 23, "parent": 5261}}, {"model": "template.logicnode", "pk": 5263, "fields": {"state_transition": 1302, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5264, "fields": {"state_transition": 1303, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5265, "fields": {"state_transition": 1304, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5266, "fields": {"state_transition": 1305, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5267, "fields": {"state_transition": 1306, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5268, "fields": {"state_transition": 1307, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5269, "fields": {"state_transition": 1308, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5270, "fields": {"state_transition": 1309, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5271, "fields": {"state_transition": 1310, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5272, "fields": {"state_transition": 1311, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5273, "fields": {"state_transition": 1312, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5274, "fields": {"state_transition": 1313, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5275, "fields": {"state_transition": 1314, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5276, "fields": {"state_transition": 1315, "node_type": "N", "subcondition": null, "parent": 5280}}, {"model": "template.logicnode", "pk": 5277, "fields": {"state_transition": 1315, "node_type": "S", "subcondition": 23, "parent": 5276}}, {"model": "template.logicnode", "pk": 5278, "fields": {"state_transition": 1315, "node_type": "S", "subcondition": 11, "parent": 5280}}, {"model": "template.logicnode", "pk": 5279, "fields": {"state_transition": 1315, "node_type": "S", "subcondition": 17, "parent": 5280}}, {"model": "template.logicnode", "pk": 5280, "fields": {"state_transition": 1315, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5281, "fields": {"state_transition": 1316, "node_type": "N", "subcondition": null, "parent": 5284}}, {"model": "template.logicnode", "pk": 5282, "fields": {"state_transition": 1316, "node_type": "S", "subcondition": 23, "parent": 5281}}, {"model": "template.logicnode", "pk": 5283, "fields": {"state_transition": 1316, "node_type": "S", "subcondition": 11, "parent": 5284}}, {"model": "template.logicnode", "pk": 5284, "fields": {"state_transition": 1316, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5285, "fields": {"state_transition": 1317, "node_type": "N", "subcondition": null, "parent": 5288}}, {"model": "template.logicnode", "pk": 5286, "fields": {"state_transition": 1317, "node_type": "S", "subcondition": 23, "parent": 5285}}, {"model": "template.logicnode", "pk": 5287, "fields": {"state_transition": 1317, "node_type": "S", "subcondition": 17, "parent": 5288}}, {"model": "template.logicnode", "pk": 5288, "fields": {"state_transition": 1317, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5289, "fields": {"state_transition": 1318, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5290, "fields": {"state_transition": 1318, "node_type": "S", "subcondition": 23, "parent": 5289}}, {"model": "template.logicnode", "pk": 5291, "fields": {"state_transition": 1319, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5292, "fields": {"state_transition": 1320, "node_type": "N", "subcondition": null, "parent": 5296}}, {"model": "template.logicnode", "pk": 5293, "fields": {"state_transition": 1320, "node_type": "S", "subcondition": 23, "parent": 5292}}, {"model": "template.logicnode", "pk": 5294, "fields": {"state_transition": 1320, "node_type": "S", "subcondition": 11, "parent": 5296}}, {"model": "template.logicnode", "pk": 5295, "fields": {"state_transition": 1320, "node_type": "S", "subcondition": 17, "parent": 5296}}, {"model": "template.logicnode", "pk": 5296, "fields": {"state_transition": 1320, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5297, "fields": {"state_transition": 1321, "node_type": "N", "subcondition": null, "parent": 5300}}, {"model": "template.logicnode", "pk": 5298, "fields": {"state_transition": 1321, "node_type": "S", "subcondition": 23, "parent": 5297}}, {"model": "template.logicnode", "pk": 5299, "fields": {"state_transition": 1321, "node_type": "S", "subcondition": 11, "parent": 5300}}, {"model": "template.logicnode", "pk": 5300, "fields": {"state_transition": 1321, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5301, "fields": {"state_transition": 1322, "node_type": "N", "subcondition": null, "parent": 5304}}, {"model": "template.logicnode", "pk": 5302, "fields": {"state_transition": 1322, "node_type": "S", "subcondition": 23, "parent": 5301}}, {"model": "template.logicnode", "pk": 5303, "fields": {"state_transition": 1322, "node_type": "S", "subcondition": 17, "parent": 5304}}, {"model": "template.logicnode", "pk": 5304, "fields": {"state_transition": 1322, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5305, "fields": {"state_transition": 1323, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5306, "fields": {"state_transition": 1323, "node_type": "S", "subcondition": 23, "parent": 5305}}, {"model": "template.logicnode", "pk": 5307, "fields": {"state_transition": 1324, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5308, "fields": {"state_transition": 1325, "node_type": "N", "subcondition": null, "parent": 5312}}, {"model": "template.logicnode", "pk": 5309, "fields": {"state_transition": 1325, "node_type": "S", "subcondition": 23, "parent": 5308}}, {"model": "template.logicnode", "pk": 5310, "fields": {"state_transition": 1325, "node_type": "S", "subcondition": 11, "parent": 5312}}, {"model": "template.logicnode", "pk": 5311, "fields": {"state_transition": 1325, "node_type": "S", "subcondition": 17, "parent": 5312}}, {"model": "template.logicnode", "pk": 5312, "fields": {"state_transition": 1325, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5313, "fields": {"state_transition": 1326, "node_type": "N", "subcondition": null, "parent": 5316}}, {"model": "template.logicnode", "pk": 5314, "fields": {"state_transition": 1326, "node_type": "S", "subcondition": 23, "parent": 5313}}, {"model": "template.logicnode", "pk": 5315, "fields": {"state_transition": 1326, "node_type": "S", "subcondition": 11, "parent": 5316}}, {"model": "template.logicnode", "pk": 5316, "fields": {"state_transition": 1326, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5317, "fields": {"state_transition": 1327, "node_type": "N", "subcondition": null, "parent": 5320}}, {"model": "template.logicnode", "pk": 5318, "fields": {"state_transition": 1327, "node_type": "S", "subcondition": 23, "parent": 5317}}, {"model": "template.logicnode", "pk": 5319, "fields": {"state_transition": 1327, "node_type": "S", "subcondition": 17, "parent": 5320}}, {"model": "template.logicnode", "pk": 5320, "fields": {"state_transition": 1327, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5321, "fields": {"state_transition": 1328, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5322, "fields": {"state_transition": 1328, "node_type": "S", "subcondition": 23, "parent": 5321}}, {"model": "template.logicnode", "pk": 5323, "fields": {"state_transition": 1329, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5324, "fields": {"state_transition": 1330, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5325, "fields": {"state_transition": 1331, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5326, "fields": {"state_transition": 1332, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5327, "fields": {"state_transition": 1333, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5328, "fields": {"state_transition": 1334, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5329, "fields": {"state_transition": 1335, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5330, "fields": {"state_transition": 1336, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5331, "fields": {"state_transition": 1337, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5332, "fields": {"state_transition": 1338, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5333, "fields": {"state_transition": 1339, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5334, "fields": {"state_transition": 1340, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5335, "fields": {"state_transition": 1341, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5336, "fields": {"state_transition": 1342, "node_type": "N", "subcondition": null, "parent": 5342}}, {"model": "template.logicnode", "pk": 5337, "fields": {"state_transition": 1342, "node_type": "S", "subcondition": 23, "parent": 5336}}, {"model": "template.logicnode", "pk": 5338, "fields": {"state_transition": 1342, "node_type": "S", "subcondition": 11, "parent": 5342}}, {"model": "template.logicnode", "pk": 5339, "fields": {"state_transition": 1342, "node_type": "S", "subcondition": 13, "parent": 5342}}, {"model": "template.logicnode", "pk": 5340, "fields": {"state_transition": 1342, "node_type": "S", "subcondition": 17, "parent": 5342}}, {"model": "template.logicnode", "pk": 5341, "fields": {"state_transition": 1342, "node_type": "S", "subcondition": 25, "parent": 5342}}, {"model": "template.logicnode", "pk": 5342, "fields": {"state_transition": 1342, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5343, "fields": {"state_transition": 1343, "node_type": "N", "subcondition": null, "parent": 5348}}, {"model": "template.logicnode", "pk": 5344, "fields": {"state_transition": 1343, "node_type": "S", "subcondition": 23, "parent": 5343}}, {"model": "template.logicnode", "pk": 5345, "fields": {"state_transition": 1343, "node_type": "S", "subcondition": 11, "parent": 5348}}, {"model": "template.logicnode", "pk": 5346, "fields": {"state_transition": 1343, "node_type": "S", "subcondition": 13, "parent": 5348}}, {"model": "template.logicnode", "pk": 5347, "fields": {"state_transition": 1343, "node_type": "S", "subcondition": 17, "parent": 5348}}, {"model": "template.logicnode", "pk": 5348, "fields": {"state_transition": 1343, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5349, "fields": {"state_transition": 1344, "node_type": "N", "subcondition": null, "parent": 5354}}, {"model": "template.logicnode", "pk": 5350, "fields": {"state_transition": 1344, "node_type": "S", "subcondition": 23, "parent": 5349}}, {"model": "template.logicnode", "pk": 5351, "fields": {"state_transition": 1344, "node_type": "S", "subcondition": 11, "parent": 5354}}, {"model": "template.logicnode", "pk": 5352, "fields": {"state_transition": 1344, "node_type": "S", "subcondition": 13, "parent": 5354}}, {"model": "template.logicnode", "pk": 5353, "fields": {"state_transition": 1344, "node_type": "S", "subcondition": 25, "parent": 5354}}, {"model": "template.logicnode", "pk": 5354, "fields": {"state_transition": 1344, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5355, "fields": {"state_transition": 1345, "node_type": "N", "subcondition": null, "parent": 5359}}, {"model": "template.logicnode", "pk": 5356, "fields": {"state_transition": 1345, "node_type": "S", "subcondition": 23, "parent": 5355}}, {"model": "template.logicnode", "pk": 5357, "fields": {"state_transition": 1345, "node_type": "S", "subcondition": 11, "parent": 5359}}, {"model": "template.logicnode", "pk": 5358, "fields": {"state_transition": 1345, "node_type": "S", "subcondition": 13, "parent": 5359}}, {"model": "template.logicnode", "pk": 5359, "fields": {"state_transition": 1345, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5360, "fields": {"state_transition": 1346, "node_type": "N", "subcondition": null, "parent": 5365}}, {"model": "template.logicnode", "pk": 5361, "fields": {"state_transition": 1346, "node_type": "S", "subcondition": 23, "parent": 5360}}, {"model": "template.logicnode", "pk": 5362, "fields": {"state_transition": 1346, "node_type": "S", "subcondition": 11, "parent": 5365}}, {"model": "template.logicnode", "pk": 5363, "fields": {"state_transition": 1346, "node_type": "S", "subcondition": 17, "parent": 5365}}, {"model": "template.logicnode", "pk": 5364, "fields": {"state_transition": 1346, "node_type": "S", "subcondition": 25, "parent": 5365}}, {"model": "template.logicnode", "pk": 5365, "fields": {"state_transition": 1346, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5366, "fields": {"state_transition": 1347, "node_type": "N", "subcondition": null, "parent": 5370}}, {"model": "template.logicnode", "pk": 5367, "fields": {"state_transition": 1347, "node_type": "S", "subcondition": 23, "parent": 5366}}, {"model": "template.logicnode", "pk": 5368, "fields": {"state_transition": 1347, "node_type": "S", "subcondition": 11, "parent": 5370}}, {"model": "template.logicnode", "pk": 5369, "fields": {"state_transition": 1347, "node_type": "S", "subcondition": 17, "parent": 5370}}, {"model": "template.logicnode", "pk": 5370, "fields": {"state_transition": 1347, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5371, "fields": {"state_transition": 1348, "node_type": "N", "subcondition": null, "parent": 5375}}, {"model": "template.logicnode", "pk": 5372, "fields": {"state_transition": 1348, "node_type": "S", "subcondition": 23, "parent": 5371}}, {"model": "template.logicnode", "pk": 5373, "fields": {"state_transition": 1348, "node_type": "S", "subcondition": 11, "parent": 5375}}, {"model": "template.logicnode", "pk": 5374, "fields": {"state_transition": 1348, "node_type": "S", "subcondition": 25, "parent": 5375}}, {"model": "template.logicnode", "pk": 5375, "fields": {"state_transition": 1348, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5376, "fields": {"state_transition": 1349, "node_type": "N", "subcondition": null, "parent": 5379}}, {"model": "template.logicnode", "pk": 5377, "fields": {"state_transition": 1349, "node_type": "S", "subcondition": 23, "parent": 5376}}, {"model": "template.logicnode", "pk": 5378, "fields": {"state_transition": 1349, "node_type": "S", "subcondition": 11, "parent": 5379}}, {"model": "template.logicnode", "pk": 5379, "fields": {"state_transition": 1349, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5380, "fields": {"state_transition": 1350, "node_type": "N", "subcondition": null, "parent": 5385}}, {"model": "template.logicnode", "pk": 5381, "fields": {"state_transition": 1350, "node_type": "S", "subcondition": 23, "parent": 5380}}, {"model": "template.logicnode", "pk": 5382, "fields": {"state_transition": 1350, "node_type": "S", "subcondition": 13, "parent": 5385}}, {"model": "template.logicnode", "pk": 5383, "fields": {"state_transition": 1350, "node_type": "S", "subcondition": 17, "parent": 5385}}, {"model": "template.logicnode", "pk": 5384, "fields": {"state_transition": 1350, "node_type": "S", "subcondition": 25, "parent": 5385}}, {"model": "template.logicnode", "pk": 5385, "fields": {"state_transition": 1350, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5386, "fields": {"state_transition": 1351, "node_type": "N", "subcondition": null, "parent": 5390}}, {"model": "template.logicnode", "pk": 5387, "fields": {"state_transition": 1351, "node_type": "S", "subcondition": 23, "parent": 5386}}, {"model": "template.logicnode", "pk": 5388, "fields": {"state_transition": 1351, "node_type": "S", "subcondition": 13, "parent": 5390}}, {"model": "template.logicnode", "pk": 5389, "fields": {"state_transition": 1351, "node_type": "S", "subcondition": 17, "parent": 5390}}, {"model": "template.logicnode", "pk": 5390, "fields": {"state_transition": 1351, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5391, "fields": {"state_transition": 1352, "node_type": "N", "subcondition": null, "parent": 5395}}, {"model": "template.logicnode", "pk": 5392, "fields": {"state_transition": 1352, "node_type": "S", "subcondition": 23, "parent": 5391}}, {"model": "template.logicnode", "pk": 5393, "fields": {"state_transition": 1352, "node_type": "S", "subcondition": 13, "parent": 5395}}, {"model": "template.logicnode", "pk": 5394, "fields": {"state_transition": 1352, "node_type": "S", "subcondition": 25, "parent": 5395}}, {"model": "template.logicnode", "pk": 5395, "fields": {"state_transition": 1352, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5396, "fields": {"state_transition": 1353, "node_type": "N", "subcondition": null, "parent": 5399}}, {"model": "template.logicnode", "pk": 5397, "fields": {"state_transition": 1353, "node_type": "S", "subcondition": 23, "parent": 5396}}, {"model": "template.logicnode", "pk": 5398, "fields": {"state_transition": 1353, "node_type": "S", "subcondition": 13, "parent": 5399}}, {"model": "template.logicnode", "pk": 5399, "fields": {"state_transition": 1353, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5400, "fields": {"state_transition": 1354, "node_type": "N", "subcondition": null, "parent": 5404}}, {"model": "template.logicnode", "pk": 5401, "fields": {"state_transition": 1354, "node_type": "S", "subcondition": 23, "parent": 5400}}, {"model": "template.logicnode", "pk": 5402, "fields": {"state_transition": 1354, "node_type": "S", "subcondition": 17, "parent": 5404}}, {"model": "template.logicnode", "pk": 5403, "fields": {"state_transition": 1354, "node_type": "S", "subcondition": 25, "parent": 5404}}, {"model": "template.logicnode", "pk": 5404, "fields": {"state_transition": 1354, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5405, "fields": {"state_transition": 1355, "node_type": "N", "subcondition": null, "parent": 5408}}, {"model": "template.logicnode", "pk": 5406, "fields": {"state_transition": 1355, "node_type": "S", "subcondition": 23, "parent": 5405}}, {"model": "template.logicnode", "pk": 5407, "fields": {"state_transition": 1355, "node_type": "S", "subcondition": 17, "parent": 5408}}, {"model": "template.logicnode", "pk": 5408, "fields": {"state_transition": 1355, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5409, "fields": {"state_transition": 1356, "node_type": "N", "subcondition": null, "parent": 5412}}, {"model": "template.logicnode", "pk": 5410, "fields": {"state_transition": 1356, "node_type": "S", "subcondition": 23, "parent": 5409}}, {"model": "template.logicnode", "pk": 5411, "fields": {"state_transition": 1356, "node_type": "S", "subcondition": 25, "parent": 5412}}, {"model": "template.logicnode", "pk": 5412, "fields": {"state_transition": 1356, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5413, "fields": {"state_transition": 1357, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5414, "fields": {"state_transition": 1357, "node_type": "S", "subcondition": 23, "parent": 5413}}, {"model": "template.logicnode", "pk": 5415, "fields": {"state_transition": 1358, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5416, "fields": {"state_transition": 1359, "node_type": "N", "subcondition": null, "parent": 5422}}, {"model": "template.logicnode", "pk": 5417, "fields": {"state_transition": 1359, "node_type": "S", "subcondition": 23, "parent": 5416}}, {"model": "template.logicnode", "pk": 5418, "fields": {"state_transition": 1359, "node_type": "S", "subcondition": 11, "parent": 5422}}, {"model": "template.logicnode", "pk": 5419, "fields": {"state_transition": 1359, "node_type": "S", "subcondition": 13, "parent": 5422}}, {"model": "template.logicnode", "pk": 5420, "fields": {"state_transition": 1359, "node_type": "S", "subcondition": 17, "parent": 5422}}, {"model": "template.logicnode", "pk": 5421, "fields": {"state_transition": 1359, "node_type": "S", "subcondition": 25, "parent": 5422}}, {"model": "template.logicnode", "pk": 5422, "fields": {"state_transition": 1359, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5423, "fields": {"state_transition": 1360, "node_type": "N", "subcondition": null, "parent": 5428}}, {"model": "template.logicnode", "pk": 5424, "fields": {"state_transition": 1360, "node_type": "S", "subcondition": 23, "parent": 5423}}, {"model": "template.logicnode", "pk": 5425, "fields": {"state_transition": 1360, "node_type": "S", "subcondition": 11, "parent": 5428}}, {"model": "template.logicnode", "pk": 5426, "fields": {"state_transition": 1360, "node_type": "S", "subcondition": 13, "parent": 5428}}, {"model": "template.logicnode", "pk": 5427, "fields": {"state_transition": 1360, "node_type": "S", "subcondition": 17, "parent": 5428}}, {"model": "template.logicnode", "pk": 5428, "fields": {"state_transition": 1360, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5429, "fields": {"state_transition": 1361, "node_type": "N", "subcondition": null, "parent": 5434}}, {"model": "template.logicnode", "pk": 5430, "fields": {"state_transition": 1361, "node_type": "S", "subcondition": 23, "parent": 5429}}, {"model": "template.logicnode", "pk": 5431, "fields": {"state_transition": 1361, "node_type": "S", "subcondition": 11, "parent": 5434}}, {"model": "template.logicnode", "pk": 5432, "fields": {"state_transition": 1361, "node_type": "S", "subcondition": 13, "parent": 5434}}, {"model": "template.logicnode", "pk": 5433, "fields": {"state_transition": 1361, "node_type": "S", "subcondition": 25, "parent": 5434}}, {"model": "template.logicnode", "pk": 5434, "fields": {"state_transition": 1361, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5435, "fields": {"state_transition": 1362, "node_type": "N", "subcondition": null, "parent": 5439}}, {"model": "template.logicnode", "pk": 5436, "fields": {"state_transition": 1362, "node_type": "S", "subcondition": 23, "parent": 5435}}, {"model": "template.logicnode", "pk": 5437, "fields": {"state_transition": 1362, "node_type": "S", "subcondition": 11, "parent": 5439}}, {"model": "template.logicnode", "pk": 5438, "fields": {"state_transition": 1362, "node_type": "S", "subcondition": 13, "parent": 5439}}, {"model": "template.logicnode", "pk": 5439, "fields": {"state_transition": 1362, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5440, "fields": {"state_transition": 1363, "node_type": "N", "subcondition": null, "parent": 5445}}, {"model": "template.logicnode", "pk": 5441, "fields": {"state_transition": 1363, "node_type": "S", "subcondition": 23, "parent": 5440}}, {"model": "template.logicnode", "pk": 5442, "fields": {"state_transition": 1363, "node_type": "S", "subcondition": 11, "parent": 5445}}, {"model": "template.logicnode", "pk": 5443, "fields": {"state_transition": 1363, "node_type": "S", "subcondition": 17, "parent": 5445}}, {"model": "template.logicnode", "pk": 5444, "fields": {"state_transition": 1363, "node_type": "S", "subcondition": 25, "parent": 5445}}, {"model": "template.logicnode", "pk": 5445, "fields": {"state_transition": 1363, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5446, "fields": {"state_transition": 1364, "node_type": "N", "subcondition": null, "parent": 5450}}, {"model": "template.logicnode", "pk": 5447, "fields": {"state_transition": 1364, "node_type": "S", "subcondition": 23, "parent": 5446}}, {"model": "template.logicnode", "pk": 5448, "fields": {"state_transition": 1364, "node_type": "S", "subcondition": 11, "parent": 5450}}, {"model": "template.logicnode", "pk": 5449, "fields": {"state_transition": 1364, "node_type": "S", "subcondition": 17, "parent": 5450}}, {"model": "template.logicnode", "pk": 5450, "fields": {"state_transition": 1364, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5451, "fields": {"state_transition": 1365, "node_type": "N", "subcondition": null, "parent": 5455}}, {"model": "template.logicnode", "pk": 5452, "fields": {"state_transition": 1365, "node_type": "S", "subcondition": 23, "parent": 5451}}, {"model": "template.logicnode", "pk": 5453, "fields": {"state_transition": 1365, "node_type": "S", "subcondition": 11, "parent": 5455}}, {"model": "template.logicnode", "pk": 5454, "fields": {"state_transition": 1365, "node_type": "S", "subcondition": 25, "parent": 5455}}, {"model": "template.logicnode", "pk": 5455, "fields": {"state_transition": 1365, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5456, "fields": {"state_transition": 1366, "node_type": "N", "subcondition": null, "parent": 5459}}, {"model": "template.logicnode", "pk": 5457, "fields": {"state_transition": 1366, "node_type": "S", "subcondition": 23, "parent": 5456}}, {"model": "template.logicnode", "pk": 5458, "fields": {"state_transition": 1366, "node_type": "S", "subcondition": 11, "parent": 5459}}, {"model": "template.logicnode", "pk": 5459, "fields": {"state_transition": 1366, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5460, "fields": {"state_transition": 1367, "node_type": "N", "subcondition": null, "parent": 5465}}, {"model": "template.logicnode", "pk": 5461, "fields": {"state_transition": 1367, "node_type": "S", "subcondition": 23, "parent": 5460}}, {"model": "template.logicnode", "pk": 5462, "fields": {"state_transition": 1367, "node_type": "S", "subcondition": 13, "parent": 5465}}, {"model": "template.logicnode", "pk": 5463, "fields": {"state_transition": 1367, "node_type": "S", "subcondition": 17, "parent": 5465}}, {"model": "template.logicnode", "pk": 5464, "fields": {"state_transition": 1367, "node_type": "S", "subcondition": 25, "parent": 5465}}, {"model": "template.logicnode", "pk": 5465, "fields": {"state_transition": 1367, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5466, "fields": {"state_transition": 1368, "node_type": "N", "subcondition": null, "parent": 5470}}, {"model": "template.logicnode", "pk": 5467, "fields": {"state_transition": 1368, "node_type": "S", "subcondition": 23, "parent": 5466}}, {"model": "template.logicnode", "pk": 5468, "fields": {"state_transition": 1368, "node_type": "S", "subcondition": 13, "parent": 5470}}, {"model": "template.logicnode", "pk": 5469, "fields": {"state_transition": 1368, "node_type": "S", "subcondition": 17, "parent": 5470}}, {"model": "template.logicnode", "pk": 5470, "fields": {"state_transition": 1368, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5471, "fields": {"state_transition": 1369, "node_type": "N", "subcondition": null, "parent": 5475}}, {"model": "template.logicnode", "pk": 5472, "fields": {"state_transition": 1369, "node_type": "S", "subcondition": 23, "parent": 5471}}, {"model": "template.logicnode", "pk": 5473, "fields": {"state_transition": 1369, "node_type": "S", "subcondition": 13, "parent": 5475}}, {"model": "template.logicnode", "pk": 5474, "fields": {"state_transition": 1369, "node_type": "S", "subcondition": 25, "parent": 5475}}, {"model": "template.logicnode", "pk": 5475, "fields": {"state_transition": 1369, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5476, "fields": {"state_transition": 1370, "node_type": "N", "subcondition": null, "parent": 5479}}, {"model": "template.logicnode", "pk": 5477, "fields": {"state_transition": 1370, "node_type": "S", "subcondition": 23, "parent": 5476}}, {"model": "template.logicnode", "pk": 5478, "fields": {"state_transition": 1370, "node_type": "S", "subcondition": 13, "parent": 5479}}, {"model": "template.logicnode", "pk": 5479, "fields": {"state_transition": 1370, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5480, "fields": {"state_transition": 1371, "node_type": "N", "subcondition": null, "parent": 5484}}, {"model": "template.logicnode", "pk": 5481, "fields": {"state_transition": 1371, "node_type": "S", "subcondition": 23, "parent": 5480}}, {"model": "template.logicnode", "pk": 5482, "fields": {"state_transition": 1371, "node_type": "S", "subcondition": 17, "parent": 5484}}, {"model": "template.logicnode", "pk": 5483, "fields": {"state_transition": 1371, "node_type": "S", "subcondition": 25, "parent": 5484}}, {"model": "template.logicnode", "pk": 5484, "fields": {"state_transition": 1371, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5485, "fields": {"state_transition": 1372, "node_type": "N", "subcondition": null, "parent": 5488}}, {"model": "template.logicnode", "pk": 5486, "fields": {"state_transition": 1372, "node_type": "S", "subcondition": 23, "parent": 5485}}, {"model": "template.logicnode", "pk": 5487, "fields": {"state_transition": 1372, "node_type": "S", "subcondition": 17, "parent": 5488}}, {"model": "template.logicnode", "pk": 5488, "fields": {"state_transition": 1372, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5489, "fields": {"state_transition": 1373, "node_type": "N", "subcondition": null, "parent": 5492}}, {"model": "template.logicnode", "pk": 5490, "fields": {"state_transition": 1373, "node_type": "S", "subcondition": 23, "parent": 5489}}, {"model": "template.logicnode", "pk": 5491, "fields": {"state_transition": 1373, "node_type": "S", "subcondition": 25, "parent": 5492}}, {"model": "template.logicnode", "pk": 5492, "fields": {"state_transition": 1373, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5493, "fields": {"state_transition": 1374, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5494, "fields": {"state_transition": 1374, "node_type": "S", "subcondition": 23, "parent": 5493}}, {"model": "template.logicnode", "pk": 5495, "fields": {"state_transition": 1375, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5496, "fields": {"state_transition": 1376, "node_type": "N", "subcondition": null, "parent": 5502}}, {"model": "template.logicnode", "pk": 5497, "fields": {"state_transition": 1376, "node_type": "S", "subcondition": 23, "parent": 5496}}, {"model": "template.logicnode", "pk": 5498, "fields": {"state_transition": 1376, "node_type": "S", "subcondition": 11, "parent": 5502}}, {"model": "template.logicnode", "pk": 5499, "fields": {"state_transition": 1376, "node_type": "S", "subcondition": 13, "parent": 5502}}, {"model": "template.logicnode", "pk": 5500, "fields": {"state_transition": 1376, "node_type": "S", "subcondition": 17, "parent": 5502}}, {"model": "template.logicnode", "pk": 5501, "fields": {"state_transition": 1376, "node_type": "S", "subcondition": 25, "parent": 5502}}, {"model": "template.logicnode", "pk": 5502, "fields": {"state_transition": 1376, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5503, "fields": {"state_transition": 1377, "node_type": "N", "subcondition": null, "parent": 5508}}, {"model": "template.logicnode", "pk": 5504, "fields": {"state_transition": 1377, "node_type": "S", "subcondition": 23, "parent": 5503}}, {"model": "template.logicnode", "pk": 5505, "fields": {"state_transition": 1377, "node_type": "S", "subcondition": 11, "parent": 5508}}, {"model": "template.logicnode", "pk": 5506, "fields": {"state_transition": 1377, "node_type": "S", "subcondition": 13, "parent": 5508}}, {"model": "template.logicnode", "pk": 5507, "fields": {"state_transition": 1377, "node_type": "S", "subcondition": 17, "parent": 5508}}, {"model": "template.logicnode", "pk": 5508, "fields": {"state_transition": 1377, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5509, "fields": {"state_transition": 1378, "node_type": "N", "subcondition": null, "parent": 5514}}, {"model": "template.logicnode", "pk": 5510, "fields": {"state_transition": 1378, "node_type": "S", "subcondition": 23, "parent": 5509}}, {"model": "template.logicnode", "pk": 5511, "fields": {"state_transition": 1378, "node_type": "S", "subcondition": 11, "parent": 5514}}, {"model": "template.logicnode", "pk": 5512, "fields": {"state_transition": 1378, "node_type": "S", "subcondition": 13, "parent": 5514}}, {"model": "template.logicnode", "pk": 5513, "fields": {"state_transition": 1378, "node_type": "S", "subcondition": 25, "parent": 5514}}, {"model": "template.logicnode", "pk": 5514, "fields": {"state_transition": 1378, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5515, "fields": {"state_transition": 1379, "node_type": "N", "subcondition": null, "parent": 5519}}, {"model": "template.logicnode", "pk": 5516, "fields": {"state_transition": 1379, "node_type": "S", "subcondition": 23, "parent": 5515}}, {"model": "template.logicnode", "pk": 5517, "fields": {"state_transition": 1379, "node_type": "S", "subcondition": 11, "parent": 5519}}, {"model": "template.logicnode", "pk": 5518, "fields": {"state_transition": 1379, "node_type": "S", "subcondition": 13, "parent": 5519}}, {"model": "template.logicnode", "pk": 5519, "fields": {"state_transition": 1379, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5520, "fields": {"state_transition": 1380, "node_type": "N", "subcondition": null, "parent": 5525}}, {"model": "template.logicnode", "pk": 5521, "fields": {"state_transition": 1380, "node_type": "S", "subcondition": 23, "parent": 5520}}, {"model": "template.logicnode", "pk": 5522, "fields": {"state_transition": 1380, "node_type": "S", "subcondition": 11, "parent": 5525}}, {"model": "template.logicnode", "pk": 5523, "fields": {"state_transition": 1380, "node_type": "S", "subcondition": 17, "parent": 5525}}, {"model": "template.logicnode", "pk": 5524, "fields": {"state_transition": 1380, "node_type": "S", "subcondition": 25, "parent": 5525}}, {"model": "template.logicnode", "pk": 5525, "fields": {"state_transition": 1380, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5526, "fields": {"state_transition": 1381, "node_type": "N", "subcondition": null, "parent": 5530}}, {"model": "template.logicnode", "pk": 5527, "fields": {"state_transition": 1381, "node_type": "S", "subcondition": 23, "parent": 5526}}, {"model": "template.logicnode", "pk": 5528, "fields": {"state_transition": 1381, "node_type": "S", "subcondition": 11, "parent": 5530}}, {"model": "template.logicnode", "pk": 5529, "fields": {"state_transition": 1381, "node_type": "S", "subcondition": 17, "parent": 5530}}, {"model": "template.logicnode", "pk": 5530, "fields": {"state_transition": 1381, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5531, "fields": {"state_transition": 1382, "node_type": "N", "subcondition": null, "parent": 5535}}, {"model": "template.logicnode", "pk": 5532, "fields": {"state_transition": 1382, "node_type": "S", "subcondition": 23, "parent": 5531}}, {"model": "template.logicnode", "pk": 5533, "fields": {"state_transition": 1382, "node_type": "S", "subcondition": 11, "parent": 5535}}, {"model": "template.logicnode", "pk": 5534, "fields": {"state_transition": 1382, "node_type": "S", "subcondition": 25, "parent": 5535}}, {"model": "template.logicnode", "pk": 5535, "fields": {"state_transition": 1382, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5536, "fields": {"state_transition": 1383, "node_type": "N", "subcondition": null, "parent": 5539}}, {"model": "template.logicnode", "pk": 5537, "fields": {"state_transition": 1383, "node_type": "S", "subcondition": 23, "parent": 5536}}, {"model": "template.logicnode", "pk": 5538, "fields": {"state_transition": 1383, "node_type": "S", "subcondition": 11, "parent": 5539}}, {"model": "template.logicnode", "pk": 5539, "fields": {"state_transition": 1383, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5540, "fields": {"state_transition": 1384, "node_type": "N", "subcondition": null, "parent": 5545}}, {"model": "template.logicnode", "pk": 5541, "fields": {"state_transition": 1384, "node_type": "S", "subcondition": 23, "parent": 5540}}, {"model": "template.logicnode", "pk": 5542, "fields": {"state_transition": 1384, "node_type": "S", "subcondition": 13, "parent": 5545}}, {"model": "template.logicnode", "pk": 5543, "fields": {"state_transition": 1384, "node_type": "S", "subcondition": 17, "parent": 5545}}, {"model": "template.logicnode", "pk": 5544, "fields": {"state_transition": 1384, "node_type": "S", "subcondition": 25, "parent": 5545}}, {"model": "template.logicnode", "pk": 5545, "fields": {"state_transition": 1384, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5546, "fields": {"state_transition": 1385, "node_type": "N", "subcondition": null, "parent": 5550}}, {"model": "template.logicnode", "pk": 5547, "fields": {"state_transition": 1385, "node_type": "S", "subcondition": 23, "parent": 5546}}, {"model": "template.logicnode", "pk": 5548, "fields": {"state_transition": 1385, "node_type": "S", "subcondition": 13, "parent": 5550}}, {"model": "template.logicnode", "pk": 5549, "fields": {"state_transition": 1385, "node_type": "S", "subcondition": 17, "parent": 5550}}, {"model": "template.logicnode", "pk": 5550, "fields": {"state_transition": 1385, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5551, "fields": {"state_transition": 1386, "node_type": "N", "subcondition": null, "parent": 5555}}, {"model": "template.logicnode", "pk": 5552, "fields": {"state_transition": 1386, "node_type": "S", "subcondition": 23, "parent": 5551}}, {"model": "template.logicnode", "pk": 5553, "fields": {"state_transition": 1386, "node_type": "S", "subcondition": 13, "parent": 5555}}, {"model": "template.logicnode", "pk": 5554, "fields": {"state_transition": 1386, "node_type": "S", "subcondition": 25, "parent": 5555}}, {"model": "template.logicnode", "pk": 5555, "fields": {"state_transition": 1386, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5556, "fields": {"state_transition": 1387, "node_type": "N", "subcondition": null, "parent": 5559}}, {"model": "template.logicnode", "pk": 5557, "fields": {"state_transition": 1387, "node_type": "S", "subcondition": 23, "parent": 5556}}, {"model": "template.logicnode", "pk": 5558, "fields": {"state_transition": 1387, "node_type": "S", "subcondition": 13, "parent": 5559}}, {"model": "template.logicnode", "pk": 5559, "fields": {"state_transition": 1387, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5560, "fields": {"state_transition": 1388, "node_type": "N", "subcondition": null, "parent": 5564}}, {"model": "template.logicnode", "pk": 5561, "fields": {"state_transition": 1388, "node_type": "S", "subcondition": 23, "parent": 5560}}, {"model": "template.logicnode", "pk": 5562, "fields": {"state_transition": 1388, "node_type": "S", "subcondition": 17, "parent": 5564}}, {"model": "template.logicnode", "pk": 5563, "fields": {"state_transition": 1388, "node_type": "S", "subcondition": 25, "parent": 5564}}, {"model": "template.logicnode", "pk": 5564, "fields": {"state_transition": 1388, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5565, "fields": {"state_transition": 1389, "node_type": "N", "subcondition": null, "parent": 5568}}, {"model": "template.logicnode", "pk": 5566, "fields": {"state_transition": 1389, "node_type": "S", "subcondition": 23, "parent": 5565}}, {"model": "template.logicnode", "pk": 5567, "fields": {"state_transition": 1389, "node_type": "S", "subcondition": 17, "parent": 5568}}, {"model": "template.logicnode", "pk": 5568, "fields": {"state_transition": 1389, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5569, "fields": {"state_transition": 1390, "node_type": "N", "subcondition": null, "parent": 5572}}, {"model": "template.logicnode", "pk": 5570, "fields": {"state_transition": 1390, "node_type": "S", "subcondition": 23, "parent": 5569}}, {"model": "template.logicnode", "pk": 5571, "fields": {"state_transition": 1390, "node_type": "S", "subcondition": 25, "parent": 5572}}, {"model": "template.logicnode", "pk": 5572, "fields": {"state_transition": 1390, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5573, "fields": {"state_transition": 1391, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5574, "fields": {"state_transition": 1391, "node_type": "S", "subcondition": 23, "parent": 5573}}, {"model": "template.logicnode", "pk": 5575, "fields": {"state_transition": 1392, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5576, "fields": {"state_transition": 1393, "node_type": "N", "subcondition": null, "parent": 5582}}, {"model": "template.logicnode", "pk": 5577, "fields": {"state_transition": 1393, "node_type": "S", "subcondition": 23, "parent": 5576}}, {"model": "template.logicnode", "pk": 5578, "fields": {"state_transition": 1393, "node_type": "S", "subcondition": 11, "parent": 5582}}, {"model": "template.logicnode", "pk": 5579, "fields": {"state_transition": 1393, "node_type": "S", "subcondition": 13, "parent": 5582}}, {"model": "template.logicnode", "pk": 5580, "fields": {"state_transition": 1393, "node_type": "S", "subcondition": 17, "parent": 5582}}, {"model": "template.logicnode", "pk": 5581, "fields": {"state_transition": 1393, "node_type": "S", "subcondition": 25, "parent": 5582}}, {"model": "template.logicnode", "pk": 5582, "fields": {"state_transition": 1393, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5583, "fields": {"state_transition": 1394, "node_type": "N", "subcondition": null, "parent": 5588}}, {"model": "template.logicnode", "pk": 5584, "fields": {"state_transition": 1394, "node_type": "S", "subcondition": 23, "parent": 5583}}, {"model": "template.logicnode", "pk": 5585, "fields": {"state_transition": 1394, "node_type": "S", "subcondition": 11, "parent": 5588}}, {"model": "template.logicnode", "pk": 5586, "fields": {"state_transition": 1394, "node_type": "S", "subcondition": 13, "parent": 5588}}, {"model": "template.logicnode", "pk": 5587, "fields": {"state_transition": 1394, "node_type": "S", "subcondition": 17, "parent": 5588}}, {"model": "template.logicnode", "pk": 5588, "fields": {"state_transition": 1394, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5589, "fields": {"state_transition": 1395, "node_type": "N", "subcondition": null, "parent": 5594}}, {"model": "template.logicnode", "pk": 5590, "fields": {"state_transition": 1395, "node_type": "S", "subcondition": 23, "parent": 5589}}, {"model": "template.logicnode", "pk": 5591, "fields": {"state_transition": 1395, "node_type": "S", "subcondition": 11, "parent": 5594}}, {"model": "template.logicnode", "pk": 5592, "fields": {"state_transition": 1395, "node_type": "S", "subcondition": 13, "parent": 5594}}, {"model": "template.logicnode", "pk": 5593, "fields": {"state_transition": 1395, "node_type": "S", "subcondition": 25, "parent": 5594}}, {"model": "template.logicnode", "pk": 5594, "fields": {"state_transition": 1395, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5595, "fields": {"state_transition": 1396, "node_type": "N", "subcondition": null, "parent": 5599}}, {"model": "template.logicnode", "pk": 5596, "fields": {"state_transition": 1396, "node_type": "S", "subcondition": 23, "parent": 5595}}, {"model": "template.logicnode", "pk": 5597, "fields": {"state_transition": 1396, "node_type": "S", "subcondition": 11, "parent": 5599}}, {"model": "template.logicnode", "pk": 5598, "fields": {"state_transition": 1396, "node_type": "S", "subcondition": 13, "parent": 5599}}, {"model": "template.logicnode", "pk": 5599, "fields": {"state_transition": 1396, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5600, "fields": {"state_transition": 1397, "node_type": "N", "subcondition": null, "parent": 5605}}, {"model": "template.logicnode", "pk": 5601, "fields": {"state_transition": 1397, "node_type": "S", "subcondition": 23, "parent": 5600}}, {"model": "template.logicnode", "pk": 5602, "fields": {"state_transition": 1397, "node_type": "S", "subcondition": 11, "parent": 5605}}, {"model": "template.logicnode", "pk": 5603, "fields": {"state_transition": 1397, "node_type": "S", "subcondition": 17, "parent": 5605}}, {"model": "template.logicnode", "pk": 5604, "fields": {"state_transition": 1397, "node_type": "S", "subcondition": 25, "parent": 5605}}, {"model": "template.logicnode", "pk": 5605, "fields": {"state_transition": 1397, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5606, "fields": {"state_transition": 1398, "node_type": "N", "subcondition": null, "parent": 5610}}, {"model": "template.logicnode", "pk": 5607, "fields": {"state_transition": 1398, "node_type": "S", "subcondition": 23, "parent": 5606}}, {"model": "template.logicnode", "pk": 5608, "fields": {"state_transition": 1398, "node_type": "S", "subcondition": 11, "parent": 5610}}, {"model": "template.logicnode", "pk": 5609, "fields": {"state_transition": 1398, "node_type": "S", "subcondition": 17, "parent": 5610}}, {"model": "template.logicnode", "pk": 5610, "fields": {"state_transition": 1398, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5611, "fields": {"state_transition": 1399, "node_type": "N", "subcondition": null, "parent": 5615}}, {"model": "template.logicnode", "pk": 5612, "fields": {"state_transition": 1399, "node_type": "S", "subcondition": 23, "parent": 5611}}, {"model": "template.logicnode", "pk": 5613, "fields": {"state_transition": 1399, "node_type": "S", "subcondition": 11, "parent": 5615}}, {"model": "template.logicnode", "pk": 5614, "fields": {"state_transition": 1399, "node_type": "S", "subcondition": 25, "parent": 5615}}, {"model": "template.logicnode", "pk": 5615, "fields": {"state_transition": 1399, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5616, "fields": {"state_transition": 1400, "node_type": "N", "subcondition": null, "parent": 5619}}, {"model": "template.logicnode", "pk": 5617, "fields": {"state_transition": 1400, "node_type": "S", "subcondition": 23, "parent": 5616}}, {"model": "template.logicnode", "pk": 5618, "fields": {"state_transition": 1400, "node_type": "S", "subcondition": 11, "parent": 5619}}, {"model": "template.logicnode", "pk": 5619, "fields": {"state_transition": 1400, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5620, "fields": {"state_transition": 1401, "node_type": "N", "subcondition": null, "parent": 5625}}, {"model": "template.logicnode", "pk": 5621, "fields": {"state_transition": 1401, "node_type": "S", "subcondition": 23, "parent": 5620}}, {"model": "template.logicnode", "pk": 5622, "fields": {"state_transition": 1401, "node_type": "S", "subcondition": 13, "parent": 5625}}, {"model": "template.logicnode", "pk": 5623, "fields": {"state_transition": 1401, "node_type": "S", "subcondition": 17, "parent": 5625}}, {"model": "template.logicnode", "pk": 5624, "fields": {"state_transition": 1401, "node_type": "S", "subcondition": 25, "parent": 5625}}, {"model": "template.logicnode", "pk": 5625, "fields": {"state_transition": 1401, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5626, "fields": {"state_transition": 1402, "node_type": "N", "subcondition": null, "parent": 5630}}, {"model": "template.logicnode", "pk": 5627, "fields": {"state_transition": 1402, "node_type": "S", "subcondition": 23, "parent": 5626}}, {"model": "template.logicnode", "pk": 5628, "fields": {"state_transition": 1402, "node_type": "S", "subcondition": 13, "parent": 5630}}, {"model": "template.logicnode", "pk": 5629, "fields": {"state_transition": 1402, "node_type": "S", "subcondition": 17, "parent": 5630}}, {"model": "template.logicnode", "pk": 5630, "fields": {"state_transition": 1402, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5631, "fields": {"state_transition": 1403, "node_type": "N", "subcondition": null, "parent": 5635}}, {"model": "template.logicnode", "pk": 5632, "fields": {"state_transition": 1403, "node_type": "S", "subcondition": 23, "parent": 5631}}, {"model": "template.logicnode", "pk": 5633, "fields": {"state_transition": 1403, "node_type": "S", "subcondition": 13, "parent": 5635}}, {"model": "template.logicnode", "pk": 5634, "fields": {"state_transition": 1403, "node_type": "S", "subcondition": 25, "parent": 5635}}, {"model": "template.logicnode", "pk": 5635, "fields": {"state_transition": 1403, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5636, "fields": {"state_transition": 1404, "node_type": "N", "subcondition": null, "parent": 5639}}, {"model": "template.logicnode", "pk": 5637, "fields": {"state_transition": 1404, "node_type": "S", "subcondition": 23, "parent": 5636}}, {"model": "template.logicnode", "pk": 5638, "fields": {"state_transition": 1404, "node_type": "S", "subcondition": 13, "parent": 5639}}, {"model": "template.logicnode", "pk": 5639, "fields": {"state_transition": 1404, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5640, "fields": {"state_transition": 1405, "node_type": "N", "subcondition": null, "parent": 5644}}, {"model": "template.logicnode", "pk": 5641, "fields": {"state_transition": 1405, "node_type": "S", "subcondition": 23, "parent": 5640}}, {"model": "template.logicnode", "pk": 5642, "fields": {"state_transition": 1405, "node_type": "S", "subcondition": 17, "parent": 5644}}, {"model": "template.logicnode", "pk": 5643, "fields": {"state_transition": 1405, "node_type": "S", "subcondition": 25, "parent": 5644}}, {"model": "template.logicnode", "pk": 5644, "fields": {"state_transition": 1405, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5645, "fields": {"state_transition": 1406, "node_type": "N", "subcondition": null, "parent": 5648}}, {"model": "template.logicnode", "pk": 5646, "fields": {"state_transition": 1406, "node_type": "S", "subcondition": 23, "parent": 5645}}, {"model": "template.logicnode", "pk": 5647, "fields": {"state_transition": 1406, "node_type": "S", "subcondition": 17, "parent": 5648}}, {"model": "template.logicnode", "pk": 5648, "fields": {"state_transition": 1406, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5649, "fields": {"state_transition": 1407, "node_type": "N", "subcondition": null, "parent": 5652}}, {"model": "template.logicnode", "pk": 5650, "fields": {"state_transition": 1407, "node_type": "S", "subcondition": 23, "parent": 5649}}, {"model": "template.logicnode", "pk": 5651, "fields": {"state_transition": 1407, "node_type": "S", "subcondition": 25, "parent": 5652}}, {"model": "template.logicnode", "pk": 5652, "fields": {"state_transition": 1407, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5653, "fields": {"state_transition": 1408, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5654, "fields": {"state_transition": 1408, "node_type": "S", "subcondition": 23, "parent": 5653}}, {"model": "template.logicnode", "pk": 5655, "fields": {"state_transition": 1409, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5656, "fields": {"state_transition": 1410, "node_type": "N", "subcondition": null, "parent": 5662}}, {"model": "template.logicnode", "pk": 5657, "fields": {"state_transition": 1410, "node_type": "S", "subcondition": 23, "parent": 5656}}, {"model": "template.logicnode", "pk": 5658, "fields": {"state_transition": 1410, "node_type": "S", "subcondition": 11, "parent": 5662}}, {"model": "template.logicnode", "pk": 5659, "fields": {"state_transition": 1410, "node_type": "S", "subcondition": 13, "parent": 5662}}, {"model": "template.logicnode", "pk": 5660, "fields": {"state_transition": 1410, "node_type": "S", "subcondition": 17, "parent": 5662}}, {"model": "template.logicnode", "pk": 5661, "fields": {"state_transition": 1410, "node_type": "S", "subcondition": 25, "parent": 5662}}, {"model": "template.logicnode", "pk": 5662, "fields": {"state_transition": 1410, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5663, "fields": {"state_transition": 1411, "node_type": "N", "subcondition": null, "parent": 5668}}, {"model": "template.logicnode", "pk": 5664, "fields": {"state_transition": 1411, "node_type": "S", "subcondition": 23, "parent": 5663}}, {"model": "template.logicnode", "pk": 5665, "fields": {"state_transition": 1411, "node_type": "S", "subcondition": 11, "parent": 5668}}, {"model": "template.logicnode", "pk": 5666, "fields": {"state_transition": 1411, "node_type": "S", "subcondition": 13, "parent": 5668}}, {"model": "template.logicnode", "pk": 5667, "fields": {"state_transition": 1411, "node_type": "S", "subcondition": 17, "parent": 5668}}, {"model": "template.logicnode", "pk": 5668, "fields": {"state_transition": 1411, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5669, "fields": {"state_transition": 1412, "node_type": "N", "subcondition": null, "parent": 5674}}, {"model": "template.logicnode", "pk": 5670, "fields": {"state_transition": 1412, "node_type": "S", "subcondition": 23, "parent": 5669}}, {"model": "template.logicnode", "pk": 5671, "fields": {"state_transition": 1412, "node_type": "S", "subcondition": 11, "parent": 5674}}, {"model": "template.logicnode", "pk": 5672, "fields": {"state_transition": 1412, "node_type": "S", "subcondition": 13, "parent": 5674}}, {"model": "template.logicnode", "pk": 5673, "fields": {"state_transition": 1412, "node_type": "S", "subcondition": 25, "parent": 5674}}, {"model": "template.logicnode", "pk": 5674, "fields": {"state_transition": 1412, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5675, "fields": {"state_transition": 1413, "node_type": "N", "subcondition": null, "parent": 5679}}, {"model": "template.logicnode", "pk": 5676, "fields": {"state_transition": 1413, "node_type": "S", "subcondition": 23, "parent": 5675}}, {"model": "template.logicnode", "pk": 5677, "fields": {"state_transition": 1413, "node_type": "S", "subcondition": 11, "parent": 5679}}, {"model": "template.logicnode", "pk": 5678, "fields": {"state_transition": 1413, "node_type": "S", "subcondition": 13, "parent": 5679}}, {"model": "template.logicnode", "pk": 5679, "fields": {"state_transition": 1413, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5680, "fields": {"state_transition": 1414, "node_type": "N", "subcondition": null, "parent": 5685}}, {"model": "template.logicnode", "pk": 5681, "fields": {"state_transition": 1414, "node_type": "S", "subcondition": 23, "parent": 5680}}, {"model": "template.logicnode", "pk": 5682, "fields": {"state_transition": 1414, "node_type": "S", "subcondition": 11, "parent": 5685}}, {"model": "template.logicnode", "pk": 5683, "fields": {"state_transition": 1414, "node_type": "S", "subcondition": 17, "parent": 5685}}, {"model": "template.logicnode", "pk": 5684, "fields": {"state_transition": 1414, "node_type": "S", "subcondition": 25, "parent": 5685}}, {"model": "template.logicnode", "pk": 5685, "fields": {"state_transition": 1414, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5686, "fields": {"state_transition": 1415, "node_type": "N", "subcondition": null, "parent": 5690}}, {"model": "template.logicnode", "pk": 5687, "fields": {"state_transition": 1415, "node_type": "S", "subcondition": 23, "parent": 5686}}, {"model": "template.logicnode", "pk": 5688, "fields": {"state_transition": 1415, "node_type": "S", "subcondition": 11, "parent": 5690}}, {"model": "template.logicnode", "pk": 5689, "fields": {"state_transition": 1415, "node_type": "S", "subcondition": 17, "parent": 5690}}, {"model": "template.logicnode", "pk": 5690, "fields": {"state_transition": 1415, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5691, "fields": {"state_transition": 1416, "node_type": "N", "subcondition": null, "parent": 5695}}, {"model": "template.logicnode", "pk": 5692, "fields": {"state_transition": 1416, "node_type": "S", "subcondition": 23, "parent": 5691}}, {"model": "template.logicnode", "pk": 5693, "fields": {"state_transition": 1416, "node_type": "S", "subcondition": 11, "parent": 5695}}, {"model": "template.logicnode", "pk": 5694, "fields": {"state_transition": 1416, "node_type": "S", "subcondition": 25, "parent": 5695}}, {"model": "template.logicnode", "pk": 5695, "fields": {"state_transition": 1416, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5696, "fields": {"state_transition": 1417, "node_type": "N", "subcondition": null, "parent": 5699}}, {"model": "template.logicnode", "pk": 5697, "fields": {"state_transition": 1417, "node_type": "S", "subcondition": 23, "parent": 5696}}, {"model": "template.logicnode", "pk": 5698, "fields": {"state_transition": 1417, "node_type": "S", "subcondition": 11, "parent": 5699}}, {"model": "template.logicnode", "pk": 5699, "fields": {"state_transition": 1417, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5700, "fields": {"state_transition": 1418, "node_type": "N", "subcondition": null, "parent": 5705}}, {"model": "template.logicnode", "pk": 5701, "fields": {"state_transition": 1418, "node_type": "S", "subcondition": 23, "parent": 5700}}, {"model": "template.logicnode", "pk": 5702, "fields": {"state_transition": 1418, "node_type": "S", "subcondition": 13, "parent": 5705}}, {"model": "template.logicnode", "pk": 5703, "fields": {"state_transition": 1418, "node_type": "S", "subcondition": 17, "parent": 5705}}, {"model": "template.logicnode", "pk": 5704, "fields": {"state_transition": 1418, "node_type": "S", "subcondition": 25, "parent": 5705}}, {"model": "template.logicnode", "pk": 5705, "fields": {"state_transition": 1418, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5706, "fields": {"state_transition": 1419, "node_type": "N", "subcondition": null, "parent": 5710}}, {"model": "template.logicnode", "pk": 5707, "fields": {"state_transition": 1419, "node_type": "S", "subcondition": 23, "parent": 5706}}, {"model": "template.logicnode", "pk": 5708, "fields": {"state_transition": 1419, "node_type": "S", "subcondition": 13, "parent": 5710}}, {"model": "template.logicnode", "pk": 5709, "fields": {"state_transition": 1419, "node_type": "S", "subcondition": 17, "parent": 5710}}, {"model": "template.logicnode", "pk": 5710, "fields": {"state_transition": 1419, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5711, "fields": {"state_transition": 1420, "node_type": "N", "subcondition": null, "parent": 5715}}, {"model": "template.logicnode", "pk": 5712, "fields": {"state_transition": 1420, "node_type": "S", "subcondition": 23, "parent": 5711}}, {"model": "template.logicnode", "pk": 5713, "fields": {"state_transition": 1420, "node_type": "S", "subcondition": 13, "parent": 5715}}, {"model": "template.logicnode", "pk": 5714, "fields": {"state_transition": 1420, "node_type": "S", "subcondition": 25, "parent": 5715}}, {"model": "template.logicnode", "pk": 5715, "fields": {"state_transition": 1420, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5716, "fields": {"state_transition": 1421, "node_type": "N", "subcondition": null, "parent": 5719}}, {"model": "template.logicnode", "pk": 5717, "fields": {"state_transition": 1421, "node_type": "S", "subcondition": 23, "parent": 5716}}, {"model": "template.logicnode", "pk": 5718, "fields": {"state_transition": 1421, "node_type": "S", "subcondition": 13, "parent": 5719}}, {"model": "template.logicnode", "pk": 5719, "fields": {"state_transition": 1421, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5720, "fields": {"state_transition": 1422, "node_type": "N", "subcondition": null, "parent": 5724}}, {"model": "template.logicnode", "pk": 5721, "fields": {"state_transition": 1422, "node_type": "S", "subcondition": 23, "parent": 5720}}, {"model": "template.logicnode", "pk": 5722, "fields": {"state_transition": 1422, "node_type": "S", "subcondition": 17, "parent": 5724}}, {"model": "template.logicnode", "pk": 5723, "fields": {"state_transition": 1422, "node_type": "S", "subcondition": 25, "parent": 5724}}, {"model": "template.logicnode", "pk": 5724, "fields": {"state_transition": 1422, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5725, "fields": {"state_transition": 1423, "node_type": "N", "subcondition": null, "parent": 5728}}, {"model": "template.logicnode", "pk": 5726, "fields": {"state_transition": 1423, "node_type": "S", "subcondition": 23, "parent": 5725}}, {"model": "template.logicnode", "pk": 5727, "fields": {"state_transition": 1423, "node_type": "S", "subcondition": 17, "parent": 5728}}, {"model": "template.logicnode", "pk": 5728, "fields": {"state_transition": 1423, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5729, "fields": {"state_transition": 1424, "node_type": "N", "subcondition": null, "parent": 5732}}, {"model": "template.logicnode", "pk": 5730, "fields": {"state_transition": 1424, "node_type": "S", "subcondition": 23, "parent": 5729}}, {"model": "template.logicnode", "pk": 5731, "fields": {"state_transition": 1424, "node_type": "S", "subcondition": 25, "parent": 5732}}, {"model": "template.logicnode", "pk": 5732, "fields": {"state_transition": 1424, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5733, "fields": {"state_transition": 1425, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5734, "fields": {"state_transition": 1425, "node_type": "S", "subcondition": 23, "parent": 5733}}, {"model": "template.logicnode", "pk": 5735, "fields": {"state_transition": 1426, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5736, "fields": {"state_transition": 1427, "node_type": "N", "subcondition": null, "parent": 5742}}, {"model": "template.logicnode", "pk": 5737, "fields": {"state_transition": 1427, "node_type": "S", "subcondition": 23, "parent": 5736}}, {"model": "template.logicnode", "pk": 5738, "fields": {"state_transition": 1427, "node_type": "S", "subcondition": 11, "parent": 5742}}, {"model": "template.logicnode", "pk": 5739, "fields": {"state_transition": 1427, "node_type": "S", "subcondition": 13, "parent": 5742}}, {"model": "template.logicnode", "pk": 5740, "fields": {"state_transition": 1427, "node_type": "S", "subcondition": 17, "parent": 5742}}, {"model": "template.logicnode", "pk": 5741, "fields": {"state_transition": 1427, "node_type": "S", "subcondition": 25, "parent": 5742}}, {"model": "template.logicnode", "pk": 5742, "fields": {"state_transition": 1427, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5743, "fields": {"state_transition": 1428, "node_type": "N", "subcondition": null, "parent": 5748}}, {"model": "template.logicnode", "pk": 5744, "fields": {"state_transition": 1428, "node_type": "S", "subcondition": 23, "parent": 5743}}, {"model": "template.logicnode", "pk": 5745, "fields": {"state_transition": 1428, "node_type": "S", "subcondition": 11, "parent": 5748}}, {"model": "template.logicnode", "pk": 5746, "fields": {"state_transition": 1428, "node_type": "S", "subcondition": 13, "parent": 5748}}, {"model": "template.logicnode", "pk": 5747, "fields": {"state_transition": 1428, "node_type": "S", "subcondition": 17, "parent": 5748}}, {"model": "template.logicnode", "pk": 5748, "fields": {"state_transition": 1428, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5749, "fields": {"state_transition": 1429, "node_type": "N", "subcondition": null, "parent": 5754}}, {"model": "template.logicnode", "pk": 5750, "fields": {"state_transition": 1429, "node_type": "S", "subcondition": 23, "parent": 5749}}, {"model": "template.logicnode", "pk": 5751, "fields": {"state_transition": 1429, "node_type": "S", "subcondition": 11, "parent": 5754}}, {"model": "template.logicnode", "pk": 5752, "fields": {"state_transition": 1429, "node_type": "S", "subcondition": 13, "parent": 5754}}, {"model": "template.logicnode", "pk": 5753, "fields": {"state_transition": 1429, "node_type": "S", "subcondition": 25, "parent": 5754}}, {"model": "template.logicnode", "pk": 5754, "fields": {"state_transition": 1429, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5755, "fields": {"state_transition": 1430, "node_type": "N", "subcondition": null, "parent": 5759}}, {"model": "template.logicnode", "pk": 5756, "fields": {"state_transition": 1430, "node_type": "S", "subcondition": 23, "parent": 5755}}, {"model": "template.logicnode", "pk": 5757, "fields": {"state_transition": 1430, "node_type": "S", "subcondition": 11, "parent": 5759}}, {"model": "template.logicnode", "pk": 5758, "fields": {"state_transition": 1430, "node_type": "S", "subcondition": 13, "parent": 5759}}, {"model": "template.logicnode", "pk": 5759, "fields": {"state_transition": 1430, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5760, "fields": {"state_transition": 1431, "node_type": "N", "subcondition": null, "parent": 5765}}, {"model": "template.logicnode", "pk": 5761, "fields": {"state_transition": 1431, "node_type": "S", "subcondition": 23, "parent": 5760}}, {"model": "template.logicnode", "pk": 5762, "fields": {"state_transition": 1431, "node_type": "S", "subcondition": 11, "parent": 5765}}, {"model": "template.logicnode", "pk": 5763, "fields": {"state_transition": 1431, "node_type": "S", "subcondition": 17, "parent": 5765}}, {"model": "template.logicnode", "pk": 5764, "fields": {"state_transition": 1431, "node_type": "S", "subcondition": 25, "parent": 5765}}, {"model": "template.logicnode", "pk": 5765, "fields": {"state_transition": 1431, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5766, "fields": {"state_transition": 1432, "node_type": "N", "subcondition": null, "parent": 5770}}, {"model": "template.logicnode", "pk": 5767, "fields": {"state_transition": 1432, "node_type": "S", "subcondition": 23, "parent": 5766}}, {"model": "template.logicnode", "pk": 5768, "fields": {"state_transition": 1432, "node_type": "S", "subcondition": 11, "parent": 5770}}, {"model": "template.logicnode", "pk": 5769, "fields": {"state_transition": 1432, "node_type": "S", "subcondition": 17, "parent": 5770}}, {"model": "template.logicnode", "pk": 5770, "fields": {"state_transition": 1432, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5771, "fields": {"state_transition": 1433, "node_type": "N", "subcondition": null, "parent": 5775}}, {"model": "template.logicnode", "pk": 5772, "fields": {"state_transition": 1433, "node_type": "S", "subcondition": 23, "parent": 5771}}, {"model": "template.logicnode", "pk": 5773, "fields": {"state_transition": 1433, "node_type": "S", "subcondition": 11, "parent": 5775}}, {"model": "template.logicnode", "pk": 5774, "fields": {"state_transition": 1433, "node_type": "S", "subcondition": 25, "parent": 5775}}, {"model": "template.logicnode", "pk": 5775, "fields": {"state_transition": 1433, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5776, "fields": {"state_transition": 1434, "node_type": "N", "subcondition": null, "parent": 5779}}, {"model": "template.logicnode", "pk": 5777, "fields": {"state_transition": 1434, "node_type": "S", "subcondition": 23, "parent": 5776}}, {"model": "template.logicnode", "pk": 5778, "fields": {"state_transition": 1434, "node_type": "S", "subcondition": 11, "parent": 5779}}, {"model": "template.logicnode", "pk": 5779, "fields": {"state_transition": 1434, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5780, "fields": {"state_transition": 1435, "node_type": "N", "subcondition": null, "parent": 5785}}, {"model": "template.logicnode", "pk": 5781, "fields": {"state_transition": 1435, "node_type": "S", "subcondition": 23, "parent": 5780}}, {"model": "template.logicnode", "pk": 5782, "fields": {"state_transition": 1435, "node_type": "S", "subcondition": 13, "parent": 5785}}, {"model": "template.logicnode", "pk": 5783, "fields": {"state_transition": 1435, "node_type": "S", "subcondition": 17, "parent": 5785}}, {"model": "template.logicnode", "pk": 5784, "fields": {"state_transition": 1435, "node_type": "S", "subcondition": 25, "parent": 5785}}, {"model": "template.logicnode", "pk": 5785, "fields": {"state_transition": 1435, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5786, "fields": {"state_transition": 1436, "node_type": "N", "subcondition": null, "parent": 5790}}, {"model": "template.logicnode", "pk": 5787, "fields": {"state_transition": 1436, "node_type": "S", "subcondition": 23, "parent": 5786}}, {"model": "template.logicnode", "pk": 5788, "fields": {"state_transition": 1436, "node_type": "S", "subcondition": 13, "parent": 5790}}, {"model": "template.logicnode", "pk": 5789, "fields": {"state_transition": 1436, "node_type": "S", "subcondition": 17, "parent": 5790}}, {"model": "template.logicnode", "pk": 5790, "fields": {"state_transition": 1436, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5791, "fields": {"state_transition": 1437, "node_type": "N", "subcondition": null, "parent": 5795}}, {"model": "template.logicnode", "pk": 5792, "fields": {"state_transition": 1437, "node_type": "S", "subcondition": 23, "parent": 5791}}, {"model": "template.logicnode", "pk": 5793, "fields": {"state_transition": 1437, "node_type": "S", "subcondition": 13, "parent": 5795}}, {"model": "template.logicnode", "pk": 5794, "fields": {"state_transition": 1437, "node_type": "S", "subcondition": 25, "parent": 5795}}, {"model": "template.logicnode", "pk": 5795, "fields": {"state_transition": 1437, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5796, "fields": {"state_transition": 1438, "node_type": "N", "subcondition": null, "parent": 5799}}, {"model": "template.logicnode", "pk": 5797, "fields": {"state_transition": 1438, "node_type": "S", "subcondition": 23, "parent": 5796}}, {"model": "template.logicnode", "pk": 5798, "fields": {"state_transition": 1438, "node_type": "S", "subcondition": 13, "parent": 5799}}, {"model": "template.logicnode", "pk": 5799, "fields": {"state_transition": 1438, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5800, "fields": {"state_transition": 1439, "node_type": "N", "subcondition": null, "parent": 5804}}, {"model": "template.logicnode", "pk": 5801, "fields": {"state_transition": 1439, "node_type": "S", "subcondition": 23, "parent": 5800}}, {"model": "template.logicnode", "pk": 5802, "fields": {"state_transition": 1439, "node_type": "S", "subcondition": 17, "parent": 5804}}, {"model": "template.logicnode", "pk": 5803, "fields": {"state_transition": 1439, "node_type": "S", "subcondition": 25, "parent": 5804}}, {"model": "template.logicnode", "pk": 5804, "fields": {"state_transition": 1439, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5805, "fields": {"state_transition": 1440, "node_type": "N", "subcondition": null, "parent": 5808}}, {"model": "template.logicnode", "pk": 5806, "fields": {"state_transition": 1440, "node_type": "S", "subcondition": 23, "parent": 5805}}, {"model": "template.logicnode", "pk": 5807, "fields": {"state_transition": 1440, "node_type": "S", "subcondition": 17, "parent": 5808}}, {"model": "template.logicnode", "pk": 5808, "fields": {"state_transition": 1440, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5809, "fields": {"state_transition": 1441, "node_type": "N", "subcondition": null, "parent": 5812}}, {"model": "template.logicnode", "pk": 5810, "fields": {"state_transition": 1441, "node_type": "S", "subcondition": 23, "parent": 5809}}, {"model": "template.logicnode", "pk": 5811, "fields": {"state_transition": 1441, "node_type": "S", "subcondition": 25, "parent": 5812}}, {"model": "template.logicnode", "pk": 5812, "fields": {"state_transition": 1441, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5813, "fields": {"state_transition": 1442, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5814, "fields": {"state_transition": 1442, "node_type": "S", "subcondition": 23, "parent": 5813}}, {"model": "template.logicnode", "pk": 5815, "fields": {"state_transition": 1443, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5816, "fields": {"state_transition": 1444, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5817, "fields": {"state_transition": 1445, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5818, "fields": {"state_transition": 1446, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5819, "fields": {"state_transition": 1447, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5820, "fields": {"state_transition": 1448, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5821, "fields": {"state_transition": 1449, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5822, "fields": {"state_transition": 1450, "node_type": "N", "subcondition": null, "parent": 5828}}, {"model": "template.logicnode", "pk": 5823, "fields": {"state_transition": 1450, "node_type": "S", "subcondition": 23, "parent": 5822}}, {"model": "template.logicnode", "pk": 5824, "fields": {"state_transition": 1450, "node_type": "S", "subcondition": 11, "parent": 5828}}, {"model": "template.logicnode", "pk": 5825, "fields": {"state_transition": 1450, "node_type": "S", "subcondition": 13, "parent": 5828}}, {"model": "template.logicnode", "pk": 5826, "fields": {"state_transition": 1450, "node_type": "S", "subcondition": 17, "parent": 5828}}, {"model": "template.logicnode", "pk": 5827, "fields": {"state_transition": 1450, "node_type": "S", "subcondition": 25, "parent": 5828}}, {"model": "template.logicnode", "pk": 5828, "fields": {"state_transition": 1450, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5829, "fields": {"state_transition": 1451, "node_type": "N", "subcondition": null, "parent": 5834}}, {"model": "template.logicnode", "pk": 5830, "fields": {"state_transition": 1451, "node_type": "S", "subcondition": 23, "parent": 5829}}, {"model": "template.logicnode", "pk": 5831, "fields": {"state_transition": 1451, "node_type": "S", "subcondition": 11, "parent": 5834}}, {"model": "template.logicnode", "pk": 5832, "fields": {"state_transition": 1451, "node_type": "S", "subcondition": 13, "parent": 5834}}, {"model": "template.logicnode", "pk": 5833, "fields": {"state_transition": 1451, "node_type": "S", "subcondition": 17, "parent": 5834}}, {"model": "template.logicnode", "pk": 5834, "fields": {"state_transition": 1451, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5835, "fields": {"state_transition": 1452, "node_type": "N", "subcondition": null, "parent": 5840}}, {"model": "template.logicnode", "pk": 5836, "fields": {"state_transition": 1452, "node_type": "S", "subcondition": 23, "parent": 5835}}, {"model": "template.logicnode", "pk": 5837, "fields": {"state_transition": 1452, "node_type": "S", "subcondition": 11, "parent": 5840}}, {"model": "template.logicnode", "pk": 5838, "fields": {"state_transition": 1452, "node_type": "S", "subcondition": 13, "parent": 5840}}, {"model": "template.logicnode", "pk": 5839, "fields": {"state_transition": 1452, "node_type": "S", "subcondition": 25, "parent": 5840}}, {"model": "template.logicnode", "pk": 5840, "fields": {"state_transition": 1452, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5841, "fields": {"state_transition": 1453, "node_type": "N", "subcondition": null, "parent": 5845}}, {"model": "template.logicnode", "pk": 5842, "fields": {"state_transition": 1453, "node_type": "S", "subcondition": 23, "parent": 5841}}, {"model": "template.logicnode", "pk": 5843, "fields": {"state_transition": 1453, "node_type": "S", "subcondition": 11, "parent": 5845}}, {"model": "template.logicnode", "pk": 5844, "fields": {"state_transition": 1453, "node_type": "S", "subcondition": 13, "parent": 5845}}, {"model": "template.logicnode", "pk": 5845, "fields": {"state_transition": 1453, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5846, "fields": {"state_transition": 1454, "node_type": "N", "subcondition": null, "parent": 5851}}, {"model": "template.logicnode", "pk": 5847, "fields": {"state_transition": 1454, "node_type": "S", "subcondition": 23, "parent": 5846}}, {"model": "template.logicnode", "pk": 5848, "fields": {"state_transition": 1454, "node_type": "S", "subcondition": 11, "parent": 5851}}, {"model": "template.logicnode", "pk": 5849, "fields": {"state_transition": 1454, "node_type": "S", "subcondition": 17, "parent": 5851}}, {"model": "template.logicnode", "pk": 5850, "fields": {"state_transition": 1454, "node_type": "S", "subcondition": 25, "parent": 5851}}, {"model": "template.logicnode", "pk": 5851, "fields": {"state_transition": 1454, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5852, "fields": {"state_transition": 1455, "node_type": "N", "subcondition": null, "parent": 5856}}, {"model": "template.logicnode", "pk": 5853, "fields": {"state_transition": 1455, "node_type": "S", "subcondition": 23, "parent": 5852}}, {"model": "template.logicnode", "pk": 5854, "fields": {"state_transition": 1455, "node_type": "S", "subcondition": 11, "parent": 5856}}, {"model": "template.logicnode", "pk": 5855, "fields": {"state_transition": 1455, "node_type": "S", "subcondition": 17, "parent": 5856}}, {"model": "template.logicnode", "pk": 5856, "fields": {"state_transition": 1455, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5857, "fields": {"state_transition": 1456, "node_type": "N", "subcondition": null, "parent": 5861}}, {"model": "template.logicnode", "pk": 5858, "fields": {"state_transition": 1456, "node_type": "S", "subcondition": 23, "parent": 5857}}, {"model": "template.logicnode", "pk": 5859, "fields": {"state_transition": 1456, "node_type": "S", "subcondition": 11, "parent": 5861}}, {"model": "template.logicnode", "pk": 5860, "fields": {"state_transition": 1456, "node_type": "S", "subcondition": 25, "parent": 5861}}, {"model": "template.logicnode", "pk": 5861, "fields": {"state_transition": 1456, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5862, "fields": {"state_transition": 1457, "node_type": "N", "subcondition": null, "parent": 5865}}, {"model": "template.logicnode", "pk": 5863, "fields": {"state_transition": 1457, "node_type": "S", "subcondition": 23, "parent": 5862}}, {"model": "template.logicnode", "pk": 5864, "fields": {"state_transition": 1457, "node_type": "S", "subcondition": 11, "parent": 5865}}, {"model": "template.logicnode", "pk": 5865, "fields": {"state_transition": 1457, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5866, "fields": {"state_transition": 1458, "node_type": "N", "subcondition": null, "parent": 5871}}, {"model": "template.logicnode", "pk": 5867, "fields": {"state_transition": 1458, "node_type": "S", "subcondition": 23, "parent": 5866}}, {"model": "template.logicnode", "pk": 5868, "fields": {"state_transition": 1458, "node_type": "S", "subcondition": 13, "parent": 5871}}, {"model": "template.logicnode", "pk": 5869, "fields": {"state_transition": 1458, "node_type": "S", "subcondition": 17, "parent": 5871}}, {"model": "template.logicnode", "pk": 5870, "fields": {"state_transition": 1458, "node_type": "S", "subcondition": 25, "parent": 5871}}, {"model": "template.logicnode", "pk": 5871, "fields": {"state_transition": 1458, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5872, "fields": {"state_transition": 1459, "node_type": "N", "subcondition": null, "parent": 5876}}, {"model": "template.logicnode", "pk": 5873, "fields": {"state_transition": 1459, "node_type": "S", "subcondition": 23, "parent": 5872}}, {"model": "template.logicnode", "pk": 5874, "fields": {"state_transition": 1459, "node_type": "S", "subcondition": 13, "parent": 5876}}, {"model": "template.logicnode", "pk": 5875, "fields": {"state_transition": 1459, "node_type": "S", "subcondition": 17, "parent": 5876}}, {"model": "template.logicnode", "pk": 5876, "fields": {"state_transition": 1459, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5877, "fields": {"state_transition": 1460, "node_type": "N", "subcondition": null, "parent": 5881}}, {"model": "template.logicnode", "pk": 5878, "fields": {"state_transition": 1460, "node_type": "S", "subcondition": 23, "parent": 5877}}, {"model": "template.logicnode", "pk": 5879, "fields": {"state_transition": 1460, "node_type": "S", "subcondition": 13, "parent": 5881}}, {"model": "template.logicnode", "pk": 5880, "fields": {"state_transition": 1460, "node_type": "S", "subcondition": 25, "parent": 5881}}, {"model": "template.logicnode", "pk": 5881, "fields": {"state_transition": 1460, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5882, "fields": {"state_transition": 1461, "node_type": "N", "subcondition": null, "parent": 5885}}, {"model": "template.logicnode", "pk": 5883, "fields": {"state_transition": 1461, "node_type": "S", "subcondition": 23, "parent": 5882}}, {"model": "template.logicnode", "pk": 5884, "fields": {"state_transition": 1461, "node_type": "S", "subcondition": 13, "parent": 5885}}, {"model": "template.logicnode", "pk": 5885, "fields": {"state_transition": 1461, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5886, "fields": {"state_transition": 1462, "node_type": "N", "subcondition": null, "parent": 5890}}, {"model": "template.logicnode", "pk": 5887, "fields": {"state_transition": 1462, "node_type": "S", "subcondition": 23, "parent": 5886}}, {"model": "template.logicnode", "pk": 5888, "fields": {"state_transition": 1462, "node_type": "S", "subcondition": 17, "parent": 5890}}, {"model": "template.logicnode", "pk": 5889, "fields": {"state_transition": 1462, "node_type": "S", "subcondition": 25, "parent": 5890}}, {"model": "template.logicnode", "pk": 5890, "fields": {"state_transition": 1462, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5891, "fields": {"state_transition": 1463, "node_type": "N", "subcondition": null, "parent": 5894}}, {"model": "template.logicnode", "pk": 5892, "fields": {"state_transition": 1463, "node_type": "S", "subcondition": 23, "parent": 5891}}, {"model": "template.logicnode", "pk": 5893, "fields": {"state_transition": 1463, "node_type": "S", "subcondition": 17, "parent": 5894}}, {"model": "template.logicnode", "pk": 5894, "fields": {"state_transition": 1463, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5895, "fields": {"state_transition": 1464, "node_type": "N", "subcondition": null, "parent": 5898}}, {"model": "template.logicnode", "pk": 5896, "fields": {"state_transition": 1464, "node_type": "S", "subcondition": 23, "parent": 5895}}, {"model": "template.logicnode", "pk": 5897, "fields": {"state_transition": 1464, "node_type": "S", "subcondition": 25, "parent": 5898}}, {"model": "template.logicnode", "pk": 5898, "fields": {"state_transition": 1464, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5899, "fields": {"state_transition": 1465, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5900, "fields": {"state_transition": 1465, "node_type": "S", "subcondition": 23, "parent": 5899}}, {"model": "template.logicnode", "pk": 5901, "fields": {"state_transition": 1466, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5902, "fields": {"state_transition": 1467, "node_type": "N", "subcondition": null, "parent": 5908}}, {"model": "template.logicnode", "pk": 5903, "fields": {"state_transition": 1467, "node_type": "S", "subcondition": 23, "parent": 5902}}, {"model": "template.logicnode", "pk": 5904, "fields": {"state_transition": 1467, "node_type": "S", "subcondition": 11, "parent": 5908}}, {"model": "template.logicnode", "pk": 5905, "fields": {"state_transition": 1467, "node_type": "S", "subcondition": 13, "parent": 5908}}, {"model": "template.logicnode", "pk": 5906, "fields": {"state_transition": 1467, "node_type": "S", "subcondition": 17, "parent": 5908}}, {"model": "template.logicnode", "pk": 5907, "fields": {"state_transition": 1467, "node_type": "S", "subcondition": 25, "parent": 5908}}, {"model": "template.logicnode", "pk": 5908, "fields": {"state_transition": 1467, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5909, "fields": {"state_transition": 1468, "node_type": "N", "subcondition": null, "parent": 5914}}, {"model": "template.logicnode", "pk": 5910, "fields": {"state_transition": 1468, "node_type": "S", "subcondition": 23, "parent": 5909}}, {"model": "template.logicnode", "pk": 5911, "fields": {"state_transition": 1468, "node_type": "S", "subcondition": 11, "parent": 5914}}, {"model": "template.logicnode", "pk": 5912, "fields": {"state_transition": 1468, "node_type": "S", "subcondition": 13, "parent": 5914}}, {"model": "template.logicnode", "pk": 5913, "fields": {"state_transition": 1468, "node_type": "S", "subcondition": 17, "parent": 5914}}, {"model": "template.logicnode", "pk": 5914, "fields": {"state_transition": 1468, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5915, "fields": {"state_transition": 1469, "node_type": "N", "subcondition": null, "parent": 5920}}, {"model": "template.logicnode", "pk": 5916, "fields": {"state_transition": 1469, "node_type": "S", "subcondition": 23, "parent": 5915}}, {"model": "template.logicnode", "pk": 5917, "fields": {"state_transition": 1469, "node_type": "S", "subcondition": 11, "parent": 5920}}, {"model": "template.logicnode", "pk": 5918, "fields": {"state_transition": 1469, "node_type": "S", "subcondition": 13, "parent": 5920}}, {"model": "template.logicnode", "pk": 5919, "fields": {"state_transition": 1469, "node_type": "S", "subcondition": 25, "parent": 5920}}, {"model": "template.logicnode", "pk": 5920, "fields": {"state_transition": 1469, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5921, "fields": {"state_transition": 1470, "node_type": "N", "subcondition": null, "parent": 5925}}, {"model": "template.logicnode", "pk": 5922, "fields": {"state_transition": 1470, "node_type": "S", "subcondition": 23, "parent": 5921}}, {"model": "template.logicnode", "pk": 5923, "fields": {"state_transition": 1470, "node_type": "S", "subcondition": 11, "parent": 5925}}, {"model": "template.logicnode", "pk": 5924, "fields": {"state_transition": 1470, "node_type": "S", "subcondition": 13, "parent": 5925}}, {"model": "template.logicnode", "pk": 5925, "fields": {"state_transition": 1470, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5926, "fields": {"state_transition": 1471, "node_type": "N", "subcondition": null, "parent": 5931}}, {"model": "template.logicnode", "pk": 5927, "fields": {"state_transition": 1471, "node_type": "S", "subcondition": 23, "parent": 5926}}, {"model": "template.logicnode", "pk": 5928, "fields": {"state_transition": 1471, "node_type": "S", "subcondition": 11, "parent": 5931}}, {"model": "template.logicnode", "pk": 5929, "fields": {"state_transition": 1471, "node_type": "S", "subcondition": 17, "parent": 5931}}, {"model": "template.logicnode", "pk": 5930, "fields": {"state_transition": 1471, "node_type": "S", "subcondition": 25, "parent": 5931}}, {"model": "template.logicnode", "pk": 5931, "fields": {"state_transition": 1471, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5932, "fields": {"state_transition": 1472, "node_type": "N", "subcondition": null, "parent": 5936}}, {"model": "template.logicnode", "pk": 5933, "fields": {"state_transition": 1472, "node_type": "S", "subcondition": 23, "parent": 5932}}, {"model": "template.logicnode", "pk": 5934, "fields": {"state_transition": 1472, "node_type": "S", "subcondition": 11, "parent": 5936}}, {"model": "template.logicnode", "pk": 5935, "fields": {"state_transition": 1472, "node_type": "S", "subcondition": 17, "parent": 5936}}, {"model": "template.logicnode", "pk": 5936, "fields": {"state_transition": 1472, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5937, "fields": {"state_transition": 1473, "node_type": "N", "subcondition": null, "parent": 5941}}, {"model": "template.logicnode", "pk": 5938, "fields": {"state_transition": 1473, "node_type": "S", "subcondition": 23, "parent": 5937}}, {"model": "template.logicnode", "pk": 5939, "fields": {"state_transition": 1473, "node_type": "S", "subcondition": 11, "parent": 5941}}, {"model": "template.logicnode", "pk": 5940, "fields": {"state_transition": 1473, "node_type": "S", "subcondition": 25, "parent": 5941}}, {"model": "template.logicnode", "pk": 5941, "fields": {"state_transition": 1473, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5942, "fields": {"state_transition": 1474, "node_type": "N", "subcondition": null, "parent": 5945}}, {"model": "template.logicnode", "pk": 5943, "fields": {"state_transition": 1474, "node_type": "S", "subcondition": 23, "parent": 5942}}, {"model": "template.logicnode", "pk": 5944, "fields": {"state_transition": 1474, "node_type": "S", "subcondition": 11, "parent": 5945}}, {"model": "template.logicnode", "pk": 5945, "fields": {"state_transition": 1474, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5946, "fields": {"state_transition": 1475, "node_type": "N", "subcondition": null, "parent": 5951}}, {"model": "template.logicnode", "pk": 5947, "fields": {"state_transition": 1475, "node_type": "S", "subcondition": 23, "parent": 5946}}, {"model": "template.logicnode", "pk": 5948, "fields": {"state_transition": 1475, "node_type": "S", "subcondition": 13, "parent": 5951}}, {"model": "template.logicnode", "pk": 5949, "fields": {"state_transition": 1475, "node_type": "S", "subcondition": 17, "parent": 5951}}, {"model": "template.logicnode", "pk": 5950, "fields": {"state_transition": 1475, "node_type": "S", "subcondition": 25, "parent": 5951}}, {"model": "template.logicnode", "pk": 5951, "fields": {"state_transition": 1475, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5952, "fields": {"state_transition": 1476, "node_type": "N", "subcondition": null, "parent": 5956}}, {"model": "template.logicnode", "pk": 5953, "fields": {"state_transition": 1476, "node_type": "S", "subcondition": 23, "parent": 5952}}, {"model": "template.logicnode", "pk": 5954, "fields": {"state_transition": 1476, "node_type": "S", "subcondition": 13, "parent": 5956}}, {"model": "template.logicnode", "pk": 5955, "fields": {"state_transition": 1476, "node_type": "S", "subcondition": 17, "parent": 5956}}, {"model": "template.logicnode", "pk": 5956, "fields": {"state_transition": 1476, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5957, "fields": {"state_transition": 1477, "node_type": "N", "subcondition": null, "parent": 5961}}, {"model": "template.logicnode", "pk": 5958, "fields": {"state_transition": 1477, "node_type": "S", "subcondition": 23, "parent": 5957}}, {"model": "template.logicnode", "pk": 5959, "fields": {"state_transition": 1477, "node_type": "S", "subcondition": 13, "parent": 5961}}, {"model": "template.logicnode", "pk": 5960, "fields": {"state_transition": 1477, "node_type": "S", "subcondition": 25, "parent": 5961}}, {"model": "template.logicnode", "pk": 5961, "fields": {"state_transition": 1477, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5962, "fields": {"state_transition": 1478, "node_type": "N", "subcondition": null, "parent": 5965}}, {"model": "template.logicnode", "pk": 5963, "fields": {"state_transition": 1478, "node_type": "S", "subcondition": 23, "parent": 5962}}, {"model": "template.logicnode", "pk": 5964, "fields": {"state_transition": 1478, "node_type": "S", "subcondition": 13, "parent": 5965}}, {"model": "template.logicnode", "pk": 5965, "fields": {"state_transition": 1478, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5966, "fields": {"state_transition": 1479, "node_type": "N", "subcondition": null, "parent": 5970}}, {"model": "template.logicnode", "pk": 5967, "fields": {"state_transition": 1479, "node_type": "S", "subcondition": 23, "parent": 5966}}, {"model": "template.logicnode", "pk": 5968, "fields": {"state_transition": 1479, "node_type": "S", "subcondition": 17, "parent": 5970}}, {"model": "template.logicnode", "pk": 5969, "fields": {"state_transition": 1479, "node_type": "S", "subcondition": 25, "parent": 5970}}, {"model": "template.logicnode", "pk": 5970, "fields": {"state_transition": 1479, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5971, "fields": {"state_transition": 1480, "node_type": "N", "subcondition": null, "parent": 5974}}, {"model": "template.logicnode", "pk": 5972, "fields": {"state_transition": 1480, "node_type": "S", "subcondition": 23, "parent": 5971}}, {"model": "template.logicnode", "pk": 5973, "fields": {"state_transition": 1480, "node_type": "S", "subcondition": 17, "parent": 5974}}, {"model": "template.logicnode", "pk": 5974, "fields": {"state_transition": 1480, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5975, "fields": {"state_transition": 1481, "node_type": "N", "subcondition": null, "parent": 5978}}, {"model": "template.logicnode", "pk": 5976, "fields": {"state_transition": 1481, "node_type": "S", "subcondition": 23, "parent": 5975}}, {"model": "template.logicnode", "pk": 5977, "fields": {"state_transition": 1481, "node_type": "S", "subcondition": 25, "parent": 5978}}, {"model": "template.logicnode", "pk": 5978, "fields": {"state_transition": 1481, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5979, "fields": {"state_transition": 1482, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5980, "fields": {"state_transition": 1482, "node_type": "S", "subcondition": 23, "parent": 5979}}, {"model": "template.logicnode", "pk": 5981, "fields": {"state_transition": 1483, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 5982, "fields": {"state_transition": 1484, "node_type": "N", "subcondition": null, "parent": 5988}}, {"model": "template.logicnode", "pk": 5983, "fields": {"state_transition": 1484, "node_type": "S", "subcondition": 23, "parent": 5982}}, {"model": "template.logicnode", "pk": 5984, "fields": {"state_transition": 1484, "node_type": "S", "subcondition": 11, "parent": 5988}}, {"model": "template.logicnode", "pk": 5985, "fields": {"state_transition": 1484, "node_type": "S", "subcondition": 13, "parent": 5988}}, {"model": "template.logicnode", "pk": 5986, "fields": {"state_transition": 1484, "node_type": "S", "subcondition": 17, "parent": 5988}}, {"model": "template.logicnode", "pk": 5987, "fields": {"state_transition": 1484, "node_type": "S", "subcondition": 25, "parent": 5988}}, {"model": "template.logicnode", "pk": 5988, "fields": {"state_transition": 1484, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5989, "fields": {"state_transition": 1485, "node_type": "N", "subcondition": null, "parent": 5994}}, {"model": "template.logicnode", "pk": 5990, "fields": {"state_transition": 1485, "node_type": "S", "subcondition": 23, "parent": 5989}}, {"model": "template.logicnode", "pk": 5991, "fields": {"state_transition": 1485, "node_type": "S", "subcondition": 11, "parent": 5994}}, {"model": "template.logicnode", "pk": 5992, "fields": {"state_transition": 1485, "node_type": "S", "subcondition": 13, "parent": 5994}}, {"model": "template.logicnode", "pk": 5993, "fields": {"state_transition": 1485, "node_type": "S", "subcondition": 17, "parent": 5994}}, {"model": "template.logicnode", "pk": 5994, "fields": {"state_transition": 1485, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 5995, "fields": {"state_transition": 1486, "node_type": "N", "subcondition": null, "parent": 6000}}, {"model": "template.logicnode", "pk": 5996, "fields": {"state_transition": 1486, "node_type": "S", "subcondition": 23, "parent": 5995}}, {"model": "template.logicnode", "pk": 5997, "fields": {"state_transition": 1486, "node_type": "S", "subcondition": 11, "parent": 6000}}, {"model": "template.logicnode", "pk": 5998, "fields": {"state_transition": 1486, "node_type": "S", "subcondition": 13, "parent": 6000}}, {"model": "template.logicnode", "pk": 5999, "fields": {"state_transition": 1486, "node_type": "S", "subcondition": 25, "parent": 6000}}, {"model": "template.logicnode", "pk": 6000, "fields": {"state_transition": 1486, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6001, "fields": {"state_transition": 1487, "node_type": "N", "subcondition": null, "parent": 6005}}, {"model": "template.logicnode", "pk": 6002, "fields": {"state_transition": 1487, "node_type": "S", "subcondition": 23, "parent": 6001}}, {"model": "template.logicnode", "pk": 6003, "fields": {"state_transition": 1487, "node_type": "S", "subcondition": 11, "parent": 6005}}, {"model": "template.logicnode", "pk": 6004, "fields": {"state_transition": 1487, "node_type": "S", "subcondition": 13, "parent": 6005}}, {"model": "template.logicnode", "pk": 6005, "fields": {"state_transition": 1487, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6006, "fields": {"state_transition": 1488, "node_type": "N", "subcondition": null, "parent": 6011}}, {"model": "template.logicnode", "pk": 6007, "fields": {"state_transition": 1488, "node_type": "S", "subcondition": 23, "parent": 6006}}, {"model": "template.logicnode", "pk": 6008, "fields": {"state_transition": 1488, "node_type": "S", "subcondition": 11, "parent": 6011}}, {"model": "template.logicnode", "pk": 6009, "fields": {"state_transition": 1488, "node_type": "S", "subcondition": 17, "parent": 6011}}, {"model": "template.logicnode", "pk": 6010, "fields": {"state_transition": 1488, "node_type": "S", "subcondition": 25, "parent": 6011}}, {"model": "template.logicnode", "pk": 6011, "fields": {"state_transition": 1488, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6012, "fields": {"state_transition": 1489, "node_type": "N", "subcondition": null, "parent": 6016}}, {"model": "template.logicnode", "pk": 6013, "fields": {"state_transition": 1489, "node_type": "S", "subcondition": 23, "parent": 6012}}, {"model": "template.logicnode", "pk": 6014, "fields": {"state_transition": 1489, "node_type": "S", "subcondition": 11, "parent": 6016}}, {"model": "template.logicnode", "pk": 6015, "fields": {"state_transition": 1489, "node_type": "S", "subcondition": 17, "parent": 6016}}, {"model": "template.logicnode", "pk": 6016, "fields": {"state_transition": 1489, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6017, "fields": {"state_transition": 1490, "node_type": "N", "subcondition": null, "parent": 6021}}, {"model": "template.logicnode", "pk": 6018, "fields": {"state_transition": 1490, "node_type": "S", "subcondition": 23, "parent": 6017}}, {"model": "template.logicnode", "pk": 6019, "fields": {"state_transition": 1490, "node_type": "S", "subcondition": 11, "parent": 6021}}, {"model": "template.logicnode", "pk": 6020, "fields": {"state_transition": 1490, "node_type": "S", "subcondition": 25, "parent": 6021}}, {"model": "template.logicnode", "pk": 6021, "fields": {"state_transition": 1490, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6022, "fields": {"state_transition": 1491, "node_type": "N", "subcondition": null, "parent": 6025}}, {"model": "template.logicnode", "pk": 6023, "fields": {"state_transition": 1491, "node_type": "S", "subcondition": 23, "parent": 6022}}, {"model": "template.logicnode", "pk": 6024, "fields": {"state_transition": 1491, "node_type": "S", "subcondition": 11, "parent": 6025}}, {"model": "template.logicnode", "pk": 6025, "fields": {"state_transition": 1491, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6026, "fields": {"state_transition": 1492, "node_type": "N", "subcondition": null, "parent": 6031}}, {"model": "template.logicnode", "pk": 6027, "fields": {"state_transition": 1492, "node_type": "S", "subcondition": 23, "parent": 6026}}, {"model": "template.logicnode", "pk": 6028, "fields": {"state_transition": 1492, "node_type": "S", "subcondition": 13, "parent": 6031}}, {"model": "template.logicnode", "pk": 6029, "fields": {"state_transition": 1492, "node_type": "S", "subcondition": 17, "parent": 6031}}, {"model": "template.logicnode", "pk": 6030, "fields": {"state_transition": 1492, "node_type": "S", "subcondition": 25, "parent": 6031}}, {"model": "template.logicnode", "pk": 6031, "fields": {"state_transition": 1492, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6032, "fields": {"state_transition": 1493, "node_type": "N", "subcondition": null, "parent": 6036}}, {"model": "template.logicnode", "pk": 6033, "fields": {"state_transition": 1493, "node_type": "S", "subcondition": 23, "parent": 6032}}, {"model": "template.logicnode", "pk": 6034, "fields": {"state_transition": 1493, "node_type": "S", "subcondition": 13, "parent": 6036}}, {"model": "template.logicnode", "pk": 6035, "fields": {"state_transition": 1493, "node_type": "S", "subcondition": 17, "parent": 6036}}, {"model": "template.logicnode", "pk": 6036, "fields": {"state_transition": 1493, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6037, "fields": {"state_transition": 1494, "node_type": "N", "subcondition": null, "parent": 6041}}, {"model": "template.logicnode", "pk": 6038, "fields": {"state_transition": 1494, "node_type": "S", "subcondition": 23, "parent": 6037}}, {"model": "template.logicnode", "pk": 6039, "fields": {"state_transition": 1494, "node_type": "S", "subcondition": 13, "parent": 6041}}, {"model": "template.logicnode", "pk": 6040, "fields": {"state_transition": 1494, "node_type": "S", "subcondition": 25, "parent": 6041}}, {"model": "template.logicnode", "pk": 6041, "fields": {"state_transition": 1494, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6042, "fields": {"state_transition": 1495, "node_type": "N", "subcondition": null, "parent": 6045}}, {"model": "template.logicnode", "pk": 6043, "fields": {"state_transition": 1495, "node_type": "S", "subcondition": 23, "parent": 6042}}, {"model": "template.logicnode", "pk": 6044, "fields": {"state_transition": 1495, "node_type": "S", "subcondition": 13, "parent": 6045}}, {"model": "template.logicnode", "pk": 6045, "fields": {"state_transition": 1495, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6046, "fields": {"state_transition": 1496, "node_type": "N", "subcondition": null, "parent": 6050}}, {"model": "template.logicnode", "pk": 6047, "fields": {"state_transition": 1496, "node_type": "S", "subcondition": 23, "parent": 6046}}, {"model": "template.logicnode", "pk": 6048, "fields": {"state_transition": 1496, "node_type": "S", "subcondition": 17, "parent": 6050}}, {"model": "template.logicnode", "pk": 6049, "fields": {"state_transition": 1496, "node_type": "S", "subcondition": 25, "parent": 6050}}, {"model": "template.logicnode", "pk": 6050, "fields": {"state_transition": 1496, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6051, "fields": {"state_transition": 1497, "node_type": "N", "subcondition": null, "parent": 6054}}, {"model": "template.logicnode", "pk": 6052, "fields": {"state_transition": 1497, "node_type": "S", "subcondition": 23, "parent": 6051}}, {"model": "template.logicnode", "pk": 6053, "fields": {"state_transition": 1497, "node_type": "S", "subcondition": 17, "parent": 6054}}, {"model": "template.logicnode", "pk": 6054, "fields": {"state_transition": 1497, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6055, "fields": {"state_transition": 1498, "node_type": "N", "subcondition": null, "parent": 6058}}, {"model": "template.logicnode", "pk": 6056, "fields": {"state_transition": 1498, "node_type": "S", "subcondition": 23, "parent": 6055}}, {"model": "template.logicnode", "pk": 6057, "fields": {"state_transition": 1498, "node_type": "S", "subcondition": 25, "parent": 6058}}, {"model": "template.logicnode", "pk": 6058, "fields": {"state_transition": 1498, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6059, "fields": {"state_transition": 1499, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6060, "fields": {"state_transition": 1499, "node_type": "S", "subcondition": 23, "parent": 6059}}, {"model": "template.logicnode", "pk": 6061, "fields": {"state_transition": 1500, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6062, "fields": {"state_transition": 1501, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6063, "fields": {"state_transition": 1502, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6064, "fields": {"state_transition": 1503, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6065, "fields": {"state_transition": 1504, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6066, "fields": {"state_transition": 1505, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6067, "fields": {"state_transition": 1506, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6068, "fields": {"state_transition": 1507, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6069, "fields": {"state_transition": 1508, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6070, "fields": {"state_transition": 1509, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6071, "fields": {"state_transition": 1510, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6072, "fields": {"state_transition": 1511, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6073, "fields": {"state_transition": 1512, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6074, "fields": {"state_transition": 1513, "node_type": "N", "subcondition": null, "parent": 6080}}, {"model": "template.logicnode", "pk": 6075, "fields": {"state_transition": 1513, "node_type": "S", "subcondition": 23, "parent": 6074}}, {"model": "template.logicnode", "pk": 6076, "fields": {"state_transition": 1513, "node_type": "S", "subcondition": 11, "parent": 6080}}, {"model": "template.logicnode", "pk": 6077, "fields": {"state_transition": 1513, "node_type": "S", "subcondition": 13, "parent": 6080}}, {"model": "template.logicnode", "pk": 6078, "fields": {"state_transition": 1513, "node_type": "S", "subcondition": 17, "parent": 6080}}, {"model": "template.logicnode", "pk": 6079, "fields": {"state_transition": 1513, "node_type": "S", "subcondition": 25, "parent": 6080}}, {"model": "template.logicnode", "pk": 6080, "fields": {"state_transition": 1513, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6081, "fields": {"state_transition": 1514, "node_type": "N", "subcondition": null, "parent": 6086}}, {"model": "template.logicnode", "pk": 6082, "fields": {"state_transition": 1514, "node_type": "S", "subcondition": 23, "parent": 6081}}, {"model": "template.logicnode", "pk": 6083, "fields": {"state_transition": 1514, "node_type": "S", "subcondition": 11, "parent": 6086}}, {"model": "template.logicnode", "pk": 6084, "fields": {"state_transition": 1514, "node_type": "S", "subcondition": 13, "parent": 6086}}, {"model": "template.logicnode", "pk": 6085, "fields": {"state_transition": 1514, "node_type": "S", "subcondition": 17, "parent": 6086}}, {"model": "template.logicnode", "pk": 6086, "fields": {"state_transition": 1514, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6087, "fields": {"state_transition": 1515, "node_type": "N", "subcondition": null, "parent": 6092}}, {"model": "template.logicnode", "pk": 6088, "fields": {"state_transition": 1515, "node_type": "S", "subcondition": 23, "parent": 6087}}, {"model": "template.logicnode", "pk": 6089, "fields": {"state_transition": 1515, "node_type": "S", "subcondition": 11, "parent": 6092}}, {"model": "template.logicnode", "pk": 6090, "fields": {"state_transition": 1515, "node_type": "S", "subcondition": 13, "parent": 6092}}, {"model": "template.logicnode", "pk": 6091, "fields": {"state_transition": 1515, "node_type": "S", "subcondition": 25, "parent": 6092}}, {"model": "template.logicnode", "pk": 6092, "fields": {"state_transition": 1515, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6093, "fields": {"state_transition": 1516, "node_type": "N", "subcondition": null, "parent": 6097}}, {"model": "template.logicnode", "pk": 6094, "fields": {"state_transition": 1516, "node_type": "S", "subcondition": 23, "parent": 6093}}, {"model": "template.logicnode", "pk": 6095, "fields": {"state_transition": 1516, "node_type": "S", "subcondition": 11, "parent": 6097}}, {"model": "template.logicnode", "pk": 6096, "fields": {"state_transition": 1516, "node_type": "S", "subcondition": 13, "parent": 6097}}, {"model": "template.logicnode", "pk": 6097, "fields": {"state_transition": 1516, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6098, "fields": {"state_transition": 1517, "node_type": "N", "subcondition": null, "parent": 6103}}, {"model": "template.logicnode", "pk": 6099, "fields": {"state_transition": 1517, "node_type": "S", "subcondition": 23, "parent": 6098}}, {"model": "template.logicnode", "pk": 6100, "fields": {"state_transition": 1517, "node_type": "S", "subcondition": 11, "parent": 6103}}, {"model": "template.logicnode", "pk": 6101, "fields": {"state_transition": 1517, "node_type": "S", "subcondition": 17, "parent": 6103}}, {"model": "template.logicnode", "pk": 6102, "fields": {"state_transition": 1517, "node_type": "S", "subcondition": 25, "parent": 6103}}, {"model": "template.logicnode", "pk": 6103, "fields": {"state_transition": 1517, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6104, "fields": {"state_transition": 1518, "node_type": "N", "subcondition": null, "parent": 6108}}, {"model": "template.logicnode", "pk": 6105, "fields": {"state_transition": 1518, "node_type": "S", "subcondition": 23, "parent": 6104}}, {"model": "template.logicnode", "pk": 6106, "fields": {"state_transition": 1518, "node_type": "S", "subcondition": 11, "parent": 6108}}, {"model": "template.logicnode", "pk": 6107, "fields": {"state_transition": 1518, "node_type": "S", "subcondition": 17, "parent": 6108}}, {"model": "template.logicnode", "pk": 6108, "fields": {"state_transition": 1518, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6109, "fields": {"state_transition": 1519, "node_type": "N", "subcondition": null, "parent": 6113}}, {"model": "template.logicnode", "pk": 6110, "fields": {"state_transition": 1519, "node_type": "S", "subcondition": 23, "parent": 6109}}, {"model": "template.logicnode", "pk": 6111, "fields": {"state_transition": 1519, "node_type": "S", "subcondition": 11, "parent": 6113}}, {"model": "template.logicnode", "pk": 6112, "fields": {"state_transition": 1519, "node_type": "S", "subcondition": 25, "parent": 6113}}, {"model": "template.logicnode", "pk": 6113, "fields": {"state_transition": 1519, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6114, "fields": {"state_transition": 1520, "node_type": "N", "subcondition": null, "parent": 6117}}, {"model": "template.logicnode", "pk": 6115, "fields": {"state_transition": 1520, "node_type": "S", "subcondition": 23, "parent": 6114}}, {"model": "template.logicnode", "pk": 6116, "fields": {"state_transition": 1520, "node_type": "S", "subcondition": 11, "parent": 6117}}, {"model": "template.logicnode", "pk": 6117, "fields": {"state_transition": 1520, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6118, "fields": {"state_transition": 1521, "node_type": "N", "subcondition": null, "parent": 6123}}, {"model": "template.logicnode", "pk": 6119, "fields": {"state_transition": 1521, "node_type": "S", "subcondition": 23, "parent": 6118}}, {"model": "template.logicnode", "pk": 6120, "fields": {"state_transition": 1521, "node_type": "S", "subcondition": 13, "parent": 6123}}, {"model": "template.logicnode", "pk": 6121, "fields": {"state_transition": 1521, "node_type": "S", "subcondition": 17, "parent": 6123}}, {"model": "template.logicnode", "pk": 6122, "fields": {"state_transition": 1521, "node_type": "S", "subcondition": 25, "parent": 6123}}, {"model": "template.logicnode", "pk": 6123, "fields": {"state_transition": 1521, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6124, "fields": {"state_transition": 1522, "node_type": "N", "subcondition": null, "parent": 6128}}, {"model": "template.logicnode", "pk": 6125, "fields": {"state_transition": 1522, "node_type": "S", "subcondition": 23, "parent": 6124}}, {"model": "template.logicnode", "pk": 6126, "fields": {"state_transition": 1522, "node_type": "S", "subcondition": 13, "parent": 6128}}, {"model": "template.logicnode", "pk": 6127, "fields": {"state_transition": 1522, "node_type": "S", "subcondition": 17, "parent": 6128}}, {"model": "template.logicnode", "pk": 6128, "fields": {"state_transition": 1522, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6129, "fields": {"state_transition": 1523, "node_type": "N", "subcondition": null, "parent": 6133}}, {"model": "template.logicnode", "pk": 6130, "fields": {"state_transition": 1523, "node_type": "S", "subcondition": 23, "parent": 6129}}, {"model": "template.logicnode", "pk": 6131, "fields": {"state_transition": 1523, "node_type": "S", "subcondition": 13, "parent": 6133}}, {"model": "template.logicnode", "pk": 6132, "fields": {"state_transition": 1523, "node_type": "S", "subcondition": 25, "parent": 6133}}, {"model": "template.logicnode", "pk": 6133, "fields": {"state_transition": 1523, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6134, "fields": {"state_transition": 1524, "node_type": "N", "subcondition": null, "parent": 6137}}, {"model": "template.logicnode", "pk": 6135, "fields": {"state_transition": 1524, "node_type": "S", "subcondition": 23, "parent": 6134}}, {"model": "template.logicnode", "pk": 6136, "fields": {"state_transition": 1524, "node_type": "S", "subcondition": 13, "parent": 6137}}, {"model": "template.logicnode", "pk": 6137, "fields": {"state_transition": 1524, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6138, "fields": {"state_transition": 1525, "node_type": "N", "subcondition": null, "parent": 6142}}, {"model": "template.logicnode", "pk": 6139, "fields": {"state_transition": 1525, "node_type": "S", "subcondition": 23, "parent": 6138}}, {"model": "template.logicnode", "pk": 6140, "fields": {"state_transition": 1525, "node_type": "S", "subcondition": 17, "parent": 6142}}, {"model": "template.logicnode", "pk": 6141, "fields": {"state_transition": 1525, "node_type": "S", "subcondition": 25, "parent": 6142}}, {"model": "template.logicnode", "pk": 6142, "fields": {"state_transition": 1525, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6143, "fields": {"state_transition": 1526, "node_type": "N", "subcondition": null, "parent": 6146}}, {"model": "template.logicnode", "pk": 6144, "fields": {"state_transition": 1526, "node_type": "S", "subcondition": 23, "parent": 6143}}, {"model": "template.logicnode", "pk": 6145, "fields": {"state_transition": 1526, "node_type": "S", "subcondition": 17, "parent": 6146}}, {"model": "template.logicnode", "pk": 6146, "fields": {"state_transition": 1526, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6147, "fields": {"state_transition": 1527, "node_type": "N", "subcondition": null, "parent": 6150}}, {"model": "template.logicnode", "pk": 6148, "fields": {"state_transition": 1527, "node_type": "S", "subcondition": 23, "parent": 6147}}, {"model": "template.logicnode", "pk": 6149, "fields": {"state_transition": 1527, "node_type": "S", "subcondition": 25, "parent": 6150}}, {"model": "template.logicnode", "pk": 6150, "fields": {"state_transition": 1527, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6151, "fields": {"state_transition": 1528, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6152, "fields": {"state_transition": 1528, "node_type": "S", "subcondition": 23, "parent": 6151}}, {"model": "template.logicnode", "pk": 6153, "fields": {"state_transition": 1529, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6154, "fields": {"state_transition": 1530, "node_type": "N", "subcondition": null, "parent": 6160}}, {"model": "template.logicnode", "pk": 6155, "fields": {"state_transition": 1530, "node_type": "S", "subcondition": 23, "parent": 6154}}, {"model": "template.logicnode", "pk": 6156, "fields": {"state_transition": 1530, "node_type": "S", "subcondition": 11, "parent": 6160}}, {"model": "template.logicnode", "pk": 6157, "fields": {"state_transition": 1530, "node_type": "S", "subcondition": 13, "parent": 6160}}, {"model": "template.logicnode", "pk": 6158, "fields": {"state_transition": 1530, "node_type": "S", "subcondition": 17, "parent": 6160}}, {"model": "template.logicnode", "pk": 6159, "fields": {"state_transition": 1530, "node_type": "S", "subcondition": 25, "parent": 6160}}, {"model": "template.logicnode", "pk": 6160, "fields": {"state_transition": 1530, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6161, "fields": {"state_transition": 1531, "node_type": "N", "subcondition": null, "parent": 6166}}, {"model": "template.logicnode", "pk": 6162, "fields": {"state_transition": 1531, "node_type": "S", "subcondition": 23, "parent": 6161}}, {"model": "template.logicnode", "pk": 6163, "fields": {"state_transition": 1531, "node_type": "S", "subcondition": 11, "parent": 6166}}, {"model": "template.logicnode", "pk": 6164, "fields": {"state_transition": 1531, "node_type": "S", "subcondition": 13, "parent": 6166}}, {"model": "template.logicnode", "pk": 6165, "fields": {"state_transition": 1531, "node_type": "S", "subcondition": 17, "parent": 6166}}, {"model": "template.logicnode", "pk": 6166, "fields": {"state_transition": 1531, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6167, "fields": {"state_transition": 1532, "node_type": "N", "subcondition": null, "parent": 6172}}, {"model": "template.logicnode", "pk": 6168, "fields": {"state_transition": 1532, "node_type": "S", "subcondition": 23, "parent": 6167}}, {"model": "template.logicnode", "pk": 6169, "fields": {"state_transition": 1532, "node_type": "S", "subcondition": 11, "parent": 6172}}, {"model": "template.logicnode", "pk": 6170, "fields": {"state_transition": 1532, "node_type": "S", "subcondition": 13, "parent": 6172}}, {"model": "template.logicnode", "pk": 6171, "fields": {"state_transition": 1532, "node_type": "S", "subcondition": 25, "parent": 6172}}, {"model": "template.logicnode", "pk": 6172, "fields": {"state_transition": 1532, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6173, "fields": {"state_transition": 1533, "node_type": "N", "subcondition": null, "parent": 6177}}, {"model": "template.logicnode", "pk": 6174, "fields": {"state_transition": 1533, "node_type": "S", "subcondition": 23, "parent": 6173}}, {"model": "template.logicnode", "pk": 6175, "fields": {"state_transition": 1533, "node_type": "S", "subcondition": 11, "parent": 6177}}, {"model": "template.logicnode", "pk": 6176, "fields": {"state_transition": 1533, "node_type": "S", "subcondition": 13, "parent": 6177}}, {"model": "template.logicnode", "pk": 6177, "fields": {"state_transition": 1533, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6178, "fields": {"state_transition": 1534, "node_type": "N", "subcondition": null, "parent": 6183}}, {"model": "template.logicnode", "pk": 6179, "fields": {"state_transition": 1534, "node_type": "S", "subcondition": 23, "parent": 6178}}, {"model": "template.logicnode", "pk": 6180, "fields": {"state_transition": 1534, "node_type": "S", "subcondition": 11, "parent": 6183}}, {"model": "template.logicnode", "pk": 6181, "fields": {"state_transition": 1534, "node_type": "S", "subcondition": 17, "parent": 6183}}, {"model": "template.logicnode", "pk": 6182, "fields": {"state_transition": 1534, "node_type": "S", "subcondition": 25, "parent": 6183}}, {"model": "template.logicnode", "pk": 6183, "fields": {"state_transition": 1534, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6184, "fields": {"state_transition": 1535, "node_type": "N", "subcondition": null, "parent": 6188}}, {"model": "template.logicnode", "pk": 6185, "fields": {"state_transition": 1535, "node_type": "S", "subcondition": 23, "parent": 6184}}, {"model": "template.logicnode", "pk": 6186, "fields": {"state_transition": 1535, "node_type": "S", "subcondition": 11, "parent": 6188}}, {"model": "template.logicnode", "pk": 6187, "fields": {"state_transition": 1535, "node_type": "S", "subcondition": 17, "parent": 6188}}, {"model": "template.logicnode", "pk": 6188, "fields": {"state_transition": 1535, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6189, "fields": {"state_transition": 1536, "node_type": "N", "subcondition": null, "parent": 6193}}, {"model": "template.logicnode", "pk": 6190, "fields": {"state_transition": 1536, "node_type": "S", "subcondition": 23, "parent": 6189}}, {"model": "template.logicnode", "pk": 6191, "fields": {"state_transition": 1536, "node_type": "S", "subcondition": 11, "parent": 6193}}, {"model": "template.logicnode", "pk": 6192, "fields": {"state_transition": 1536, "node_type": "S", "subcondition": 25, "parent": 6193}}, {"model": "template.logicnode", "pk": 6193, "fields": {"state_transition": 1536, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6194, "fields": {"state_transition": 1537, "node_type": "N", "subcondition": null, "parent": 6197}}, {"model": "template.logicnode", "pk": 6195, "fields": {"state_transition": 1537, "node_type": "S", "subcondition": 23, "parent": 6194}}, {"model": "template.logicnode", "pk": 6196, "fields": {"state_transition": 1537, "node_type": "S", "subcondition": 11, "parent": 6197}}, {"model": "template.logicnode", "pk": 6197, "fields": {"state_transition": 1537, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6198, "fields": {"state_transition": 1538, "node_type": "N", "subcondition": null, "parent": 6203}}, {"model": "template.logicnode", "pk": 6199, "fields": {"state_transition": 1538, "node_type": "S", "subcondition": 23, "parent": 6198}}, {"model": "template.logicnode", "pk": 6200, "fields": {"state_transition": 1538, "node_type": "S", "subcondition": 13, "parent": 6203}}, {"model": "template.logicnode", "pk": 6201, "fields": {"state_transition": 1538, "node_type": "S", "subcondition": 17, "parent": 6203}}, {"model": "template.logicnode", "pk": 6202, "fields": {"state_transition": 1538, "node_type": "S", "subcondition": 25, "parent": 6203}}, {"model": "template.logicnode", "pk": 6203, "fields": {"state_transition": 1538, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6204, "fields": {"state_transition": 1539, "node_type": "N", "subcondition": null, "parent": 6208}}, {"model": "template.logicnode", "pk": 6205, "fields": {"state_transition": 1539, "node_type": "S", "subcondition": 23, "parent": 6204}}, {"model": "template.logicnode", "pk": 6206, "fields": {"state_transition": 1539, "node_type": "S", "subcondition": 13, "parent": 6208}}, {"model": "template.logicnode", "pk": 6207, "fields": {"state_transition": 1539, "node_type": "S", "subcondition": 17, "parent": 6208}}, {"model": "template.logicnode", "pk": 6208, "fields": {"state_transition": 1539, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6209, "fields": {"state_transition": 1540, "node_type": "N", "subcondition": null, "parent": 6213}}, {"model": "template.logicnode", "pk": 6210, "fields": {"state_transition": 1540, "node_type": "S", "subcondition": 23, "parent": 6209}}, {"model": "template.logicnode", "pk": 6211, "fields": {"state_transition": 1540, "node_type": "S", "subcondition": 13, "parent": 6213}}, {"model": "template.logicnode", "pk": 6212, "fields": {"state_transition": 1540, "node_type": "S", "subcondition": 25, "parent": 6213}}, {"model": "template.logicnode", "pk": 6213, "fields": {"state_transition": 1540, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6214, "fields": {"state_transition": 1541, "node_type": "N", "subcondition": null, "parent": 6217}}, {"model": "template.logicnode", "pk": 6215, "fields": {"state_transition": 1541, "node_type": "S", "subcondition": 23, "parent": 6214}}, {"model": "template.logicnode", "pk": 6216, "fields": {"state_transition": 1541, "node_type": "S", "subcondition": 13, "parent": 6217}}, {"model": "template.logicnode", "pk": 6217, "fields": {"state_transition": 1541, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6218, "fields": {"state_transition": 1542, "node_type": "N", "subcondition": null, "parent": 6222}}, {"model": "template.logicnode", "pk": 6219, "fields": {"state_transition": 1542, "node_type": "S", "subcondition": 23, "parent": 6218}}, {"model": "template.logicnode", "pk": 6220, "fields": {"state_transition": 1542, "node_type": "S", "subcondition": 17, "parent": 6222}}, {"model": "template.logicnode", "pk": 6221, "fields": {"state_transition": 1542, "node_type": "S", "subcondition": 25, "parent": 6222}}, {"model": "template.logicnode", "pk": 6222, "fields": {"state_transition": 1542, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6223, "fields": {"state_transition": 1543, "node_type": "N", "subcondition": null, "parent": 6226}}, {"model": "template.logicnode", "pk": 6224, "fields": {"state_transition": 1543, "node_type": "S", "subcondition": 23, "parent": 6223}}, {"model": "template.logicnode", "pk": 6225, "fields": {"state_transition": 1543, "node_type": "S", "subcondition": 17, "parent": 6226}}, {"model": "template.logicnode", "pk": 6226, "fields": {"state_transition": 1543, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6227, "fields": {"state_transition": 1544, "node_type": "N", "subcondition": null, "parent": 6230}}, {"model": "template.logicnode", "pk": 6228, "fields": {"state_transition": 1544, "node_type": "S", "subcondition": 23, "parent": 6227}}, {"model": "template.logicnode", "pk": 6229, "fields": {"state_transition": 1544, "node_type": "S", "subcondition": 25, "parent": 6230}}, {"model": "template.logicnode", "pk": 6230, "fields": {"state_transition": 1544, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6231, "fields": {"state_transition": 1545, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6232, "fields": {"state_transition": 1545, "node_type": "S", "subcondition": 23, "parent": 6231}}, {"model": "template.logicnode", "pk": 6233, "fields": {"state_transition": 1546, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6234, "fields": {"state_transition": 1547, "node_type": "N", "subcondition": null, "parent": 6240}}, {"model": "template.logicnode", "pk": 6235, "fields": {"state_transition": 1547, "node_type": "S", "subcondition": 23, "parent": 6234}}, {"model": "template.logicnode", "pk": 6236, "fields": {"state_transition": 1547, "node_type": "S", "subcondition": 11, "parent": 6240}}, {"model": "template.logicnode", "pk": 6237, "fields": {"state_transition": 1547, "node_type": "S", "subcondition": 13, "parent": 6240}}, {"model": "template.logicnode", "pk": 6238, "fields": {"state_transition": 1547, "node_type": "S", "subcondition": 17, "parent": 6240}}, {"model": "template.logicnode", "pk": 6239, "fields": {"state_transition": 1547, "node_type": "S", "subcondition": 25, "parent": 6240}}, {"model": "template.logicnode", "pk": 6240, "fields": {"state_transition": 1547, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6241, "fields": {"state_transition": 1548, "node_type": "N", "subcondition": null, "parent": 6246}}, {"model": "template.logicnode", "pk": 6242, "fields": {"state_transition": 1548, "node_type": "S", "subcondition": 23, "parent": 6241}}, {"model": "template.logicnode", "pk": 6243, "fields": {"state_transition": 1548, "node_type": "S", "subcondition": 11, "parent": 6246}}, {"model": "template.logicnode", "pk": 6244, "fields": {"state_transition": 1548, "node_type": "S", "subcondition": 13, "parent": 6246}}, {"model": "template.logicnode", "pk": 6245, "fields": {"state_transition": 1548, "node_type": "S", "subcondition": 17, "parent": 6246}}, {"model": "template.logicnode", "pk": 6246, "fields": {"state_transition": 1548, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6247, "fields": {"state_transition": 1549, "node_type": "N", "subcondition": null, "parent": 6252}}, {"model": "template.logicnode", "pk": 6248, "fields": {"state_transition": 1549, "node_type": "S", "subcondition": 23, "parent": 6247}}, {"model": "template.logicnode", "pk": 6249, "fields": {"state_transition": 1549, "node_type": "S", "subcondition": 11, "parent": 6252}}, {"model": "template.logicnode", "pk": 6250, "fields": {"state_transition": 1549, "node_type": "S", "subcondition": 13, "parent": 6252}}, {"model": "template.logicnode", "pk": 6251, "fields": {"state_transition": 1549, "node_type": "S", "subcondition": 25, "parent": 6252}}, {"model": "template.logicnode", "pk": 6252, "fields": {"state_transition": 1549, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6253, "fields": {"state_transition": 1550, "node_type": "N", "subcondition": null, "parent": 6257}}, {"model": "template.logicnode", "pk": 6254, "fields": {"state_transition": 1550, "node_type": "S", "subcondition": 23, "parent": 6253}}, {"model": "template.logicnode", "pk": 6255, "fields": {"state_transition": 1550, "node_type": "S", "subcondition": 11, "parent": 6257}}, {"model": "template.logicnode", "pk": 6256, "fields": {"state_transition": 1550, "node_type": "S", "subcondition": 13, "parent": 6257}}, {"model": "template.logicnode", "pk": 6257, "fields": {"state_transition": 1550, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6258, "fields": {"state_transition": 1551, "node_type": "N", "subcondition": null, "parent": 6263}}, {"model": "template.logicnode", "pk": 6259, "fields": {"state_transition": 1551, "node_type": "S", "subcondition": 23, "parent": 6258}}, {"model": "template.logicnode", "pk": 6260, "fields": {"state_transition": 1551, "node_type": "S", "subcondition": 11, "parent": 6263}}, {"model": "template.logicnode", "pk": 6261, "fields": {"state_transition": 1551, "node_type": "S", "subcondition": 17, "parent": 6263}}, {"model": "template.logicnode", "pk": 6262, "fields": {"state_transition": 1551, "node_type": "S", "subcondition": 25, "parent": 6263}}, {"model": "template.logicnode", "pk": 6263, "fields": {"state_transition": 1551, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6264, "fields": {"state_transition": 1552, "node_type": "N", "subcondition": null, "parent": 6268}}, {"model": "template.logicnode", "pk": 6265, "fields": {"state_transition": 1552, "node_type": "S", "subcondition": 23, "parent": 6264}}, {"model": "template.logicnode", "pk": 6266, "fields": {"state_transition": 1552, "node_type": "S", "subcondition": 11, "parent": 6268}}, {"model": "template.logicnode", "pk": 6267, "fields": {"state_transition": 1552, "node_type": "S", "subcondition": 17, "parent": 6268}}, {"model": "template.logicnode", "pk": 6268, "fields": {"state_transition": 1552, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6269, "fields": {"state_transition": 1553, "node_type": "N", "subcondition": null, "parent": 6273}}, {"model": "template.logicnode", "pk": 6270, "fields": {"state_transition": 1553, "node_type": "S", "subcondition": 23, "parent": 6269}}, {"model": "template.logicnode", "pk": 6271, "fields": {"state_transition": 1553, "node_type": "S", "subcondition": 11, "parent": 6273}}, {"model": "template.logicnode", "pk": 6272, "fields": {"state_transition": 1553, "node_type": "S", "subcondition": 25, "parent": 6273}}, {"model": "template.logicnode", "pk": 6273, "fields": {"state_transition": 1553, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6274, "fields": {"state_transition": 1554, "node_type": "N", "subcondition": null, "parent": 6277}}, {"model": "template.logicnode", "pk": 6275, "fields": {"state_transition": 1554, "node_type": "S", "subcondition": 23, "parent": 6274}}, {"model": "template.logicnode", "pk": 6276, "fields": {"state_transition": 1554, "node_type": "S", "subcondition": 11, "parent": 6277}}, {"model": "template.logicnode", "pk": 6277, "fields": {"state_transition": 1554, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6278, "fields": {"state_transition": 1555, "node_type": "N", "subcondition": null, "parent": 6283}}, {"model": "template.logicnode", "pk": 6279, "fields": {"state_transition": 1555, "node_type": "S", "subcondition": 23, "parent": 6278}}, {"model": "template.logicnode", "pk": 6280, "fields": {"state_transition": 1555, "node_type": "S", "subcondition": 13, "parent": 6283}}, {"model": "template.logicnode", "pk": 6281, "fields": {"state_transition": 1555, "node_type": "S", "subcondition": 17, "parent": 6283}}, {"model": "template.logicnode", "pk": 6282, "fields": {"state_transition": 1555, "node_type": "S", "subcondition": 25, "parent": 6283}}, {"model": "template.logicnode", "pk": 6283, "fields": {"state_transition": 1555, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6284, "fields": {"state_transition": 1556, "node_type": "N", "subcondition": null, "parent": 6288}}, {"model": "template.logicnode", "pk": 6285, "fields": {"state_transition": 1556, "node_type": "S", "subcondition": 23, "parent": 6284}}, {"model": "template.logicnode", "pk": 6286, "fields": {"state_transition": 1556, "node_type": "S", "subcondition": 13, "parent": 6288}}, {"model": "template.logicnode", "pk": 6287, "fields": {"state_transition": 1556, "node_type": "S", "subcondition": 17, "parent": 6288}}, {"model": "template.logicnode", "pk": 6288, "fields": {"state_transition": 1556, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6289, "fields": {"state_transition": 1557, "node_type": "N", "subcondition": null, "parent": 6293}}, {"model": "template.logicnode", "pk": 6290, "fields": {"state_transition": 1557, "node_type": "S", "subcondition": 23, "parent": 6289}}, {"model": "template.logicnode", "pk": 6291, "fields": {"state_transition": 1557, "node_type": "S", "subcondition": 13, "parent": 6293}}, {"model": "template.logicnode", "pk": 6292, "fields": {"state_transition": 1557, "node_type": "S", "subcondition": 25, "parent": 6293}}, {"model": "template.logicnode", "pk": 6293, "fields": {"state_transition": 1557, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6294, "fields": {"state_transition": 1558, "node_type": "N", "subcondition": null, "parent": 6297}}, {"model": "template.logicnode", "pk": 6295, "fields": {"state_transition": 1558, "node_type": "S", "subcondition": 23, "parent": 6294}}, {"model": "template.logicnode", "pk": 6296, "fields": {"state_transition": 1558, "node_type": "S", "subcondition": 13, "parent": 6297}}, {"model": "template.logicnode", "pk": 6297, "fields": {"state_transition": 1558, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6298, "fields": {"state_transition": 1559, "node_type": "N", "subcondition": null, "parent": 6302}}, {"model": "template.logicnode", "pk": 6299, "fields": {"state_transition": 1559, "node_type": "S", "subcondition": 23, "parent": 6298}}, {"model": "template.logicnode", "pk": 6300, "fields": {"state_transition": 1559, "node_type": "S", "subcondition": 17, "parent": 6302}}, {"model": "template.logicnode", "pk": 6301, "fields": {"state_transition": 1559, "node_type": "S", "subcondition": 25, "parent": 6302}}, {"model": "template.logicnode", "pk": 6302, "fields": {"state_transition": 1559, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6303, "fields": {"state_transition": 1560, "node_type": "N", "subcondition": null, "parent": 6306}}, {"model": "template.logicnode", "pk": 6304, "fields": {"state_transition": 1560, "node_type": "S", "subcondition": 23, "parent": 6303}}, {"model": "template.logicnode", "pk": 6305, "fields": {"state_transition": 1560, "node_type": "S", "subcondition": 17, "parent": 6306}}, {"model": "template.logicnode", "pk": 6306, "fields": {"state_transition": 1560, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6307, "fields": {"state_transition": 1561, "node_type": "N", "subcondition": null, "parent": 6310}}, {"model": "template.logicnode", "pk": 6308, "fields": {"state_transition": 1561, "node_type": "S", "subcondition": 23, "parent": 6307}}, {"model": "template.logicnode", "pk": 6309, "fields": {"state_transition": 1561, "node_type": "S", "subcondition": 25, "parent": 6310}}, {"model": "template.logicnode", "pk": 6310, "fields": {"state_transition": 1561, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6311, "fields": {"state_transition": 1562, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6312, "fields": {"state_transition": 1562, "node_type": "S", "subcondition": 23, "parent": 6311}}, {"model": "template.logicnode", "pk": 6313, "fields": {"state_transition": 1563, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6314, "fields": {"state_transition": 1564, "node_type": "N", "subcondition": null, "parent": 6320}}, {"model": "template.logicnode", "pk": 6315, "fields": {"state_transition": 1564, "node_type": "S", "subcondition": 23, "parent": 6314}}, {"model": "template.logicnode", "pk": 6316, "fields": {"state_transition": 1564, "node_type": "S", "subcondition": 11, "parent": 6320}}, {"model": "template.logicnode", "pk": 6317, "fields": {"state_transition": 1564, "node_type": "S", "subcondition": 13, "parent": 6320}}, {"model": "template.logicnode", "pk": 6318, "fields": {"state_transition": 1564, "node_type": "S", "subcondition": 17, "parent": 6320}}, {"model": "template.logicnode", "pk": 6319, "fields": {"state_transition": 1564, "node_type": "S", "subcondition": 25, "parent": 6320}}, {"model": "template.logicnode", "pk": 6320, "fields": {"state_transition": 1564, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6321, "fields": {"state_transition": 1565, "node_type": "N", "subcondition": null, "parent": 6326}}, {"model": "template.logicnode", "pk": 6322, "fields": {"state_transition": 1565, "node_type": "S", "subcondition": 23, "parent": 6321}}, {"model": "template.logicnode", "pk": 6323, "fields": {"state_transition": 1565, "node_type": "S", "subcondition": 11, "parent": 6326}}, {"model": "template.logicnode", "pk": 6324, "fields": {"state_transition": 1565, "node_type": "S", "subcondition": 13, "parent": 6326}}, {"model": "template.logicnode", "pk": 6325, "fields": {"state_transition": 1565, "node_type": "S", "subcondition": 17, "parent": 6326}}, {"model": "template.logicnode", "pk": 6326, "fields": {"state_transition": 1565, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6327, "fields": {"state_transition": 1566, "node_type": "N", "subcondition": null, "parent": 6332}}, {"model": "template.logicnode", "pk": 6328, "fields": {"state_transition": 1566, "node_type": "S", "subcondition": 23, "parent": 6327}}, {"model": "template.logicnode", "pk": 6329, "fields": {"state_transition": 1566, "node_type": "S", "subcondition": 11, "parent": 6332}}, {"model": "template.logicnode", "pk": 6330, "fields": {"state_transition": 1566, "node_type": "S", "subcondition": 13, "parent": 6332}}, {"model": "template.logicnode", "pk": 6331, "fields": {"state_transition": 1566, "node_type": "S", "subcondition": 25, "parent": 6332}}, {"model": "template.logicnode", "pk": 6332, "fields": {"state_transition": 1566, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6333, "fields": {"state_transition": 1567, "node_type": "N", "subcondition": null, "parent": 6337}}, {"model": "template.logicnode", "pk": 6334, "fields": {"state_transition": 1567, "node_type": "S", "subcondition": 23, "parent": 6333}}, {"model": "template.logicnode", "pk": 6335, "fields": {"state_transition": 1567, "node_type": "S", "subcondition": 11, "parent": 6337}}, {"model": "template.logicnode", "pk": 6336, "fields": {"state_transition": 1567, "node_type": "S", "subcondition": 13, "parent": 6337}}, {"model": "template.logicnode", "pk": 6337, "fields": {"state_transition": 1567, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6338, "fields": {"state_transition": 1568, "node_type": "N", "subcondition": null, "parent": 6343}}, {"model": "template.logicnode", "pk": 6339, "fields": {"state_transition": 1568, "node_type": "S", "subcondition": 23, "parent": 6338}}, {"model": "template.logicnode", "pk": 6340, "fields": {"state_transition": 1568, "node_type": "S", "subcondition": 11, "parent": 6343}}, {"model": "template.logicnode", "pk": 6341, "fields": {"state_transition": 1568, "node_type": "S", "subcondition": 17, "parent": 6343}}, {"model": "template.logicnode", "pk": 6342, "fields": {"state_transition": 1568, "node_type": "S", "subcondition": 25, "parent": 6343}}, {"model": "template.logicnode", "pk": 6343, "fields": {"state_transition": 1568, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6344, "fields": {"state_transition": 1569, "node_type": "N", "subcondition": null, "parent": 6348}}, {"model": "template.logicnode", "pk": 6345, "fields": {"state_transition": 1569, "node_type": "S", "subcondition": 23, "parent": 6344}}, {"model": "template.logicnode", "pk": 6346, "fields": {"state_transition": 1569, "node_type": "S", "subcondition": 11, "parent": 6348}}, {"model": "template.logicnode", "pk": 6347, "fields": {"state_transition": 1569, "node_type": "S", "subcondition": 17, "parent": 6348}}, {"model": "template.logicnode", "pk": 6348, "fields": {"state_transition": 1569, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6349, "fields": {"state_transition": 1570, "node_type": "N", "subcondition": null, "parent": 6353}}, {"model": "template.logicnode", "pk": 6350, "fields": {"state_transition": 1570, "node_type": "S", "subcondition": 23, "parent": 6349}}, {"model": "template.logicnode", "pk": 6351, "fields": {"state_transition": 1570, "node_type": "S", "subcondition": 11, "parent": 6353}}, {"model": "template.logicnode", "pk": 6352, "fields": {"state_transition": 1570, "node_type": "S", "subcondition": 25, "parent": 6353}}, {"model": "template.logicnode", "pk": 6353, "fields": {"state_transition": 1570, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6354, "fields": {"state_transition": 1571, "node_type": "N", "subcondition": null, "parent": 6357}}, {"model": "template.logicnode", "pk": 6355, "fields": {"state_transition": 1571, "node_type": "S", "subcondition": 23, "parent": 6354}}, {"model": "template.logicnode", "pk": 6356, "fields": {"state_transition": 1571, "node_type": "S", "subcondition": 11, "parent": 6357}}, {"model": "template.logicnode", "pk": 6357, "fields": {"state_transition": 1571, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6358, "fields": {"state_transition": 1572, "node_type": "N", "subcondition": null, "parent": 6363}}, {"model": "template.logicnode", "pk": 6359, "fields": {"state_transition": 1572, "node_type": "S", "subcondition": 23, "parent": 6358}}, {"model": "template.logicnode", "pk": 6360, "fields": {"state_transition": 1572, "node_type": "S", "subcondition": 13, "parent": 6363}}, {"model": "template.logicnode", "pk": 6361, "fields": {"state_transition": 1572, "node_type": "S", "subcondition": 17, "parent": 6363}}, {"model": "template.logicnode", "pk": 6362, "fields": {"state_transition": 1572, "node_type": "S", "subcondition": 25, "parent": 6363}}, {"model": "template.logicnode", "pk": 6363, "fields": {"state_transition": 1572, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6364, "fields": {"state_transition": 1573, "node_type": "N", "subcondition": null, "parent": 6368}}, {"model": "template.logicnode", "pk": 6365, "fields": {"state_transition": 1573, "node_type": "S", "subcondition": 23, "parent": 6364}}, {"model": "template.logicnode", "pk": 6366, "fields": {"state_transition": 1573, "node_type": "S", "subcondition": 13, "parent": 6368}}, {"model": "template.logicnode", "pk": 6367, "fields": {"state_transition": 1573, "node_type": "S", "subcondition": 17, "parent": 6368}}, {"model": "template.logicnode", "pk": 6368, "fields": {"state_transition": 1573, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6369, "fields": {"state_transition": 1574, "node_type": "N", "subcondition": null, "parent": 6373}}, {"model": "template.logicnode", "pk": 6370, "fields": {"state_transition": 1574, "node_type": "S", "subcondition": 23, "parent": 6369}}, {"model": "template.logicnode", "pk": 6371, "fields": {"state_transition": 1574, "node_type": "S", "subcondition": 13, "parent": 6373}}, {"model": "template.logicnode", "pk": 6372, "fields": {"state_transition": 1574, "node_type": "S", "subcondition": 25, "parent": 6373}}, {"model": "template.logicnode", "pk": 6373, "fields": {"state_transition": 1574, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6374, "fields": {"state_transition": 1575, "node_type": "N", "subcondition": null, "parent": 6377}}, {"model": "template.logicnode", "pk": 6375, "fields": {"state_transition": 1575, "node_type": "S", "subcondition": 23, "parent": 6374}}, {"model": "template.logicnode", "pk": 6376, "fields": {"state_transition": 1575, "node_type": "S", "subcondition": 13, "parent": 6377}}, {"model": "template.logicnode", "pk": 6377, "fields": {"state_transition": 1575, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6378, "fields": {"state_transition": 1576, "node_type": "N", "subcondition": null, "parent": 6382}}, {"model": "template.logicnode", "pk": 6379, "fields": {"state_transition": 1576, "node_type": "S", "subcondition": 23, "parent": 6378}}, {"model": "template.logicnode", "pk": 6380, "fields": {"state_transition": 1576, "node_type": "S", "subcondition": 17, "parent": 6382}}, {"model": "template.logicnode", "pk": 6381, "fields": {"state_transition": 1576, "node_type": "S", "subcondition": 25, "parent": 6382}}, {"model": "template.logicnode", "pk": 6382, "fields": {"state_transition": 1576, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6383, "fields": {"state_transition": 1577, "node_type": "N", "subcondition": null, "parent": 6386}}, {"model": "template.logicnode", "pk": 6384, "fields": {"state_transition": 1577, "node_type": "S", "subcondition": 23, "parent": 6383}}, {"model": "template.logicnode", "pk": 6385, "fields": {"state_transition": 1577, "node_type": "S", "subcondition": 17, "parent": 6386}}, {"model": "template.logicnode", "pk": 6386, "fields": {"state_transition": 1577, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6387, "fields": {"state_transition": 1578, "node_type": "N", "subcondition": null, "parent": 6390}}, {"model": "template.logicnode", "pk": 6388, "fields": {"state_transition": 1578, "node_type": "S", "subcondition": 23, "parent": 6387}}, {"model": "template.logicnode", "pk": 6389, "fields": {"state_transition": 1578, "node_type": "S", "subcondition": 25, "parent": 6390}}, {"model": "template.logicnode", "pk": 6390, "fields": {"state_transition": 1578, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6391, "fields": {"state_transition": 1579, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6392, "fields": {"state_transition": 1579, "node_type": "S", "subcondition": 23, "parent": 6391}}, {"model": "template.logicnode", "pk": 6393, "fields": {"state_transition": 1580, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6394, "fields": {"state_transition": 1581, "node_type": "N", "subcondition": null, "parent": 6400}}, {"model": "template.logicnode", "pk": 6395, "fields": {"state_transition": 1581, "node_type": "S", "subcondition": 23, "parent": 6394}}, {"model": "template.logicnode", "pk": 6396, "fields": {"state_transition": 1581, "node_type": "S", "subcondition": 11, "parent": 6400}}, {"model": "template.logicnode", "pk": 6397, "fields": {"state_transition": 1581, "node_type": "S", "subcondition": 13, "parent": 6400}}, {"model": "template.logicnode", "pk": 6398, "fields": {"state_transition": 1581, "node_type": "S", "subcondition": 17, "parent": 6400}}, {"model": "template.logicnode", "pk": 6399, "fields": {"state_transition": 1581, "node_type": "S", "subcondition": 25, "parent": 6400}}, {"model": "template.logicnode", "pk": 6400, "fields": {"state_transition": 1581, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6401, "fields": {"state_transition": 1582, "node_type": "N", "subcondition": null, "parent": 6406}}, {"model": "template.logicnode", "pk": 6402, "fields": {"state_transition": 1582, "node_type": "S", "subcondition": 23, "parent": 6401}}, {"model": "template.logicnode", "pk": 6403, "fields": {"state_transition": 1582, "node_type": "S", "subcondition": 11, "parent": 6406}}, {"model": "template.logicnode", "pk": 6404, "fields": {"state_transition": 1582, "node_type": "S", "subcondition": 13, "parent": 6406}}, {"model": "template.logicnode", "pk": 6405, "fields": {"state_transition": 1582, "node_type": "S", "subcondition": 17, "parent": 6406}}, {"model": "template.logicnode", "pk": 6406, "fields": {"state_transition": 1582, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6407, "fields": {"state_transition": 1583, "node_type": "N", "subcondition": null, "parent": 6412}}, {"model": "template.logicnode", "pk": 6408, "fields": {"state_transition": 1583, "node_type": "S", "subcondition": 23, "parent": 6407}}, {"model": "template.logicnode", "pk": 6409, "fields": {"state_transition": 1583, "node_type": "S", "subcondition": 11, "parent": 6412}}, {"model": "template.logicnode", "pk": 6410, "fields": {"state_transition": 1583, "node_type": "S", "subcondition": 13, "parent": 6412}}, {"model": "template.logicnode", "pk": 6411, "fields": {"state_transition": 1583, "node_type": "S", "subcondition": 25, "parent": 6412}}, {"model": "template.logicnode", "pk": 6412, "fields": {"state_transition": 1583, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6413, "fields": {"state_transition": 1584, "node_type": "N", "subcondition": null, "parent": 6417}}, {"model": "template.logicnode", "pk": 6414, "fields": {"state_transition": 1584, "node_type": "S", "subcondition": 23, "parent": 6413}}, {"model": "template.logicnode", "pk": 6415, "fields": {"state_transition": 1584, "node_type": "S", "subcondition": 11, "parent": 6417}}, {"model": "template.logicnode", "pk": 6416, "fields": {"state_transition": 1584, "node_type": "S", "subcondition": 13, "parent": 6417}}, {"model": "template.logicnode", "pk": 6417, "fields": {"state_transition": 1584, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6418, "fields": {"state_transition": 1585, "node_type": "N", "subcondition": null, "parent": 6423}}, {"model": "template.logicnode", "pk": 6419, "fields": {"state_transition": 1585, "node_type": "S", "subcondition": 23, "parent": 6418}}, {"model": "template.logicnode", "pk": 6420, "fields": {"state_transition": 1585, "node_type": "S", "subcondition": 11, "parent": 6423}}, {"model": "template.logicnode", "pk": 6421, "fields": {"state_transition": 1585, "node_type": "S", "subcondition": 17, "parent": 6423}}, {"model": "template.logicnode", "pk": 6422, "fields": {"state_transition": 1585, "node_type": "S", "subcondition": 25, "parent": 6423}}, {"model": "template.logicnode", "pk": 6423, "fields": {"state_transition": 1585, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6424, "fields": {"state_transition": 1586, "node_type": "N", "subcondition": null, "parent": 6428}}, {"model": "template.logicnode", "pk": 6425, "fields": {"state_transition": 1586, "node_type": "S", "subcondition": 23, "parent": 6424}}, {"model": "template.logicnode", "pk": 6426, "fields": {"state_transition": 1586, "node_type": "S", "subcondition": 11, "parent": 6428}}, {"model": "template.logicnode", "pk": 6427, "fields": {"state_transition": 1586, "node_type": "S", "subcondition": 17, "parent": 6428}}, {"model": "template.logicnode", "pk": 6428, "fields": {"state_transition": 1586, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6429, "fields": {"state_transition": 1587, "node_type": "N", "subcondition": null, "parent": 6433}}, {"model": "template.logicnode", "pk": 6430, "fields": {"state_transition": 1587, "node_type": "S", "subcondition": 23, "parent": 6429}}, {"model": "template.logicnode", "pk": 6431, "fields": {"state_transition": 1587, "node_type": "S", "subcondition": 11, "parent": 6433}}, {"model": "template.logicnode", "pk": 6432, "fields": {"state_transition": 1587, "node_type": "S", "subcondition": 25, "parent": 6433}}, {"model": "template.logicnode", "pk": 6433, "fields": {"state_transition": 1587, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6434, "fields": {"state_transition": 1588, "node_type": "N", "subcondition": null, "parent": 6437}}, {"model": "template.logicnode", "pk": 6435, "fields": {"state_transition": 1588, "node_type": "S", "subcondition": 23, "parent": 6434}}, {"model": "template.logicnode", "pk": 6436, "fields": {"state_transition": 1588, "node_type": "S", "subcondition": 11, "parent": 6437}}, {"model": "template.logicnode", "pk": 6437, "fields": {"state_transition": 1588, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6438, "fields": {"state_transition": 1589, "node_type": "N", "subcondition": null, "parent": 6443}}, {"model": "template.logicnode", "pk": 6439, "fields": {"state_transition": 1589, "node_type": "S", "subcondition": 23, "parent": 6438}}, {"model": "template.logicnode", "pk": 6440, "fields": {"state_transition": 1589, "node_type": "S", "subcondition": 13, "parent": 6443}}, {"model": "template.logicnode", "pk": 6441, "fields": {"state_transition": 1589, "node_type": "S", "subcondition": 17, "parent": 6443}}, {"model": "template.logicnode", "pk": 6442, "fields": {"state_transition": 1589, "node_type": "S", "subcondition": 25, "parent": 6443}}, {"model": "template.logicnode", "pk": 6443, "fields": {"state_transition": 1589, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6444, "fields": {"state_transition": 1590, "node_type": "N", "subcondition": null, "parent": 6448}}, {"model": "template.logicnode", "pk": 6445, "fields": {"state_transition": 1590, "node_type": "S", "subcondition": 23, "parent": 6444}}, {"model": "template.logicnode", "pk": 6446, "fields": {"state_transition": 1590, "node_type": "S", "subcondition": 13, "parent": 6448}}, {"model": "template.logicnode", "pk": 6447, "fields": {"state_transition": 1590, "node_type": "S", "subcondition": 17, "parent": 6448}}, {"model": "template.logicnode", "pk": 6448, "fields": {"state_transition": 1590, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6449, "fields": {"state_transition": 1591, "node_type": "N", "subcondition": null, "parent": 6453}}, {"model": "template.logicnode", "pk": 6450, "fields": {"state_transition": 1591, "node_type": "S", "subcondition": 23, "parent": 6449}}, {"model": "template.logicnode", "pk": 6451, "fields": {"state_transition": 1591, "node_type": "S", "subcondition": 13, "parent": 6453}}, {"model": "template.logicnode", "pk": 6452, "fields": {"state_transition": 1591, "node_type": "S", "subcondition": 25, "parent": 6453}}, {"model": "template.logicnode", "pk": 6453, "fields": {"state_transition": 1591, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6454, "fields": {"state_transition": 1592, "node_type": "N", "subcondition": null, "parent": 6457}}, {"model": "template.logicnode", "pk": 6455, "fields": {"state_transition": 1592, "node_type": "S", "subcondition": 23, "parent": 6454}}, {"model": "template.logicnode", "pk": 6456, "fields": {"state_transition": 1592, "node_type": "S", "subcondition": 13, "parent": 6457}}, {"model": "template.logicnode", "pk": 6457, "fields": {"state_transition": 1592, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6458, "fields": {"state_transition": 1593, "node_type": "N", "subcondition": null, "parent": 6462}}, {"model": "template.logicnode", "pk": 6459, "fields": {"state_transition": 1593, "node_type": "S", "subcondition": 23, "parent": 6458}}, {"model": "template.logicnode", "pk": 6460, "fields": {"state_transition": 1593, "node_type": "S", "subcondition": 17, "parent": 6462}}, {"model": "template.logicnode", "pk": 6461, "fields": {"state_transition": 1593, "node_type": "S", "subcondition": 25, "parent": 6462}}, {"model": "template.logicnode", "pk": 6462, "fields": {"state_transition": 1593, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6463, "fields": {"state_transition": 1594, "node_type": "N", "subcondition": null, "parent": 6466}}, {"model": "template.logicnode", "pk": 6464, "fields": {"state_transition": 1594, "node_type": "S", "subcondition": 23, "parent": 6463}}, {"model": "template.logicnode", "pk": 6465, "fields": {"state_transition": 1594, "node_type": "S", "subcondition": 17, "parent": 6466}}, {"model": "template.logicnode", "pk": 6466, "fields": {"state_transition": 1594, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6467, "fields": {"state_transition": 1595, "node_type": "N", "subcondition": null, "parent": 6470}}, {"model": "template.logicnode", "pk": 6468, "fields": {"state_transition": 1595, "node_type": "S", "subcondition": 23, "parent": 6467}}, {"model": "template.logicnode", "pk": 6469, "fields": {"state_transition": 1595, "node_type": "S", "subcondition": 25, "parent": 6470}}, {"model": "template.logicnode", "pk": 6470, "fields": {"state_transition": 1595, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6471, "fields": {"state_transition": 1596, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6472, "fields": {"state_transition": 1596, "node_type": "S", "subcondition": 23, "parent": 6471}}, {"model": "template.logicnode", "pk": 6473, "fields": {"state_transition": 1597, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6474, "fields": {"state_transition": 1598, "node_type": "N", "subcondition": null, "parent": 6480}}, {"model": "template.logicnode", "pk": 6475, "fields": {"state_transition": 1598, "node_type": "S", "subcondition": 23, "parent": 6474}}, {"model": "template.logicnode", "pk": 6476, "fields": {"state_transition": 1598, "node_type": "S", "subcondition": 11, "parent": 6480}}, {"model": "template.logicnode", "pk": 6477, "fields": {"state_transition": 1598, "node_type": "S", "subcondition": 13, "parent": 6480}}, {"model": "template.logicnode", "pk": 6478, "fields": {"state_transition": 1598, "node_type": "S", "subcondition": 17, "parent": 6480}}, {"model": "template.logicnode", "pk": 6479, "fields": {"state_transition": 1598, "node_type": "S", "subcondition": 25, "parent": 6480}}, {"model": "template.logicnode", "pk": 6480, "fields": {"state_transition": 1598, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6481, "fields": {"state_transition": 1599, "node_type": "N", "subcondition": null, "parent": 6486}}, {"model": "template.logicnode", "pk": 6482, "fields": {"state_transition": 1599, "node_type": "S", "subcondition": 23, "parent": 6481}}, {"model": "template.logicnode", "pk": 6483, "fields": {"state_transition": 1599, "node_type": "S", "subcondition": 11, "parent": 6486}}, {"model": "template.logicnode", "pk": 6484, "fields": {"state_transition": 1599, "node_type": "S", "subcondition": 13, "parent": 6486}}, {"model": "template.logicnode", "pk": 6485, "fields": {"state_transition": 1599, "node_type": "S", "subcondition": 17, "parent": 6486}}, {"model": "template.logicnode", "pk": 6486, "fields": {"state_transition": 1599, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6487, "fields": {"state_transition": 1600, "node_type": "N", "subcondition": null, "parent": 6492}}, {"model": "template.logicnode", "pk": 6488, "fields": {"state_transition": 1600, "node_type": "S", "subcondition": 23, "parent": 6487}}, {"model": "template.logicnode", "pk": 6489, "fields": {"state_transition": 1600, "node_type": "S", "subcondition": 11, "parent": 6492}}, {"model": "template.logicnode", "pk": 6490, "fields": {"state_transition": 1600, "node_type": "S", "subcondition": 13, "parent": 6492}}, {"model": "template.logicnode", "pk": 6491, "fields": {"state_transition": 1600, "node_type": "S", "subcondition": 25, "parent": 6492}}, {"model": "template.logicnode", "pk": 6492, "fields": {"state_transition": 1600, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6493, "fields": {"state_transition": 1601, "node_type": "N", "subcondition": null, "parent": 6497}}, {"model": "template.logicnode", "pk": 6494, "fields": {"state_transition": 1601, "node_type": "S", "subcondition": 23, "parent": 6493}}, {"model": "template.logicnode", "pk": 6495, "fields": {"state_transition": 1601, "node_type": "S", "subcondition": 11, "parent": 6497}}, {"model": "template.logicnode", "pk": 6496, "fields": {"state_transition": 1601, "node_type": "S", "subcondition": 13, "parent": 6497}}, {"model": "template.logicnode", "pk": 6497, "fields": {"state_transition": 1601, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6498, "fields": {"state_transition": 1602, "node_type": "N", "subcondition": null, "parent": 6503}}, {"model": "template.logicnode", "pk": 6499, "fields": {"state_transition": 1602, "node_type": "S", "subcondition": 23, "parent": 6498}}, {"model": "template.logicnode", "pk": 6500, "fields": {"state_transition": 1602, "node_type": "S", "subcondition": 11, "parent": 6503}}, {"model": "template.logicnode", "pk": 6501, "fields": {"state_transition": 1602, "node_type": "S", "subcondition": 17, "parent": 6503}}, {"model": "template.logicnode", "pk": 6502, "fields": {"state_transition": 1602, "node_type": "S", "subcondition": 25, "parent": 6503}}, {"model": "template.logicnode", "pk": 6503, "fields": {"state_transition": 1602, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6504, "fields": {"state_transition": 1603, "node_type": "N", "subcondition": null, "parent": 6508}}, {"model": "template.logicnode", "pk": 6505, "fields": {"state_transition": 1603, "node_type": "S", "subcondition": 23, "parent": 6504}}, {"model": "template.logicnode", "pk": 6506, "fields": {"state_transition": 1603, "node_type": "S", "subcondition": 11, "parent": 6508}}, {"model": "template.logicnode", "pk": 6507, "fields": {"state_transition": 1603, "node_type": "S", "subcondition": 17, "parent": 6508}}, {"model": "template.logicnode", "pk": 6508, "fields": {"state_transition": 1603, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6509, "fields": {"state_transition": 1604, "node_type": "N", "subcondition": null, "parent": 6513}}, {"model": "template.logicnode", "pk": 6510, "fields": {"state_transition": 1604, "node_type": "S", "subcondition": 23, "parent": 6509}}, {"model": "template.logicnode", "pk": 6511, "fields": {"state_transition": 1604, "node_type": "S", "subcondition": 11, "parent": 6513}}, {"model": "template.logicnode", "pk": 6512, "fields": {"state_transition": 1604, "node_type": "S", "subcondition": 25, "parent": 6513}}, {"model": "template.logicnode", "pk": 6513, "fields": {"state_transition": 1604, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6514, "fields": {"state_transition": 1605, "node_type": "N", "subcondition": null, "parent": 6517}}, {"model": "template.logicnode", "pk": 6515, "fields": {"state_transition": 1605, "node_type": "S", "subcondition": 23, "parent": 6514}}, {"model": "template.logicnode", "pk": 6516, "fields": {"state_transition": 1605, "node_type": "S", "subcondition": 11, "parent": 6517}}, {"model": "template.logicnode", "pk": 6517, "fields": {"state_transition": 1605, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6518, "fields": {"state_transition": 1606, "node_type": "N", "subcondition": null, "parent": 6523}}, {"model": "template.logicnode", "pk": 6519, "fields": {"state_transition": 1606, "node_type": "S", "subcondition": 23, "parent": 6518}}, {"model": "template.logicnode", "pk": 6520, "fields": {"state_transition": 1606, "node_type": "S", "subcondition": 13, "parent": 6523}}, {"model": "template.logicnode", "pk": 6521, "fields": {"state_transition": 1606, "node_type": "S", "subcondition": 17, "parent": 6523}}, {"model": "template.logicnode", "pk": 6522, "fields": {"state_transition": 1606, "node_type": "S", "subcondition": 25, "parent": 6523}}, {"model": "template.logicnode", "pk": 6523, "fields": {"state_transition": 1606, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6524, "fields": {"state_transition": 1607, "node_type": "N", "subcondition": null, "parent": 6528}}, {"model": "template.logicnode", "pk": 6525, "fields": {"state_transition": 1607, "node_type": "S", "subcondition": 23, "parent": 6524}}, {"model": "template.logicnode", "pk": 6526, "fields": {"state_transition": 1607, "node_type": "S", "subcondition": 13, "parent": 6528}}, {"model": "template.logicnode", "pk": 6527, "fields": {"state_transition": 1607, "node_type": "S", "subcondition": 17, "parent": 6528}}, {"model": "template.logicnode", "pk": 6528, "fields": {"state_transition": 1607, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6529, "fields": {"state_transition": 1608, "node_type": "N", "subcondition": null, "parent": 6533}}, {"model": "template.logicnode", "pk": 6530, "fields": {"state_transition": 1608, "node_type": "S", "subcondition": 23, "parent": 6529}}, {"model": "template.logicnode", "pk": 6531, "fields": {"state_transition": 1608, "node_type": "S", "subcondition": 13, "parent": 6533}}, {"model": "template.logicnode", "pk": 6532, "fields": {"state_transition": 1608, "node_type": "S", "subcondition": 25, "parent": 6533}}, {"model": "template.logicnode", "pk": 6533, "fields": {"state_transition": 1608, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6534, "fields": {"state_transition": 1609, "node_type": "N", "subcondition": null, "parent": 6537}}, {"model": "template.logicnode", "pk": 6535, "fields": {"state_transition": 1609, "node_type": "S", "subcondition": 23, "parent": 6534}}, {"model": "template.logicnode", "pk": 6536, "fields": {"state_transition": 1609, "node_type": "S", "subcondition": 13, "parent": 6537}}, {"model": "template.logicnode", "pk": 6537, "fields": {"state_transition": 1609, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6538, "fields": {"state_transition": 1610, "node_type": "N", "subcondition": null, "parent": 6542}}, {"model": "template.logicnode", "pk": 6539, "fields": {"state_transition": 1610, "node_type": "S", "subcondition": 23, "parent": 6538}}, {"model": "template.logicnode", "pk": 6540, "fields": {"state_transition": 1610, "node_type": "S", "subcondition": 17, "parent": 6542}}, {"model": "template.logicnode", "pk": 6541, "fields": {"state_transition": 1610, "node_type": "S", "subcondition": 25, "parent": 6542}}, {"model": "template.logicnode", "pk": 6542, "fields": {"state_transition": 1610, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6543, "fields": {"state_transition": 1611, "node_type": "N", "subcondition": null, "parent": 6546}}, {"model": "template.logicnode", "pk": 6544, "fields": {"state_transition": 1611, "node_type": "S", "subcondition": 23, "parent": 6543}}, {"model": "template.logicnode", "pk": 6545, "fields": {"state_transition": 1611, "node_type": "S", "subcondition": 17, "parent": 6546}}, {"model": "template.logicnode", "pk": 6546, "fields": {"state_transition": 1611, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6547, "fields": {"state_transition": 1612, "node_type": "N", "subcondition": null, "parent": 6550}}, {"model": "template.logicnode", "pk": 6548, "fields": {"state_transition": 1612, "node_type": "S", "subcondition": 23, "parent": 6547}}, {"model": "template.logicnode", "pk": 6549, "fields": {"state_transition": 1612, "node_type": "S", "subcondition": 25, "parent": 6550}}, {"model": "template.logicnode", "pk": 6550, "fields": {"state_transition": 1612, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6551, "fields": {"state_transition": 1613, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6552, "fields": {"state_transition": 1613, "node_type": "S", "subcondition": 23, "parent": 6551}}, {"model": "template.logicnode", "pk": 6553, "fields": {"state_transition": 1614, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6554, "fields": {"state_transition": 1615, "node_type": "N", "subcondition": null, "parent": 6560}}, {"model": "template.logicnode", "pk": 6555, "fields": {"state_transition": 1615, "node_type": "S", "subcondition": 23, "parent": 6554}}, {"model": "template.logicnode", "pk": 6556, "fields": {"state_transition": 1615, "node_type": "S", "subcondition": 11, "parent": 6560}}, {"model": "template.logicnode", "pk": 6557, "fields": {"state_transition": 1615, "node_type": "S", "subcondition": 13, "parent": 6560}}, {"model": "template.logicnode", "pk": 6558, "fields": {"state_transition": 1615, "node_type": "S", "subcondition": 17, "parent": 6560}}, {"model": "template.logicnode", "pk": 6559, "fields": {"state_transition": 1615, "node_type": "S", "subcondition": 25, "parent": 6560}}, {"model": "template.logicnode", "pk": 6560, "fields": {"state_transition": 1615, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6561, "fields": {"state_transition": 1616, "node_type": "N", "subcondition": null, "parent": 6566}}, {"model": "template.logicnode", "pk": 6562, "fields": {"state_transition": 1616, "node_type": "S", "subcondition": 23, "parent": 6561}}, {"model": "template.logicnode", "pk": 6563, "fields": {"state_transition": 1616, "node_type": "S", "subcondition": 11, "parent": 6566}}, {"model": "template.logicnode", "pk": 6564, "fields": {"state_transition": 1616, "node_type": "S", "subcondition": 13, "parent": 6566}}, {"model": "template.logicnode", "pk": 6565, "fields": {"state_transition": 1616, "node_type": "S", "subcondition": 17, "parent": 6566}}, {"model": "template.logicnode", "pk": 6566, "fields": {"state_transition": 1616, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6567, "fields": {"state_transition": 1617, "node_type": "N", "subcondition": null, "parent": 6572}}, {"model": "template.logicnode", "pk": 6568, "fields": {"state_transition": 1617, "node_type": "S", "subcondition": 23, "parent": 6567}}, {"model": "template.logicnode", "pk": 6569, "fields": {"state_transition": 1617, "node_type": "S", "subcondition": 11, "parent": 6572}}, {"model": "template.logicnode", "pk": 6570, "fields": {"state_transition": 1617, "node_type": "S", "subcondition": 13, "parent": 6572}}, {"model": "template.logicnode", "pk": 6571, "fields": {"state_transition": 1617, "node_type": "S", "subcondition": 25, "parent": 6572}}, {"model": "template.logicnode", "pk": 6572, "fields": {"state_transition": 1617, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6573, "fields": {"state_transition": 1618, "node_type": "N", "subcondition": null, "parent": 6577}}, {"model": "template.logicnode", "pk": 6574, "fields": {"state_transition": 1618, "node_type": "S", "subcondition": 23, "parent": 6573}}, {"model": "template.logicnode", "pk": 6575, "fields": {"state_transition": 1618, "node_type": "S", "subcondition": 11, "parent": 6577}}, {"model": "template.logicnode", "pk": 6576, "fields": {"state_transition": 1618, "node_type": "S", "subcondition": 13, "parent": 6577}}, {"model": "template.logicnode", "pk": 6577, "fields": {"state_transition": 1618, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6578, "fields": {"state_transition": 1619, "node_type": "N", "subcondition": null, "parent": 6583}}, {"model": "template.logicnode", "pk": 6579, "fields": {"state_transition": 1619, "node_type": "S", "subcondition": 23, "parent": 6578}}, {"model": "template.logicnode", "pk": 6580, "fields": {"state_transition": 1619, "node_type": "S", "subcondition": 11, "parent": 6583}}, {"model": "template.logicnode", "pk": 6581, "fields": {"state_transition": 1619, "node_type": "S", "subcondition": 17, "parent": 6583}}, {"model": "template.logicnode", "pk": 6582, "fields": {"state_transition": 1619, "node_type": "S", "subcondition": 25, "parent": 6583}}, {"model": "template.logicnode", "pk": 6583, "fields": {"state_transition": 1619, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6584, "fields": {"state_transition": 1620, "node_type": "N", "subcondition": null, "parent": 6588}}, {"model": "template.logicnode", "pk": 6585, "fields": {"state_transition": 1620, "node_type": "S", "subcondition": 23, "parent": 6584}}, {"model": "template.logicnode", "pk": 6586, "fields": {"state_transition": 1620, "node_type": "S", "subcondition": 11, "parent": 6588}}, {"model": "template.logicnode", "pk": 6587, "fields": {"state_transition": 1620, "node_type": "S", "subcondition": 17, "parent": 6588}}, {"model": "template.logicnode", "pk": 6588, "fields": {"state_transition": 1620, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6589, "fields": {"state_transition": 1621, "node_type": "N", "subcondition": null, "parent": 6593}}, {"model": "template.logicnode", "pk": 6590, "fields": {"state_transition": 1621, "node_type": "S", "subcondition": 23, "parent": 6589}}, {"model": "template.logicnode", "pk": 6591, "fields": {"state_transition": 1621, "node_type": "S", "subcondition": 11, "parent": 6593}}, {"model": "template.logicnode", "pk": 6592, "fields": {"state_transition": 1621, "node_type": "S", "subcondition": 25, "parent": 6593}}, {"model": "template.logicnode", "pk": 6593, "fields": {"state_transition": 1621, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6594, "fields": {"state_transition": 1622, "node_type": "N", "subcondition": null, "parent": 6597}}, {"model": "template.logicnode", "pk": 6595, "fields": {"state_transition": 1622, "node_type": "S", "subcondition": 23, "parent": 6594}}, {"model": "template.logicnode", "pk": 6596, "fields": {"state_transition": 1622, "node_type": "S", "subcondition": 11, "parent": 6597}}, {"model": "template.logicnode", "pk": 6597, "fields": {"state_transition": 1622, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6598, "fields": {"state_transition": 1623, "node_type": "N", "subcondition": null, "parent": 6603}}, {"model": "template.logicnode", "pk": 6599, "fields": {"state_transition": 1623, "node_type": "S", "subcondition": 23, "parent": 6598}}, {"model": "template.logicnode", "pk": 6600, "fields": {"state_transition": 1623, "node_type": "S", "subcondition": 13, "parent": 6603}}, {"model": "template.logicnode", "pk": 6601, "fields": {"state_transition": 1623, "node_type": "S", "subcondition": 17, "parent": 6603}}, {"model": "template.logicnode", "pk": 6602, "fields": {"state_transition": 1623, "node_type": "S", "subcondition": 25, "parent": 6603}}, {"model": "template.logicnode", "pk": 6603, "fields": {"state_transition": 1623, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6604, "fields": {"state_transition": 1624, "node_type": "N", "subcondition": null, "parent": 6608}}, {"model": "template.logicnode", "pk": 6605, "fields": {"state_transition": 1624, "node_type": "S", "subcondition": 23, "parent": 6604}}, {"model": "template.logicnode", "pk": 6606, "fields": {"state_transition": 1624, "node_type": "S", "subcondition": 13, "parent": 6608}}, {"model": "template.logicnode", "pk": 6607, "fields": {"state_transition": 1624, "node_type": "S", "subcondition": 17, "parent": 6608}}, {"model": "template.logicnode", "pk": 6608, "fields": {"state_transition": 1624, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6609, "fields": {"state_transition": 1625, "node_type": "N", "subcondition": null, "parent": 6613}}, {"model": "template.logicnode", "pk": 6610, "fields": {"state_transition": 1625, "node_type": "S", "subcondition": 23, "parent": 6609}}, {"model": "template.logicnode", "pk": 6611, "fields": {"state_transition": 1625, "node_type": "S", "subcondition": 13, "parent": 6613}}, {"model": "template.logicnode", "pk": 6612, "fields": {"state_transition": 1625, "node_type": "S", "subcondition": 25, "parent": 6613}}, {"model": "template.logicnode", "pk": 6613, "fields": {"state_transition": 1625, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6614, "fields": {"state_transition": 1626, "node_type": "N", "subcondition": null, "parent": 6617}}, {"model": "template.logicnode", "pk": 6615, "fields": {"state_transition": 1626, "node_type": "S", "subcondition": 23, "parent": 6614}}, {"model": "template.logicnode", "pk": 6616, "fields": {"state_transition": 1626, "node_type": "S", "subcondition": 13, "parent": 6617}}, {"model": "template.logicnode", "pk": 6617, "fields": {"state_transition": 1626, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6618, "fields": {"state_transition": 1627, "node_type": "N", "subcondition": null, "parent": 6622}}, {"model": "template.logicnode", "pk": 6619, "fields": {"state_transition": 1627, "node_type": "S", "subcondition": 23, "parent": 6618}}, {"model": "template.logicnode", "pk": 6620, "fields": {"state_transition": 1627, "node_type": "S", "subcondition": 17, "parent": 6622}}, {"model": "template.logicnode", "pk": 6621, "fields": {"state_transition": 1627, "node_type": "S", "subcondition": 25, "parent": 6622}}, {"model": "template.logicnode", "pk": 6622, "fields": {"state_transition": 1627, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6623, "fields": {"state_transition": 1628, "node_type": "N", "subcondition": null, "parent": 6626}}, {"model": "template.logicnode", "pk": 6624, "fields": {"state_transition": 1628, "node_type": "S", "subcondition": 23, "parent": 6623}}, {"model": "template.logicnode", "pk": 6625, "fields": {"state_transition": 1628, "node_type": "S", "subcondition": 17, "parent": 6626}}, {"model": "template.logicnode", "pk": 6626, "fields": {"state_transition": 1628, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6627, "fields": {"state_transition": 1629, "node_type": "N", "subcondition": null, "parent": 6630}}, {"model": "template.logicnode", "pk": 6628, "fields": {"state_transition": 1629, "node_type": "S", "subcondition": 23, "parent": 6627}}, {"model": "template.logicnode", "pk": 6629, "fields": {"state_transition": 1629, "node_type": "S", "subcondition": 25, "parent": 6630}}, {"model": "template.logicnode", "pk": 6630, "fields": {"state_transition": 1629, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6631, "fields": {"state_transition": 1630, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6632, "fields": {"state_transition": 1630, "node_type": "S", "subcondition": 23, "parent": 6631}}, {"model": "template.logicnode", "pk": 6633, "fields": {"state_transition": 1631, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6634, "fields": {"state_transition": 1632, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6635, "fields": {"state_transition": 1633, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6636, "fields": {"state_transition": 1634, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6637, "fields": {"state_transition": 1635, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6638, "fields": {"state_transition": 1636, "node_type": "N", "subcondition": null, "parent": 6642}}, {"model": "template.logicnode", "pk": 6639, "fields": {"state_transition": 1636, "node_type": "S", "subcondition": 23, "parent": 6638}}, {"model": "template.logicnode", "pk": 6640, "fields": {"state_transition": 1636, "node_type": "S", "subcondition": 14, "parent": 6642}}, {"model": "template.logicnode", "pk": 6641, "fields": {"state_transition": 1636, "node_type": "S", "subcondition": 16, "parent": 6642}}, {"model": "template.logicnode", "pk": 6642, "fields": {"state_transition": 1636, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6643, "fields": {"state_transition": 1637, "node_type": "N", "subcondition": null, "parent": 6646}}, {"model": "template.logicnode", "pk": 6644, "fields": {"state_transition": 1637, "node_type": "S", "subcondition": 23, "parent": 6643}}, {"model": "template.logicnode", "pk": 6645, "fields": {"state_transition": 1637, "node_type": "S", "subcondition": 14, "parent": 6646}}, {"model": "template.logicnode", "pk": 6646, "fields": {"state_transition": 1637, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6647, "fields": {"state_transition": 1638, "node_type": "N", "subcondition": null, "parent": 6651}}, {"model": "template.logicnode", "pk": 6648, "fields": {"state_transition": 1638, "node_type": "S", "subcondition": 23, "parent": 6647}}, {"model": "template.logicnode", "pk": 6649, "fields": {"state_transition": 1638, "node_type": "S", "subcondition": 15, "parent": 6651}}, {"model": "template.logicnode", "pk": 6650, "fields": {"state_transition": 1638, "node_type": "S", "subcondition": 16, "parent": 6651}}, {"model": "template.logicnode", "pk": 6651, "fields": {"state_transition": 1638, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6652, "fields": {"state_transition": 1639, "node_type": "N", "subcondition": null, "parent": 6655}}, {"model": "template.logicnode", "pk": 6653, "fields": {"state_transition": 1639, "node_type": "S", "subcondition": 23, "parent": 6652}}, {"model": "template.logicnode", "pk": 6654, "fields": {"state_transition": 1639, "node_type": "S", "subcondition": 15, "parent": 6655}}, {"model": "template.logicnode", "pk": 6655, "fields": {"state_transition": 1639, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6656, "fields": {"state_transition": 1640, "node_type": "N", "subcondition": null, "parent": 6659}}, {"model": "template.logicnode", "pk": 6657, "fields": {"state_transition": 1640, "node_type": "S", "subcondition": 23, "parent": 6656}}, {"model": "template.logicnode", "pk": 6658, "fields": {"state_transition": 1640, "node_type": "S", "subcondition": 16, "parent": 6659}}, {"model": "template.logicnode", "pk": 6659, "fields": {"state_transition": 1640, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6660, "fields": {"state_transition": 1641, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6661, "fields": {"state_transition": 1641, "node_type": "S", "subcondition": 23, "parent": 6660}}, {"model": "template.logicnode", "pk": 6662, "fields": {"state_transition": 1642, "node_type": "S", "subcondition": 23, "parent": 6664}}, {"model": "template.logicnode", "pk": 6663, "fields": {"state_transition": 1642, "node_type": "S", "subcondition": 16, "parent": 6664}}, {"model": "template.logicnode", "pk": 6664, "fields": {"state_transition": 1642, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6665, "fields": {"state_transition": 1643, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6666, "fields": {"state_transition": 1644, "node_type": "N", "subcondition": null, "parent": 6670}}, {"model": "template.logicnode", "pk": 6667, "fields": {"state_transition": 1644, "node_type": "S", "subcondition": 23, "parent": 6666}}, {"model": "template.logicnode", "pk": 6668, "fields": {"state_transition": 1644, "node_type": "S", "subcondition": 14, "parent": 6670}}, {"model": "template.logicnode", "pk": 6669, "fields": {"state_transition": 1644, "node_type": "S", "subcondition": 16, "parent": 6670}}, {"model": "template.logicnode", "pk": 6670, "fields": {"state_transition": 1644, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6671, "fields": {"state_transition": 1645, "node_type": "N", "subcondition": null, "parent": 6674}}, {"model": "template.logicnode", "pk": 6672, "fields": {"state_transition": 1645, "node_type": "S", "subcondition": 23, "parent": 6671}}, {"model": "template.logicnode", "pk": 6673, "fields": {"state_transition": 1645, "node_type": "S", "subcondition": 14, "parent": 6674}}, {"model": "template.logicnode", "pk": 6674, "fields": {"state_transition": 1645, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6675, "fields": {"state_transition": 1646, "node_type": "N", "subcondition": null, "parent": 6679}}, {"model": "template.logicnode", "pk": 6676, "fields": {"state_transition": 1646, "node_type": "S", "subcondition": 23, "parent": 6675}}, {"model": "template.logicnode", "pk": 6677, "fields": {"state_transition": 1646, "node_type": "S", "subcondition": 15, "parent": 6679}}, {"model": "template.logicnode", "pk": 6678, "fields": {"state_transition": 1646, "node_type": "S", "subcondition": 16, "parent": 6679}}, {"model": "template.logicnode", "pk": 6679, "fields": {"state_transition": 1646, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6680, "fields": {"state_transition": 1647, "node_type": "N", "subcondition": null, "parent": 6683}}, {"model": "template.logicnode", "pk": 6681, "fields": {"state_transition": 1647, "node_type": "S", "subcondition": 23, "parent": 6680}}, {"model": "template.logicnode", "pk": 6682, "fields": {"state_transition": 1647, "node_type": "S", "subcondition": 15, "parent": 6683}}, {"model": "template.logicnode", "pk": 6683, "fields": {"state_transition": 1647, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6684, "fields": {"state_transition": 1648, "node_type": "N", "subcondition": null, "parent": 6687}}, {"model": "template.logicnode", "pk": 6685, "fields": {"state_transition": 1648, "node_type": "S", "subcondition": 23, "parent": 6684}}, {"model": "template.logicnode", "pk": 6686, "fields": {"state_transition": 1648, "node_type": "S", "subcondition": 16, "parent": 6687}}, {"model": "template.logicnode", "pk": 6687, "fields": {"state_transition": 1648, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6688, "fields": {"state_transition": 1649, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6689, "fields": {"state_transition": 1649, "node_type": "S", "subcondition": 23, "parent": 6688}}, {"model": "template.logicnode", "pk": 6690, "fields": {"state_transition": 1650, "node_type": "S", "subcondition": 23, "parent": 6692}}, {"model": "template.logicnode", "pk": 6691, "fields": {"state_transition": 1650, "node_type": "S", "subcondition": 16, "parent": 6692}}, {"model": "template.logicnode", "pk": 6692, "fields": {"state_transition": 1650, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6693, "fields": {"state_transition": 1651, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6694, "fields": {"state_transition": 1652, "node_type": "N", "subcondition": null, "parent": 6698}}, {"model": "template.logicnode", "pk": 6695, "fields": {"state_transition": 1652, "node_type": "S", "subcondition": 23, "parent": 6694}}, {"model": "template.logicnode", "pk": 6696, "fields": {"state_transition": 1652, "node_type": "S", "subcondition": 14, "parent": 6698}}, {"model": "template.logicnode", "pk": 6697, "fields": {"state_transition": 1652, "node_type": "S", "subcondition": 16, "parent": 6698}}, {"model": "template.logicnode", "pk": 6698, "fields": {"state_transition": 1652, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6699, "fields": {"state_transition": 1653, "node_type": "N", "subcondition": null, "parent": 6702}}, {"model": "template.logicnode", "pk": 6700, "fields": {"state_transition": 1653, "node_type": "S", "subcondition": 23, "parent": 6699}}, {"model": "template.logicnode", "pk": 6701, "fields": {"state_transition": 1653, "node_type": "S", "subcondition": 14, "parent": 6702}}, {"model": "template.logicnode", "pk": 6702, "fields": {"state_transition": 1653, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6703, "fields": {"state_transition": 1654, "node_type": "N", "subcondition": null, "parent": 6707}}, {"model": "template.logicnode", "pk": 6704, "fields": {"state_transition": 1654, "node_type": "S", "subcondition": 23, "parent": 6703}}, {"model": "template.logicnode", "pk": 6705, "fields": {"state_transition": 1654, "node_type": "S", "subcondition": 15, "parent": 6707}}, {"model": "template.logicnode", "pk": 6706, "fields": {"state_transition": 1654, "node_type": "S", "subcondition": 16, "parent": 6707}}, {"model": "template.logicnode", "pk": 6707, "fields": {"state_transition": 1654, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6708, "fields": {"state_transition": 1655, "node_type": "N", "subcondition": null, "parent": 6711}}, {"model": "template.logicnode", "pk": 6709, "fields": {"state_transition": 1655, "node_type": "S", "subcondition": 23, "parent": 6708}}, {"model": "template.logicnode", "pk": 6710, "fields": {"state_transition": 1655, "node_type": "S", "subcondition": 15, "parent": 6711}}, {"model": "template.logicnode", "pk": 6711, "fields": {"state_transition": 1655, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6712, "fields": {"state_transition": 1656, "node_type": "N", "subcondition": null, "parent": 6715}}, {"model": "template.logicnode", "pk": 6713, "fields": {"state_transition": 1656, "node_type": "S", "subcondition": 23, "parent": 6712}}, {"model": "template.logicnode", "pk": 6714, "fields": {"state_transition": 1656, "node_type": "S", "subcondition": 16, "parent": 6715}}, {"model": "template.logicnode", "pk": 6715, "fields": {"state_transition": 1656, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6716, "fields": {"state_transition": 1657, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6717, "fields": {"state_transition": 1657, "node_type": "S", "subcondition": 23, "parent": 6716}}, {"model": "template.logicnode", "pk": 6718, "fields": {"state_transition": 1658, "node_type": "S", "subcondition": 23, "parent": 6720}}, {"model": "template.logicnode", "pk": 6719, "fields": {"state_transition": 1658, "node_type": "S", "subcondition": 16, "parent": 6720}}, {"model": "template.logicnode", "pk": 6720, "fields": {"state_transition": 1658, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6721, "fields": {"state_transition": 1659, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6722, "fields": {"state_transition": 1660, "node_type": "N", "subcondition": null, "parent": 6726}}, {"model": "template.logicnode", "pk": 6723, "fields": {"state_transition": 1660, "node_type": "S", "subcondition": 23, "parent": 6722}}, {"model": "template.logicnode", "pk": 6724, "fields": {"state_transition": 1660, "node_type": "S", "subcondition": 14, "parent": 6726}}, {"model": "template.logicnode", "pk": 6725, "fields": {"state_transition": 1660, "node_type": "S", "subcondition": 16, "parent": 6726}}, {"model": "template.logicnode", "pk": 6726, "fields": {"state_transition": 1660, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6727, "fields": {"state_transition": 1661, "node_type": "N", "subcondition": null, "parent": 6730}}, {"model": "template.logicnode", "pk": 6728, "fields": {"state_transition": 1661, "node_type": "S", "subcondition": 23, "parent": 6727}}, {"model": "template.logicnode", "pk": 6729, "fields": {"state_transition": 1661, "node_type": "S", "subcondition": 14, "parent": 6730}}, {"model": "template.logicnode", "pk": 6730, "fields": {"state_transition": 1661, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6731, "fields": {"state_transition": 1662, "node_type": "N", "subcondition": null, "parent": 6735}}, {"model": "template.logicnode", "pk": 6732, "fields": {"state_transition": 1662, "node_type": "S", "subcondition": 23, "parent": 6731}}, {"model": "template.logicnode", "pk": 6733, "fields": {"state_transition": 1662, "node_type": "S", "subcondition": 15, "parent": 6735}}, {"model": "template.logicnode", "pk": 6734, "fields": {"state_transition": 1662, "node_type": "S", "subcondition": 16, "parent": 6735}}, {"model": "template.logicnode", "pk": 6735, "fields": {"state_transition": 1662, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6736, "fields": {"state_transition": 1663, "node_type": "N", "subcondition": null, "parent": 6739}}, {"model": "template.logicnode", "pk": 6737, "fields": {"state_transition": 1663, "node_type": "S", "subcondition": 23, "parent": 6736}}, {"model": "template.logicnode", "pk": 6738, "fields": {"state_transition": 1663, "node_type": "S", "subcondition": 15, "parent": 6739}}, {"model": "template.logicnode", "pk": 6739, "fields": {"state_transition": 1663, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6740, "fields": {"state_transition": 1664, "node_type": "N", "subcondition": null, "parent": 6743}}, {"model": "template.logicnode", "pk": 6741, "fields": {"state_transition": 1664, "node_type": "S", "subcondition": 23, "parent": 6740}}, {"model": "template.logicnode", "pk": 6742, "fields": {"state_transition": 1664, "node_type": "S", "subcondition": 16, "parent": 6743}}, {"model": "template.logicnode", "pk": 6743, "fields": {"state_transition": 1664, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6744, "fields": {"state_transition": 1665, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6745, "fields": {"state_transition": 1665, "node_type": "S", "subcondition": 23, "parent": 6744}}, {"model": "template.logicnode", "pk": 6746, "fields": {"state_transition": 1666, "node_type": "S", "subcondition": 23, "parent": 6748}}, {"model": "template.logicnode", "pk": 6747, "fields": {"state_transition": 1666, "node_type": "S", "subcondition": 16, "parent": 6748}}, {"model": "template.logicnode", "pk": 6748, "fields": {"state_transition": 1666, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6749, "fields": {"state_transition": 1667, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6750, "fields": {"state_transition": 1668, "node_type": "N", "subcondition": null, "parent": 6754}}, {"model": "template.logicnode", "pk": 6751, "fields": {"state_transition": 1668, "node_type": "S", "subcondition": 23, "parent": 6750}}, {"model": "template.logicnode", "pk": 6752, "fields": {"state_transition": 1668, "node_type": "S", "subcondition": 14, "parent": 6754}}, {"model": "template.logicnode", "pk": 6753, "fields": {"state_transition": 1668, "node_type": "S", "subcondition": 16, "parent": 6754}}, {"model": "template.logicnode", "pk": 6754, "fields": {"state_transition": 1668, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6755, "fields": {"state_transition": 1669, "node_type": "N", "subcondition": null, "parent": 6758}}, {"model": "template.logicnode", "pk": 6756, "fields": {"state_transition": 1669, "node_type": "S", "subcondition": 23, "parent": 6755}}, {"model": "template.logicnode", "pk": 6757, "fields": {"state_transition": 1669, "node_type": "S", "subcondition": 14, "parent": 6758}}, {"model": "template.logicnode", "pk": 6758, "fields": {"state_transition": 1669, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6759, "fields": {"state_transition": 1670, "node_type": "N", "subcondition": null, "parent": 6763}}, {"model": "template.logicnode", "pk": 6760, "fields": {"state_transition": 1670, "node_type": "S", "subcondition": 23, "parent": 6759}}, {"model": "template.logicnode", "pk": 6761, "fields": {"state_transition": 1670, "node_type": "S", "subcondition": 15, "parent": 6763}}, {"model": "template.logicnode", "pk": 6762, "fields": {"state_transition": 1670, "node_type": "S", "subcondition": 16, "parent": 6763}}, {"model": "template.logicnode", "pk": 6763, "fields": {"state_transition": 1670, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6764, "fields": {"state_transition": 1671, "node_type": "N", "subcondition": null, "parent": 6767}}, {"model": "template.logicnode", "pk": 6765, "fields": {"state_transition": 1671, "node_type": "S", "subcondition": 23, "parent": 6764}}, {"model": "template.logicnode", "pk": 6766, "fields": {"state_transition": 1671, "node_type": "S", "subcondition": 15, "parent": 6767}}, {"model": "template.logicnode", "pk": 6767, "fields": {"state_transition": 1671, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6768, "fields": {"state_transition": 1672, "node_type": "N", "subcondition": null, "parent": 6771}}, {"model": "template.logicnode", "pk": 6769, "fields": {"state_transition": 1672, "node_type": "S", "subcondition": 23, "parent": 6768}}, {"model": "template.logicnode", "pk": 6770, "fields": {"state_transition": 1672, "node_type": "S", "subcondition": 16, "parent": 6771}}, {"model": "template.logicnode", "pk": 6771, "fields": {"state_transition": 1672, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6772, "fields": {"state_transition": 1673, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6773, "fields": {"state_transition": 1673, "node_type": "S", "subcondition": 23, "parent": 6772}}, {"model": "template.logicnode", "pk": 6774, "fields": {"state_transition": 1674, "node_type": "S", "subcondition": 23, "parent": 6776}}, {"model": "template.logicnode", "pk": 6775, "fields": {"state_transition": 1674, "node_type": "S", "subcondition": 16, "parent": 6776}}, {"model": "template.logicnode", "pk": 6776, "fields": {"state_transition": 1674, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6777, "fields": {"state_transition": 1675, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 6778, "fields": {"state_transition": 1676, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6779, "fields": {"state_transition": 1677, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6780, "fields": {"state_transition": 1678, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6781, "fields": {"state_transition": 1679, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6782, "fields": {"state_transition": 1680, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6783, "fields": {"state_transition": 1681, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6784, "fields": {"state_transition": 1682, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6785, "fields": {"state_transition": 1683, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6786, "fields": {"state_transition": 1684, "node_type": "N", "subcondition": null, "parent": 6790}}, {"model": "template.logicnode", "pk": 6787, "fields": {"state_transition": 1684, "node_type": "S", "subcondition": 23, "parent": 6786}}, {"model": "template.logicnode", "pk": 6788, "fields": {"state_transition": 1684, "node_type": "S", "subcondition": 3, "parent": 6790}}, {"model": "template.logicnode", "pk": 6789, "fields": {"state_transition": 1684, "node_type": "S", "subcondition": 19, "parent": 6790}}, {"model": "template.logicnode", "pk": 6790, "fields": {"state_transition": 1684, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6791, "fields": {"state_transition": 1685, "node_type": "N", "subcondition": null, "parent": 6795}}, {"model": "template.logicnode", "pk": 6792, "fields": {"state_transition": 1685, "node_type": "S", "subcondition": 23, "parent": 6791}}, {"model": "template.logicnode", "pk": 6793, "fields": {"state_transition": 1685, "node_type": "S", "subcondition": 3, "parent": 6795}}, {"model": "template.logicnode", "pk": 6794, "fields": {"state_transition": 1685, "node_type": "S", "subcondition": 20, "parent": 6795}}, {"model": "template.logicnode", "pk": 6795, "fields": {"state_transition": 1685, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6796, "fields": {"state_transition": 1686, "node_type": "N", "subcondition": null, "parent": 6800}}, {"model": "template.logicnode", "pk": 6797, "fields": {"state_transition": 1686, "node_type": "S", "subcondition": 23, "parent": 6796}}, {"model": "template.logicnode", "pk": 6798, "fields": {"state_transition": 1686, "node_type": "S", "subcondition": 3, "parent": 6800}}, {"model": "template.logicnode", "pk": 6799, "fields": {"state_transition": 1686, "node_type": "S", "subcondition": 21, "parent": 6800}}, {"model": "template.logicnode", "pk": 6800, "fields": {"state_transition": 1686, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6801, "fields": {"state_transition": 1687, "node_type": "N", "subcondition": null, "parent": 6805}}, {"model": "template.logicnode", "pk": 6802, "fields": {"state_transition": 1687, "node_type": "S", "subcondition": 23, "parent": 6801}}, {"model": "template.logicnode", "pk": 6803, "fields": {"state_transition": 1687, "node_type": "S", "subcondition": 3, "parent": 6805}}, {"model": "template.logicnode", "pk": 6804, "fields": {"state_transition": 1687, "node_type": "S", "subcondition": 22, "parent": 6805}}, {"model": "template.logicnode", "pk": 6805, "fields": {"state_transition": 1687, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6806, "fields": {"state_transition": 1688, "node_type": "N", "subcondition": null, "parent": 6810}}, {"model": "template.logicnode", "pk": 6807, "fields": {"state_transition": 1688, "node_type": "S", "subcondition": 23, "parent": 6806}}, {"model": "template.logicnode", "pk": 6808, "fields": {"state_transition": 1688, "node_type": "S", "subcondition": 4, "parent": 6810}}, {"model": "template.logicnode", "pk": 6809, "fields": {"state_transition": 1688, "node_type": "S", "subcondition": 19, "parent": 6810}}, {"model": "template.logicnode", "pk": 6810, "fields": {"state_transition": 1688, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6811, "fields": {"state_transition": 1689, "node_type": "N", "subcondition": null, "parent": 6815}}, {"model": "template.logicnode", "pk": 6812, "fields": {"state_transition": 1689, "node_type": "S", "subcondition": 23, "parent": 6811}}, {"model": "template.logicnode", "pk": 6813, "fields": {"state_transition": 1689, "node_type": "S", "subcondition": 4, "parent": 6815}}, {"model": "template.logicnode", "pk": 6814, "fields": {"state_transition": 1689, "node_type": "S", "subcondition": 20, "parent": 6815}}, {"model": "template.logicnode", "pk": 6815, "fields": {"state_transition": 1689, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6816, "fields": {"state_transition": 1690, "node_type": "N", "subcondition": null, "parent": 6820}}, {"model": "template.logicnode", "pk": 6817, "fields": {"state_transition": 1690, "node_type": "S", "subcondition": 23, "parent": 6816}}, {"model": "template.logicnode", "pk": 6818, "fields": {"state_transition": 1690, "node_type": "S", "subcondition": 4, "parent": 6820}}, {"model": "template.logicnode", "pk": 6819, "fields": {"state_transition": 1690, "node_type": "S", "subcondition": 21, "parent": 6820}}, {"model": "template.logicnode", "pk": 6820, "fields": {"state_transition": 1690, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6821, "fields": {"state_transition": 1691, "node_type": "N", "subcondition": null, "parent": 6825}}, {"model": "template.logicnode", "pk": 6822, "fields": {"state_transition": 1691, "node_type": "S", "subcondition": 23, "parent": 6821}}, {"model": "template.logicnode", "pk": 6823, "fields": {"state_transition": 1691, "node_type": "S", "subcondition": 4, "parent": 6825}}, {"model": "template.logicnode", "pk": 6824, "fields": {"state_transition": 1691, "node_type": "S", "subcondition": 22, "parent": 6825}}, {"model": "template.logicnode", "pk": 6825, "fields": {"state_transition": 1691, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6826, "fields": {"state_transition": 1692, "node_type": "N", "subcondition": null, "parent": 6830}}, {"model": "template.logicnode", "pk": 6827, "fields": {"state_transition": 1692, "node_type": "S", "subcondition": 23, "parent": 6826}}, {"model": "template.logicnode", "pk": 6828, "fields": {"state_transition": 1692, "node_type": "S", "subcondition": 5, "parent": 6830}}, {"model": "template.logicnode", "pk": 6829, "fields": {"state_transition": 1692, "node_type": "S", "subcondition": 19, "parent": 6830}}, {"model": "template.logicnode", "pk": 6830, "fields": {"state_transition": 1692, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6831, "fields": {"state_transition": 1693, "node_type": "N", "subcondition": null, "parent": 6835}}, {"model": "template.logicnode", "pk": 6832, "fields": {"state_transition": 1693, "node_type": "S", "subcondition": 23, "parent": 6831}}, {"model": "template.logicnode", "pk": 6833, "fields": {"state_transition": 1693, "node_type": "S", "subcondition": 5, "parent": 6835}}, {"model": "template.logicnode", "pk": 6834, "fields": {"state_transition": 1693, "node_type": "S", "subcondition": 20, "parent": 6835}}, {"model": "template.logicnode", "pk": 6835, "fields": {"state_transition": 1693, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6836, "fields": {"state_transition": 1694, "node_type": "N", "subcondition": null, "parent": 6840}}, {"model": "template.logicnode", "pk": 6837, "fields": {"state_transition": 1694, "node_type": "S", "subcondition": 23, "parent": 6836}}, {"model": "template.logicnode", "pk": 6838, "fields": {"state_transition": 1694, "node_type": "S", "subcondition": 5, "parent": 6840}}, {"model": "template.logicnode", "pk": 6839, "fields": {"state_transition": 1694, "node_type": "S", "subcondition": 21, "parent": 6840}}, {"model": "template.logicnode", "pk": 6840, "fields": {"state_transition": 1694, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6841, "fields": {"state_transition": 1695, "node_type": "N", "subcondition": null, "parent": 6845}}, {"model": "template.logicnode", "pk": 6842, "fields": {"state_transition": 1695, "node_type": "S", "subcondition": 23, "parent": 6841}}, {"model": "template.logicnode", "pk": 6843, "fields": {"state_transition": 1695, "node_type": "S", "subcondition": 5, "parent": 6845}}, {"model": "template.logicnode", "pk": 6844, "fields": {"state_transition": 1695, "node_type": "S", "subcondition": 22, "parent": 6845}}, {"model": "template.logicnode", "pk": 6845, "fields": {"state_transition": 1695, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6846, "fields": {"state_transition": 1696, "node_type": "N", "subcondition": null, "parent": 6850}}, {"model": "template.logicnode", "pk": 6847, "fields": {"state_transition": 1696, "node_type": "S", "subcondition": 23, "parent": 6846}}, {"model": "template.logicnode", "pk": 6848, "fields": {"state_transition": 1696, "node_type": "S", "subcondition": 6, "parent": 6850}}, {"model": "template.logicnode", "pk": 6849, "fields": {"state_transition": 1696, "node_type": "S", "subcondition": 19, "parent": 6850}}, {"model": "template.logicnode", "pk": 6850, "fields": {"state_transition": 1696, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6851, "fields": {"state_transition": 1697, "node_type": "N", "subcondition": null, "parent": 6855}}, {"model": "template.logicnode", "pk": 6852, "fields": {"state_transition": 1697, "node_type": "S", "subcondition": 23, "parent": 6851}}, {"model": "template.logicnode", "pk": 6853, "fields": {"state_transition": 1697, "node_type": "S", "subcondition": 6, "parent": 6855}}, {"model": "template.logicnode", "pk": 6854, "fields": {"state_transition": 1697, "node_type": "S", "subcondition": 20, "parent": 6855}}, {"model": "template.logicnode", "pk": 6855, "fields": {"state_transition": 1697, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6856, "fields": {"state_transition": 1698, "node_type": "N", "subcondition": null, "parent": 6860}}, {"model": "template.logicnode", "pk": 6857, "fields": {"state_transition": 1698, "node_type": "S", "subcondition": 23, "parent": 6856}}, {"model": "template.logicnode", "pk": 6858, "fields": {"state_transition": 1698, "node_type": "S", "subcondition": 6, "parent": 6860}}, {"model": "template.logicnode", "pk": 6859, "fields": {"state_transition": 1698, "node_type": "S", "subcondition": 21, "parent": 6860}}, {"model": "template.logicnode", "pk": 6860, "fields": {"state_transition": 1698, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6861, "fields": {"state_transition": 1699, "node_type": "N", "subcondition": null, "parent": 6865}}, {"model": "template.logicnode", "pk": 6862, "fields": {"state_transition": 1699, "node_type": "S", "subcondition": 23, "parent": 6861}}, {"model": "template.logicnode", "pk": 6863, "fields": {"state_transition": 1699, "node_type": "S", "subcondition": 6, "parent": 6865}}, {"model": "template.logicnode", "pk": 6864, "fields": {"state_transition": 1699, "node_type": "S", "subcondition": 22, "parent": 6865}}, {"model": "template.logicnode", "pk": 6865, "fields": {"state_transition": 1699, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6866, "fields": {"state_transition": 1700, "node_type": "S", "subcondition": 23, "parent": 6869}}, {"model": "template.logicnode", "pk": 6867, "fields": {"state_transition": 1700, "node_type": "S", "subcondition": 3, "parent": 6869}}, {"model": "template.logicnode", "pk": 6868, "fields": {"state_transition": 1700, "node_type": "S", "subcondition": 19, "parent": 6869}}, {"model": "template.logicnode", "pk": 6869, "fields": {"state_transition": 1700, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6870, "fields": {"state_transition": 1701, "node_type": "S", "subcondition": 23, "parent": 6873}}, {"model": "template.logicnode", "pk": 6871, "fields": {"state_transition": 1701, "node_type": "S", "subcondition": 3, "parent": 6873}}, {"model": "template.logicnode", "pk": 6872, "fields": {"state_transition": 1701, "node_type": "S", "subcondition": 20, "parent": 6873}}, {"model": "template.logicnode", "pk": 6873, "fields": {"state_transition": 1701, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6874, "fields": {"state_transition": 1702, "node_type": "S", "subcondition": 23, "parent": 6877}}, {"model": "template.logicnode", "pk": 6875, "fields": {"state_transition": 1702, "node_type": "S", "subcondition": 3, "parent": 6877}}, {"model": "template.logicnode", "pk": 6876, "fields": {"state_transition": 1702, "node_type": "S", "subcondition": 21, "parent": 6877}}, {"model": "template.logicnode", "pk": 6877, "fields": {"state_transition": 1702, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6878, "fields": {"state_transition": 1703, "node_type": "S", "subcondition": 23, "parent": 6881}}, {"model": "template.logicnode", "pk": 6879, "fields": {"state_transition": 1703, "node_type": "S", "subcondition": 3, "parent": 6881}}, {"model": "template.logicnode", "pk": 6880, "fields": {"state_transition": 1703, "node_type": "S", "subcondition": 22, "parent": 6881}}, {"model": "template.logicnode", "pk": 6881, "fields": {"state_transition": 1703, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6882, "fields": {"state_transition": 1704, "node_type": "S", "subcondition": 23, "parent": 6885}}, {"model": "template.logicnode", "pk": 6883, "fields": {"state_transition": 1704, "node_type": "S", "subcondition": 4, "parent": 6885}}, {"model": "template.logicnode", "pk": 6884, "fields": {"state_transition": 1704, "node_type": "S", "subcondition": 19, "parent": 6885}}, {"model": "template.logicnode", "pk": 6885, "fields": {"state_transition": 1704, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6886, "fields": {"state_transition": 1705, "node_type": "S", "subcondition": 23, "parent": 6889}}, {"model": "template.logicnode", "pk": 6887, "fields": {"state_transition": 1705, "node_type": "S", "subcondition": 4, "parent": 6889}}, {"model": "template.logicnode", "pk": 6888, "fields": {"state_transition": 1705, "node_type": "S", "subcondition": 20, "parent": 6889}}, {"model": "template.logicnode", "pk": 6889, "fields": {"state_transition": 1705, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6890, "fields": {"state_transition": 1706, "node_type": "S", "subcondition": 23, "parent": 6893}}, {"model": "template.logicnode", "pk": 6891, "fields": {"state_transition": 1706, "node_type": "S", "subcondition": 4, "parent": 6893}}, {"model": "template.logicnode", "pk": 6892, "fields": {"state_transition": 1706, "node_type": "S", "subcondition": 21, "parent": 6893}}, {"model": "template.logicnode", "pk": 6893, "fields": {"state_transition": 1706, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6894, "fields": {"state_transition": 1707, "node_type": "S", "subcondition": 23, "parent": 6897}}, {"model": "template.logicnode", "pk": 6895, "fields": {"state_transition": 1707, "node_type": "S", "subcondition": 4, "parent": 6897}}, {"model": "template.logicnode", "pk": 6896, "fields": {"state_transition": 1707, "node_type": "S", "subcondition": 22, "parent": 6897}}, {"model": "template.logicnode", "pk": 6897, "fields": {"state_transition": 1707, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6898, "fields": {"state_transition": 1708, "node_type": "S", "subcondition": 23, "parent": 6901}}, {"model": "template.logicnode", "pk": 6899, "fields": {"state_transition": 1708, "node_type": "S", "subcondition": 5, "parent": 6901}}, {"model": "template.logicnode", "pk": 6900, "fields": {"state_transition": 1708, "node_type": "S", "subcondition": 19, "parent": 6901}}, {"model": "template.logicnode", "pk": 6901, "fields": {"state_transition": 1708, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6902, "fields": {"state_transition": 1709, "node_type": "S", "subcondition": 23, "parent": 6905}}, {"model": "template.logicnode", "pk": 6903, "fields": {"state_transition": 1709, "node_type": "S", "subcondition": 5, "parent": 6905}}, {"model": "template.logicnode", "pk": 6904, "fields": {"state_transition": 1709, "node_type": "S", "subcondition": 20, "parent": 6905}}, {"model": "template.logicnode", "pk": 6905, "fields": {"state_transition": 1709, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6906, "fields": {"state_transition": 1710, "node_type": "S", "subcondition": 23, "parent": 6909}}, {"model": "template.logicnode", "pk": 6907, "fields": {"state_transition": 1710, "node_type": "S", "subcondition": 5, "parent": 6909}}, {"model": "template.logicnode", "pk": 6908, "fields": {"state_transition": 1710, "node_type": "S", "subcondition": 21, "parent": 6909}}, {"model": "template.logicnode", "pk": 6909, "fields": {"state_transition": 1710, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6910, "fields": {"state_transition": 1711, "node_type": "S", "subcondition": 23, "parent": 6913}}, {"model": "template.logicnode", "pk": 6911, "fields": {"state_transition": 1711, "node_type": "S", "subcondition": 5, "parent": 6913}}, {"model": "template.logicnode", "pk": 6912, "fields": {"state_transition": 1711, "node_type": "S", "subcondition": 22, "parent": 6913}}, {"model": "template.logicnode", "pk": 6913, "fields": {"state_transition": 1711, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6914, "fields": {"state_transition": 1712, "node_type": "S", "subcondition": 23, "parent": 6917}}, {"model": "template.logicnode", "pk": 6915, "fields": {"state_transition": 1712, "node_type": "S", "subcondition": 6, "parent": 6917}}, {"model": "template.logicnode", "pk": 6916, "fields": {"state_transition": 1712, "node_type": "S", "subcondition": 19, "parent": 6917}}, {"model": "template.logicnode", "pk": 6917, "fields": {"state_transition": 1712, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6918, "fields": {"state_transition": 1713, "node_type": "S", "subcondition": 23, "parent": 6921}}, {"model": "template.logicnode", "pk": 6919, "fields": {"state_transition": 1713, "node_type": "S", "subcondition": 6, "parent": 6921}}, {"model": "template.logicnode", "pk": 6920, "fields": {"state_transition": 1713, "node_type": "S", "subcondition": 20, "parent": 6921}}, {"model": "template.logicnode", "pk": 6921, "fields": {"state_transition": 1713, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6922, "fields": {"state_transition": 1714, "node_type": "S", "subcondition": 23, "parent": 6925}}, {"model": "template.logicnode", "pk": 6923, "fields": {"state_transition": 1714, "node_type": "S", "subcondition": 6, "parent": 6925}}, {"model": "template.logicnode", "pk": 6924, "fields": {"state_transition": 1714, "node_type": "S", "subcondition": 21, "parent": 6925}}, {"model": "template.logicnode", "pk": 6925, "fields": {"state_transition": 1714, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6926, "fields": {"state_transition": 1715, "node_type": "S", "subcondition": 23, "parent": 6929}}, {"model": "template.logicnode", "pk": 6927, "fields": {"state_transition": 1715, "node_type": "S", "subcondition": 6, "parent": 6929}}, {"model": "template.logicnode", "pk": 6928, "fields": {"state_transition": 1715, "node_type": "S", "subcondition": 22, "parent": 6929}}, {"model": "template.logicnode", "pk": 6929, "fields": {"state_transition": 1715, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6930, "fields": {"state_transition": 1716, "node_type": "N", "subcondition": null, "parent": 6934}}, {"model": "template.logicnode", "pk": 6931, "fields": {"state_transition": 1716, "node_type": "S", "subcondition": 23, "parent": 6930}}, {"model": "template.logicnode", "pk": 6932, "fields": {"state_transition": 1716, "node_type": "S", "subcondition": 3, "parent": 6934}}, {"model": "template.logicnode", "pk": 6933, "fields": {"state_transition": 1716, "node_type": "S", "subcondition": 19, "parent": 6934}}, {"model": "template.logicnode", "pk": 6934, "fields": {"state_transition": 1716, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6935, "fields": {"state_transition": 1717, "node_type": "N", "subcondition": null, "parent": 6939}}, {"model": "template.logicnode", "pk": 6936, "fields": {"state_transition": 1717, "node_type": "S", "subcondition": 23, "parent": 6935}}, {"model": "template.logicnode", "pk": 6937, "fields": {"state_transition": 1717, "node_type": "S", "subcondition": 3, "parent": 6939}}, {"model": "template.logicnode", "pk": 6938, "fields": {"state_transition": 1717, "node_type": "S", "subcondition": 20, "parent": 6939}}, {"model": "template.logicnode", "pk": 6939, "fields": {"state_transition": 1717, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6940, "fields": {"state_transition": 1718, "node_type": "N", "subcondition": null, "parent": 6944}}, {"model": "template.logicnode", "pk": 6941, "fields": {"state_transition": 1718, "node_type": "S", "subcondition": 23, "parent": 6940}}, {"model": "template.logicnode", "pk": 6942, "fields": {"state_transition": 1718, "node_type": "S", "subcondition": 3, "parent": 6944}}, {"model": "template.logicnode", "pk": 6943, "fields": {"state_transition": 1718, "node_type": "S", "subcondition": 21, "parent": 6944}}, {"model": "template.logicnode", "pk": 6944, "fields": {"state_transition": 1718, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6945, "fields": {"state_transition": 1719, "node_type": "N", "subcondition": null, "parent": 6949}}, {"model": "template.logicnode", "pk": 6946, "fields": {"state_transition": 1719, "node_type": "S", "subcondition": 23, "parent": 6945}}, {"model": "template.logicnode", "pk": 6947, "fields": {"state_transition": 1719, "node_type": "S", "subcondition": 3, "parent": 6949}}, {"model": "template.logicnode", "pk": 6948, "fields": {"state_transition": 1719, "node_type": "S", "subcondition": 22, "parent": 6949}}, {"model": "template.logicnode", "pk": 6949, "fields": {"state_transition": 1719, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6950, "fields": {"state_transition": 1720, "node_type": "N", "subcondition": null, "parent": 6954}}, {"model": "template.logicnode", "pk": 6951, "fields": {"state_transition": 1720, "node_type": "S", "subcondition": 23, "parent": 6950}}, {"model": "template.logicnode", "pk": 6952, "fields": {"state_transition": 1720, "node_type": "S", "subcondition": 4, "parent": 6954}}, {"model": "template.logicnode", "pk": 6953, "fields": {"state_transition": 1720, "node_type": "S", "subcondition": 19, "parent": 6954}}, {"model": "template.logicnode", "pk": 6954, "fields": {"state_transition": 1720, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6955, "fields": {"state_transition": 1721, "node_type": "N", "subcondition": null, "parent": 6959}}, {"model": "template.logicnode", "pk": 6956, "fields": {"state_transition": 1721, "node_type": "S", "subcondition": 23, "parent": 6955}}, {"model": "template.logicnode", "pk": 6957, "fields": {"state_transition": 1721, "node_type": "S", "subcondition": 4, "parent": 6959}}, {"model": "template.logicnode", "pk": 6958, "fields": {"state_transition": 1721, "node_type": "S", "subcondition": 20, "parent": 6959}}, {"model": "template.logicnode", "pk": 6959, "fields": {"state_transition": 1721, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6960, "fields": {"state_transition": 1722, "node_type": "N", "subcondition": null, "parent": 6964}}, {"model": "template.logicnode", "pk": 6961, "fields": {"state_transition": 1722, "node_type": "S", "subcondition": 23, "parent": 6960}}, {"model": "template.logicnode", "pk": 6962, "fields": {"state_transition": 1722, "node_type": "S", "subcondition": 4, "parent": 6964}}, {"model": "template.logicnode", "pk": 6963, "fields": {"state_transition": 1722, "node_type": "S", "subcondition": 21, "parent": 6964}}, {"model": "template.logicnode", "pk": 6964, "fields": {"state_transition": 1722, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6965, "fields": {"state_transition": 1723, "node_type": "N", "subcondition": null, "parent": 6969}}, {"model": "template.logicnode", "pk": 6966, "fields": {"state_transition": 1723, "node_type": "S", "subcondition": 23, "parent": 6965}}, {"model": "template.logicnode", "pk": 6967, "fields": {"state_transition": 1723, "node_type": "S", "subcondition": 4, "parent": 6969}}, {"model": "template.logicnode", "pk": 6968, "fields": {"state_transition": 1723, "node_type": "S", "subcondition": 22, "parent": 6969}}, {"model": "template.logicnode", "pk": 6969, "fields": {"state_transition": 1723, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6970, "fields": {"state_transition": 1724, "node_type": "N", "subcondition": null, "parent": 6974}}, {"model": "template.logicnode", "pk": 6971, "fields": {"state_transition": 1724, "node_type": "S", "subcondition": 23, "parent": 6970}}, {"model": "template.logicnode", "pk": 6972, "fields": {"state_transition": 1724, "node_type": "S", "subcondition": 5, "parent": 6974}}, {"model": "template.logicnode", "pk": 6973, "fields": {"state_transition": 1724, "node_type": "S", "subcondition": 19, "parent": 6974}}, {"model": "template.logicnode", "pk": 6974, "fields": {"state_transition": 1724, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6975, "fields": {"state_transition": 1725, "node_type": "N", "subcondition": null, "parent": 6979}}, {"model": "template.logicnode", "pk": 6976, "fields": {"state_transition": 1725, "node_type": "S", "subcondition": 23, "parent": 6975}}, {"model": "template.logicnode", "pk": 6977, "fields": {"state_transition": 1725, "node_type": "S", "subcondition": 5, "parent": 6979}}, {"model": "template.logicnode", "pk": 6978, "fields": {"state_transition": 1725, "node_type": "S", "subcondition": 20, "parent": 6979}}, {"model": "template.logicnode", "pk": 6979, "fields": {"state_transition": 1725, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6980, "fields": {"state_transition": 1726, "node_type": "N", "subcondition": null, "parent": 6984}}, {"model": "template.logicnode", "pk": 6981, "fields": {"state_transition": 1726, "node_type": "S", "subcondition": 23, "parent": 6980}}, {"model": "template.logicnode", "pk": 6982, "fields": {"state_transition": 1726, "node_type": "S", "subcondition": 5, "parent": 6984}}, {"model": "template.logicnode", "pk": 6983, "fields": {"state_transition": 1726, "node_type": "S", "subcondition": 21, "parent": 6984}}, {"model": "template.logicnode", "pk": 6984, "fields": {"state_transition": 1726, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6985, "fields": {"state_transition": 1727, "node_type": "N", "subcondition": null, "parent": 6989}}, {"model": "template.logicnode", "pk": 6986, "fields": {"state_transition": 1727, "node_type": "S", "subcondition": 23, "parent": 6985}}, {"model": "template.logicnode", "pk": 6987, "fields": {"state_transition": 1727, "node_type": "S", "subcondition": 5, "parent": 6989}}, {"model": "template.logicnode", "pk": 6988, "fields": {"state_transition": 1727, "node_type": "S", "subcondition": 22, "parent": 6989}}, {"model": "template.logicnode", "pk": 6989, "fields": {"state_transition": 1727, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6990, "fields": {"state_transition": 1728, "node_type": "N", "subcondition": null, "parent": 6994}}, {"model": "template.logicnode", "pk": 6991, "fields": {"state_transition": 1728, "node_type": "S", "subcondition": 23, "parent": 6990}}, {"model": "template.logicnode", "pk": 6992, "fields": {"state_transition": 1728, "node_type": "S", "subcondition": 6, "parent": 6994}}, {"model": "template.logicnode", "pk": 6993, "fields": {"state_transition": 1728, "node_type": "S", "subcondition": 19, "parent": 6994}}, {"model": "template.logicnode", "pk": 6994, "fields": {"state_transition": 1728, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 6995, "fields": {"state_transition": 1729, "node_type": "N", "subcondition": null, "parent": 6999}}, {"model": "template.logicnode", "pk": 6996, "fields": {"state_transition": 1729, "node_type": "S", "subcondition": 23, "parent": 6995}}, {"model": "template.logicnode", "pk": 6997, "fields": {"state_transition": 1729, "node_type": "S", "subcondition": 6, "parent": 6999}}, {"model": "template.logicnode", "pk": 6998, "fields": {"state_transition": 1729, "node_type": "S", "subcondition": 20, "parent": 6999}}, {"model": "template.logicnode", "pk": 6999, "fields": {"state_transition": 1729, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7000, "fields": {"state_transition": 1730, "node_type": "N", "subcondition": null, "parent": 7004}}, {"model": "template.logicnode", "pk": 7001, "fields": {"state_transition": 1730, "node_type": "S", "subcondition": 23, "parent": 7000}}, {"model": "template.logicnode", "pk": 7002, "fields": {"state_transition": 1730, "node_type": "S", "subcondition": 6, "parent": 7004}}, {"model": "template.logicnode", "pk": 7003, "fields": {"state_transition": 1730, "node_type": "S", "subcondition": 21, "parent": 7004}}, {"model": "template.logicnode", "pk": 7004, "fields": {"state_transition": 1730, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7005, "fields": {"state_transition": 1731, "node_type": "N", "subcondition": null, "parent": 7009}}, {"model": "template.logicnode", "pk": 7006, "fields": {"state_transition": 1731, "node_type": "S", "subcondition": 23, "parent": 7005}}, {"model": "template.logicnode", "pk": 7007, "fields": {"state_transition": 1731, "node_type": "S", "subcondition": 6, "parent": 7009}}, {"model": "template.logicnode", "pk": 7008, "fields": {"state_transition": 1731, "node_type": "S", "subcondition": 22, "parent": 7009}}, {"model": "template.logicnode", "pk": 7009, "fields": {"state_transition": 1731, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7010, "fields": {"state_transition": 1732, "node_type": "S", "subcondition": 23, "parent": 7013}}, {"model": "template.logicnode", "pk": 7011, "fields": {"state_transition": 1732, "node_type": "S", "subcondition": 3, "parent": 7013}}, {"model": "template.logicnode", "pk": 7012, "fields": {"state_transition": 1732, "node_type": "S", "subcondition": 19, "parent": 7013}}, {"model": "template.logicnode", "pk": 7013, "fields": {"state_transition": 1732, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7014, "fields": {"state_transition": 1733, "node_type": "S", "subcondition": 23, "parent": 7017}}, {"model": "template.logicnode", "pk": 7015, "fields": {"state_transition": 1733, "node_type": "S", "subcondition": 3, "parent": 7017}}, {"model": "template.logicnode", "pk": 7016, "fields": {"state_transition": 1733, "node_type": "S", "subcondition": 20, "parent": 7017}}, {"model": "template.logicnode", "pk": 7017, "fields": {"state_transition": 1733, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7018, "fields": {"state_transition": 1734, "node_type": "S", "subcondition": 23, "parent": 7021}}, {"model": "template.logicnode", "pk": 7019, "fields": {"state_transition": 1734, "node_type": "S", "subcondition": 3, "parent": 7021}}, {"model": "template.logicnode", "pk": 7020, "fields": {"state_transition": 1734, "node_type": "S", "subcondition": 21, "parent": 7021}}, {"model": "template.logicnode", "pk": 7021, "fields": {"state_transition": 1734, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7022, "fields": {"state_transition": 1735, "node_type": "S", "subcondition": 23, "parent": 7025}}, {"model": "template.logicnode", "pk": 7023, "fields": {"state_transition": 1735, "node_type": "S", "subcondition": 3, "parent": 7025}}, {"model": "template.logicnode", "pk": 7024, "fields": {"state_transition": 1735, "node_type": "S", "subcondition": 22, "parent": 7025}}, {"model": "template.logicnode", "pk": 7025, "fields": {"state_transition": 1735, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7026, "fields": {"state_transition": 1736, "node_type": "S", "subcondition": 23, "parent": 7029}}, {"model": "template.logicnode", "pk": 7027, "fields": {"state_transition": 1736, "node_type": "S", "subcondition": 4, "parent": 7029}}, {"model": "template.logicnode", "pk": 7028, "fields": {"state_transition": 1736, "node_type": "S", "subcondition": 19, "parent": 7029}}, {"model": "template.logicnode", "pk": 7029, "fields": {"state_transition": 1736, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7030, "fields": {"state_transition": 1737, "node_type": "S", "subcondition": 23, "parent": 7033}}, {"model": "template.logicnode", "pk": 7031, "fields": {"state_transition": 1737, "node_type": "S", "subcondition": 4, "parent": 7033}}, {"model": "template.logicnode", "pk": 7032, "fields": {"state_transition": 1737, "node_type": "S", "subcondition": 20, "parent": 7033}}, {"model": "template.logicnode", "pk": 7033, "fields": {"state_transition": 1737, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7034, "fields": {"state_transition": 1738, "node_type": "S", "subcondition": 23, "parent": 7037}}, {"model": "template.logicnode", "pk": 7035, "fields": {"state_transition": 1738, "node_type": "S", "subcondition": 4, "parent": 7037}}, {"model": "template.logicnode", "pk": 7036, "fields": {"state_transition": 1738, "node_type": "S", "subcondition": 21, "parent": 7037}}, {"model": "template.logicnode", "pk": 7037, "fields": {"state_transition": 1738, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7038, "fields": {"state_transition": 1739, "node_type": "S", "subcondition": 23, "parent": 7041}}, {"model": "template.logicnode", "pk": 7039, "fields": {"state_transition": 1739, "node_type": "S", "subcondition": 4, "parent": 7041}}, {"model": "template.logicnode", "pk": 7040, "fields": {"state_transition": 1739, "node_type": "S", "subcondition": 22, "parent": 7041}}, {"model": "template.logicnode", "pk": 7041, "fields": {"state_transition": 1739, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7042, "fields": {"state_transition": 1740, "node_type": "S", "subcondition": 23, "parent": 7045}}, {"model": "template.logicnode", "pk": 7043, "fields": {"state_transition": 1740, "node_type": "S", "subcondition": 5, "parent": 7045}}, {"model": "template.logicnode", "pk": 7044, "fields": {"state_transition": 1740, "node_type": "S", "subcondition": 19, "parent": 7045}}, {"model": "template.logicnode", "pk": 7045, "fields": {"state_transition": 1740, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7046, "fields": {"state_transition": 1741, "node_type": "S", "subcondition": 23, "parent": 7049}}, {"model": "template.logicnode", "pk": 7047, "fields": {"state_transition": 1741, "node_type": "S", "subcondition": 5, "parent": 7049}}, {"model": "template.logicnode", "pk": 7048, "fields": {"state_transition": 1741, "node_type": "S", "subcondition": 20, "parent": 7049}}, {"model": "template.logicnode", "pk": 7049, "fields": {"state_transition": 1741, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7050, "fields": {"state_transition": 1742, "node_type": "S", "subcondition": 23, "parent": 7053}}, {"model": "template.logicnode", "pk": 7051, "fields": {"state_transition": 1742, "node_type": "S", "subcondition": 5, "parent": 7053}}, {"model": "template.logicnode", "pk": 7052, "fields": {"state_transition": 1742, "node_type": "S", "subcondition": 21, "parent": 7053}}, {"model": "template.logicnode", "pk": 7053, "fields": {"state_transition": 1742, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7054, "fields": {"state_transition": 1743, "node_type": "S", "subcondition": 23, "parent": 7057}}, {"model": "template.logicnode", "pk": 7055, "fields": {"state_transition": 1743, "node_type": "S", "subcondition": 5, "parent": 7057}}, {"model": "template.logicnode", "pk": 7056, "fields": {"state_transition": 1743, "node_type": "S", "subcondition": 22, "parent": 7057}}, {"model": "template.logicnode", "pk": 7057, "fields": {"state_transition": 1743, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7058, "fields": {"state_transition": 1744, "node_type": "S", "subcondition": 23, "parent": 7061}}, {"model": "template.logicnode", "pk": 7059, "fields": {"state_transition": 1744, "node_type": "S", "subcondition": 6, "parent": 7061}}, {"model": "template.logicnode", "pk": 7060, "fields": {"state_transition": 1744, "node_type": "S", "subcondition": 19, "parent": 7061}}, {"model": "template.logicnode", "pk": 7061, "fields": {"state_transition": 1744, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7062, "fields": {"state_transition": 1745, "node_type": "S", "subcondition": 23, "parent": 7065}}, {"model": "template.logicnode", "pk": 7063, "fields": {"state_transition": 1745, "node_type": "S", "subcondition": 6, "parent": 7065}}, {"model": "template.logicnode", "pk": 7064, "fields": {"state_transition": 1745, "node_type": "S", "subcondition": 20, "parent": 7065}}, {"model": "template.logicnode", "pk": 7065, "fields": {"state_transition": 1745, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7066, "fields": {"state_transition": 1746, "node_type": "S", "subcondition": 23, "parent": 7069}}, {"model": "template.logicnode", "pk": 7067, "fields": {"state_transition": 1746, "node_type": "S", "subcondition": 6, "parent": 7069}}, {"model": "template.logicnode", "pk": 7068, "fields": {"state_transition": 1746, "node_type": "S", "subcondition": 21, "parent": 7069}}, {"model": "template.logicnode", "pk": 7069, "fields": {"state_transition": 1746, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7070, "fields": {"state_transition": 1747, "node_type": "S", "subcondition": 23, "parent": 7073}}, {"model": "template.logicnode", "pk": 7071, "fields": {"state_transition": 1747, "node_type": "S", "subcondition": 6, "parent": 7073}}, {"model": "template.logicnode", "pk": 7072, "fields": {"state_transition": 1747, "node_type": "S", "subcondition": 22, "parent": 7073}}, {"model": "template.logicnode", "pk": 7073, "fields": {"state_transition": 1747, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7074, "fields": {"state_transition": 1748, "node_type": "N", "subcondition": null, "parent": 7078}}, {"model": "template.logicnode", "pk": 7075, "fields": {"state_transition": 1748, "node_type": "S", "subcondition": 23, "parent": 7074}}, {"model": "template.logicnode", "pk": 7076, "fields": {"state_transition": 1748, "node_type": "S", "subcondition": 3, "parent": 7078}}, {"model": "template.logicnode", "pk": 7077, "fields": {"state_transition": 1748, "node_type": "S", "subcondition": 19, "parent": 7078}}, {"model": "template.logicnode", "pk": 7078, "fields": {"state_transition": 1748, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7079, "fields": {"state_transition": 1749, "node_type": "N", "subcondition": null, "parent": 7083}}, {"model": "template.logicnode", "pk": 7080, "fields": {"state_transition": 1749, "node_type": "S", "subcondition": 23, "parent": 7079}}, {"model": "template.logicnode", "pk": 7081, "fields": {"state_transition": 1749, "node_type": "S", "subcondition": 3, "parent": 7083}}, {"model": "template.logicnode", "pk": 7082, "fields": {"state_transition": 1749, "node_type": "S", "subcondition": 20, "parent": 7083}}, {"model": "template.logicnode", "pk": 7083, "fields": {"state_transition": 1749, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7084, "fields": {"state_transition": 1750, "node_type": "N", "subcondition": null, "parent": 7088}}, {"model": "template.logicnode", "pk": 7085, "fields": {"state_transition": 1750, "node_type": "S", "subcondition": 23, "parent": 7084}}, {"model": "template.logicnode", "pk": 7086, "fields": {"state_transition": 1750, "node_type": "S", "subcondition": 3, "parent": 7088}}, {"model": "template.logicnode", "pk": 7087, "fields": {"state_transition": 1750, "node_type": "S", "subcondition": 21, "parent": 7088}}, {"model": "template.logicnode", "pk": 7088, "fields": {"state_transition": 1750, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7089, "fields": {"state_transition": 1751, "node_type": "N", "subcondition": null, "parent": 7093}}, {"model": "template.logicnode", "pk": 7090, "fields": {"state_transition": 1751, "node_type": "S", "subcondition": 23, "parent": 7089}}, {"model": "template.logicnode", "pk": 7091, "fields": {"state_transition": 1751, "node_type": "S", "subcondition": 3, "parent": 7093}}, {"model": "template.logicnode", "pk": 7092, "fields": {"state_transition": 1751, "node_type": "S", "subcondition": 22, "parent": 7093}}, {"model": "template.logicnode", "pk": 7093, "fields": {"state_transition": 1751, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7094, "fields": {"state_transition": 1752, "node_type": "N", "subcondition": null, "parent": 7098}}, {"model": "template.logicnode", "pk": 7095, "fields": {"state_transition": 1752, "node_type": "S", "subcondition": 23, "parent": 7094}}, {"model": "template.logicnode", "pk": 7096, "fields": {"state_transition": 1752, "node_type": "S", "subcondition": 4, "parent": 7098}}, {"model": "template.logicnode", "pk": 7097, "fields": {"state_transition": 1752, "node_type": "S", "subcondition": 19, "parent": 7098}}, {"model": "template.logicnode", "pk": 7098, "fields": {"state_transition": 1752, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7099, "fields": {"state_transition": 1753, "node_type": "N", "subcondition": null, "parent": 7103}}, {"model": "template.logicnode", "pk": 7100, "fields": {"state_transition": 1753, "node_type": "S", "subcondition": 23, "parent": 7099}}, {"model": "template.logicnode", "pk": 7101, "fields": {"state_transition": 1753, "node_type": "S", "subcondition": 4, "parent": 7103}}, {"model": "template.logicnode", "pk": 7102, "fields": {"state_transition": 1753, "node_type": "S", "subcondition": 20, "parent": 7103}}, {"model": "template.logicnode", "pk": 7103, "fields": {"state_transition": 1753, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7104, "fields": {"state_transition": 1754, "node_type": "N", "subcondition": null, "parent": 7108}}, {"model": "template.logicnode", "pk": 7105, "fields": {"state_transition": 1754, "node_type": "S", "subcondition": 23, "parent": 7104}}, {"model": "template.logicnode", "pk": 7106, "fields": {"state_transition": 1754, "node_type": "S", "subcondition": 4, "parent": 7108}}, {"model": "template.logicnode", "pk": 7107, "fields": {"state_transition": 1754, "node_type": "S", "subcondition": 21, "parent": 7108}}, {"model": "template.logicnode", "pk": 7108, "fields": {"state_transition": 1754, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7109, "fields": {"state_transition": 1755, "node_type": "N", "subcondition": null, "parent": 7113}}, {"model": "template.logicnode", "pk": 7110, "fields": {"state_transition": 1755, "node_type": "S", "subcondition": 23, "parent": 7109}}, {"model": "template.logicnode", "pk": 7111, "fields": {"state_transition": 1755, "node_type": "S", "subcondition": 4, "parent": 7113}}, {"model": "template.logicnode", "pk": 7112, "fields": {"state_transition": 1755, "node_type": "S", "subcondition": 22, "parent": 7113}}, {"model": "template.logicnode", "pk": 7113, "fields": {"state_transition": 1755, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7114, "fields": {"state_transition": 1756, "node_type": "N", "subcondition": null, "parent": 7118}}, {"model": "template.logicnode", "pk": 7115, "fields": {"state_transition": 1756, "node_type": "S", "subcondition": 23, "parent": 7114}}, {"model": "template.logicnode", "pk": 7116, "fields": {"state_transition": 1756, "node_type": "S", "subcondition": 5, "parent": 7118}}, {"model": "template.logicnode", "pk": 7117, "fields": {"state_transition": 1756, "node_type": "S", "subcondition": 19, "parent": 7118}}, {"model": "template.logicnode", "pk": 7118, "fields": {"state_transition": 1756, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7119, "fields": {"state_transition": 1757, "node_type": "N", "subcondition": null, "parent": 7123}}, {"model": "template.logicnode", "pk": 7120, "fields": {"state_transition": 1757, "node_type": "S", "subcondition": 23, "parent": 7119}}, {"model": "template.logicnode", "pk": 7121, "fields": {"state_transition": 1757, "node_type": "S", "subcondition": 5, "parent": 7123}}, {"model": "template.logicnode", "pk": 7122, "fields": {"state_transition": 1757, "node_type": "S", "subcondition": 20, "parent": 7123}}, {"model": "template.logicnode", "pk": 7123, "fields": {"state_transition": 1757, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7124, "fields": {"state_transition": 1758, "node_type": "N", "subcondition": null, "parent": 7128}}, {"model": "template.logicnode", "pk": 7125, "fields": {"state_transition": 1758, "node_type": "S", "subcondition": 23, "parent": 7124}}, {"model": "template.logicnode", "pk": 7126, "fields": {"state_transition": 1758, "node_type": "S", "subcondition": 5, "parent": 7128}}, {"model": "template.logicnode", "pk": 7127, "fields": {"state_transition": 1758, "node_type": "S", "subcondition": 21, "parent": 7128}}, {"model": "template.logicnode", "pk": 7128, "fields": {"state_transition": 1758, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7129, "fields": {"state_transition": 1759, "node_type": "N", "subcondition": null, "parent": 7133}}, {"model": "template.logicnode", "pk": 7130, "fields": {"state_transition": 1759, "node_type": "S", "subcondition": 23, "parent": 7129}}, {"model": "template.logicnode", "pk": 7131, "fields": {"state_transition": 1759, "node_type": "S", "subcondition": 5, "parent": 7133}}, {"model": "template.logicnode", "pk": 7132, "fields": {"state_transition": 1759, "node_type": "S", "subcondition": 22, "parent": 7133}}, {"model": "template.logicnode", "pk": 7133, "fields": {"state_transition": 1759, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7134, "fields": {"state_transition": 1760, "node_type": "N", "subcondition": null, "parent": 7138}}, {"model": "template.logicnode", "pk": 7135, "fields": {"state_transition": 1760, "node_type": "S", "subcondition": 23, "parent": 7134}}, {"model": "template.logicnode", "pk": 7136, "fields": {"state_transition": 1760, "node_type": "S", "subcondition": 6, "parent": 7138}}, {"model": "template.logicnode", "pk": 7137, "fields": {"state_transition": 1760, "node_type": "S", "subcondition": 19, "parent": 7138}}, {"model": "template.logicnode", "pk": 7138, "fields": {"state_transition": 1760, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7139, "fields": {"state_transition": 1761, "node_type": "N", "subcondition": null, "parent": 7143}}, {"model": "template.logicnode", "pk": 7140, "fields": {"state_transition": 1761, "node_type": "S", "subcondition": 23, "parent": 7139}}, {"model": "template.logicnode", "pk": 7141, "fields": {"state_transition": 1761, "node_type": "S", "subcondition": 6, "parent": 7143}}, {"model": "template.logicnode", "pk": 7142, "fields": {"state_transition": 1761, "node_type": "S", "subcondition": 20, "parent": 7143}}, {"model": "template.logicnode", "pk": 7143, "fields": {"state_transition": 1761, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7144, "fields": {"state_transition": 1762, "node_type": "N", "subcondition": null, "parent": 7148}}, {"model": "template.logicnode", "pk": 7145, "fields": {"state_transition": 1762, "node_type": "S", "subcondition": 23, "parent": 7144}}, {"model": "template.logicnode", "pk": 7146, "fields": {"state_transition": 1762, "node_type": "S", "subcondition": 6, "parent": 7148}}, {"model": "template.logicnode", "pk": 7147, "fields": {"state_transition": 1762, "node_type": "S", "subcondition": 21, "parent": 7148}}, {"model": "template.logicnode", "pk": 7148, "fields": {"state_transition": 1762, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7149, "fields": {"state_transition": 1763, "node_type": "N", "subcondition": null, "parent": 7153}}, {"model": "template.logicnode", "pk": 7150, "fields": {"state_transition": 1763, "node_type": "S", "subcondition": 23, "parent": 7149}}, {"model": "template.logicnode", "pk": 7151, "fields": {"state_transition": 1763, "node_type": "S", "subcondition": 6, "parent": 7153}}, {"model": "template.logicnode", "pk": 7152, "fields": {"state_transition": 1763, "node_type": "S", "subcondition": 22, "parent": 7153}}, {"model": "template.logicnode", "pk": 7153, "fields": {"state_transition": 1763, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7154, "fields": {"state_transition": 1764, "node_type": "S", "subcondition": 23, "parent": 7157}}, {"model": "template.logicnode", "pk": 7155, "fields": {"state_transition": 1764, "node_type": "S", "subcondition": 3, "parent": 7157}}, {"model": "template.logicnode", "pk": 7156, "fields": {"state_transition": 1764, "node_type": "S", "subcondition": 19, "parent": 7157}}, {"model": "template.logicnode", "pk": 7157, "fields": {"state_transition": 1764, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7158, "fields": {"state_transition": 1765, "node_type": "S", "subcondition": 23, "parent": 7161}}, {"model": "template.logicnode", "pk": 7159, "fields": {"state_transition": 1765, "node_type": "S", "subcondition": 3, "parent": 7161}}, {"model": "template.logicnode", "pk": 7160, "fields": {"state_transition": 1765, "node_type": "S", "subcondition": 20, "parent": 7161}}, {"model": "template.logicnode", "pk": 7161, "fields": {"state_transition": 1765, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7162, "fields": {"state_transition": 1766, "node_type": "S", "subcondition": 23, "parent": 7165}}, {"model": "template.logicnode", "pk": 7163, "fields": {"state_transition": 1766, "node_type": "S", "subcondition": 3, "parent": 7165}}, {"model": "template.logicnode", "pk": 7164, "fields": {"state_transition": 1766, "node_type": "S", "subcondition": 21, "parent": 7165}}, {"model": "template.logicnode", "pk": 7165, "fields": {"state_transition": 1766, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7166, "fields": {"state_transition": 1767, "node_type": "S", "subcondition": 23, "parent": 7169}}, {"model": "template.logicnode", "pk": 7167, "fields": {"state_transition": 1767, "node_type": "S", "subcondition": 3, "parent": 7169}}, {"model": "template.logicnode", "pk": 7168, "fields": {"state_transition": 1767, "node_type": "S", "subcondition": 22, "parent": 7169}}, {"model": "template.logicnode", "pk": 7169, "fields": {"state_transition": 1767, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7170, "fields": {"state_transition": 1768, "node_type": "S", "subcondition": 23, "parent": 7173}}, {"model": "template.logicnode", "pk": 7171, "fields": {"state_transition": 1768, "node_type": "S", "subcondition": 4, "parent": 7173}}, {"model": "template.logicnode", "pk": 7172, "fields": {"state_transition": 1768, "node_type": "S", "subcondition": 19, "parent": 7173}}, {"model": "template.logicnode", "pk": 7173, "fields": {"state_transition": 1768, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7174, "fields": {"state_transition": 1769, "node_type": "S", "subcondition": 23, "parent": 7177}}, {"model": "template.logicnode", "pk": 7175, "fields": {"state_transition": 1769, "node_type": "S", "subcondition": 4, "parent": 7177}}, {"model": "template.logicnode", "pk": 7176, "fields": {"state_transition": 1769, "node_type": "S", "subcondition": 20, "parent": 7177}}, {"model": "template.logicnode", "pk": 7177, "fields": {"state_transition": 1769, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7178, "fields": {"state_transition": 1770, "node_type": "S", "subcondition": 23, "parent": 7181}}, {"model": "template.logicnode", "pk": 7179, "fields": {"state_transition": 1770, "node_type": "S", "subcondition": 4, "parent": 7181}}, {"model": "template.logicnode", "pk": 7180, "fields": {"state_transition": 1770, "node_type": "S", "subcondition": 21, "parent": 7181}}, {"model": "template.logicnode", "pk": 7181, "fields": {"state_transition": 1770, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7182, "fields": {"state_transition": 1771, "node_type": "S", "subcondition": 23, "parent": 7185}}, {"model": "template.logicnode", "pk": 7183, "fields": {"state_transition": 1771, "node_type": "S", "subcondition": 4, "parent": 7185}}, {"model": "template.logicnode", "pk": 7184, "fields": {"state_transition": 1771, "node_type": "S", "subcondition": 22, "parent": 7185}}, {"model": "template.logicnode", "pk": 7185, "fields": {"state_transition": 1771, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7186, "fields": {"state_transition": 1772, "node_type": "S", "subcondition": 23, "parent": 7189}}, {"model": "template.logicnode", "pk": 7187, "fields": {"state_transition": 1772, "node_type": "S", "subcondition": 5, "parent": 7189}}, {"model": "template.logicnode", "pk": 7188, "fields": {"state_transition": 1772, "node_type": "S", "subcondition": 19, "parent": 7189}}, {"model": "template.logicnode", "pk": 7189, "fields": {"state_transition": 1772, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7190, "fields": {"state_transition": 1773, "node_type": "S", "subcondition": 23, "parent": 7193}}, {"model": "template.logicnode", "pk": 7191, "fields": {"state_transition": 1773, "node_type": "S", "subcondition": 5, "parent": 7193}}, {"model": "template.logicnode", "pk": 7192, "fields": {"state_transition": 1773, "node_type": "S", "subcondition": 20, "parent": 7193}}, {"model": "template.logicnode", "pk": 7193, "fields": {"state_transition": 1773, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7194, "fields": {"state_transition": 1774, "node_type": "S", "subcondition": 23, "parent": 7197}}, {"model": "template.logicnode", "pk": 7195, "fields": {"state_transition": 1774, "node_type": "S", "subcondition": 5, "parent": 7197}}, {"model": "template.logicnode", "pk": 7196, "fields": {"state_transition": 1774, "node_type": "S", "subcondition": 21, "parent": 7197}}, {"model": "template.logicnode", "pk": 7197, "fields": {"state_transition": 1774, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7198, "fields": {"state_transition": 1775, "node_type": "S", "subcondition": 23, "parent": 7201}}, {"model": "template.logicnode", "pk": 7199, "fields": {"state_transition": 1775, "node_type": "S", "subcondition": 5, "parent": 7201}}, {"model": "template.logicnode", "pk": 7200, "fields": {"state_transition": 1775, "node_type": "S", "subcondition": 22, "parent": 7201}}, {"model": "template.logicnode", "pk": 7201, "fields": {"state_transition": 1775, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7202, "fields": {"state_transition": 1776, "node_type": "S", "subcondition": 23, "parent": 7205}}, {"model": "template.logicnode", "pk": 7203, "fields": {"state_transition": 1776, "node_type": "S", "subcondition": 6, "parent": 7205}}, {"model": "template.logicnode", "pk": 7204, "fields": {"state_transition": 1776, "node_type": "S", "subcondition": 19, "parent": 7205}}, {"model": "template.logicnode", "pk": 7205, "fields": {"state_transition": 1776, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7206, "fields": {"state_transition": 1777, "node_type": "S", "subcondition": 23, "parent": 7209}}, {"model": "template.logicnode", "pk": 7207, "fields": {"state_transition": 1777, "node_type": "S", "subcondition": 6, "parent": 7209}}, {"model": "template.logicnode", "pk": 7208, "fields": {"state_transition": 1777, "node_type": "S", "subcondition": 20, "parent": 7209}}, {"model": "template.logicnode", "pk": 7209, "fields": {"state_transition": 1777, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7210, "fields": {"state_transition": 1778, "node_type": "S", "subcondition": 23, "parent": 7213}}, {"model": "template.logicnode", "pk": 7211, "fields": {"state_transition": 1778, "node_type": "S", "subcondition": 6, "parent": 7213}}, {"model": "template.logicnode", "pk": 7212, "fields": {"state_transition": 1778, "node_type": "S", "subcondition": 21, "parent": 7213}}, {"model": "template.logicnode", "pk": 7213, "fields": {"state_transition": 1778, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7214, "fields": {"state_transition": 1779, "node_type": "S", "subcondition": 23, "parent": 7217}}, {"model": "template.logicnode", "pk": 7215, "fields": {"state_transition": 1779, "node_type": "S", "subcondition": 6, "parent": 7217}}, {"model": "template.logicnode", "pk": 7216, "fields": {"state_transition": 1779, "node_type": "S", "subcondition": 22, "parent": 7217}}, {"model": "template.logicnode", "pk": 7217, "fields": {"state_transition": 1779, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7218, "fields": {"state_transition": 1780, "node_type": "N", "subcondition": null, "parent": 7222}}, {"model": "template.logicnode", "pk": 7219, "fields": {"state_transition": 1780, "node_type": "S", "subcondition": 23, "parent": 7218}}, {"model": "template.logicnode", "pk": 7220, "fields": {"state_transition": 1780, "node_type": "S", "subcondition": 3, "parent": 7222}}, {"model": "template.logicnode", "pk": 7221, "fields": {"state_transition": 1780, "node_type": "S", "subcondition": 19, "parent": 7222}}, {"model": "template.logicnode", "pk": 7222, "fields": {"state_transition": 1780, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7223, "fields": {"state_transition": 1781, "node_type": "N", "subcondition": null, "parent": 7227}}, {"model": "template.logicnode", "pk": 7224, "fields": {"state_transition": 1781, "node_type": "S", "subcondition": 23, "parent": 7223}}, {"model": "template.logicnode", "pk": 7225, "fields": {"state_transition": 1781, "node_type": "S", "subcondition": 3, "parent": 7227}}, {"model": "template.logicnode", "pk": 7226, "fields": {"state_transition": 1781, "node_type": "S", "subcondition": 20, "parent": 7227}}, {"model": "template.logicnode", "pk": 7227, "fields": {"state_transition": 1781, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7228, "fields": {"state_transition": 1782, "node_type": "N", "subcondition": null, "parent": 7232}}, {"model": "template.logicnode", "pk": 7229, "fields": {"state_transition": 1782, "node_type": "S", "subcondition": 23, "parent": 7228}}, {"model": "template.logicnode", "pk": 7230, "fields": {"state_transition": 1782, "node_type": "S", "subcondition": 3, "parent": 7232}}, {"model": "template.logicnode", "pk": 7231, "fields": {"state_transition": 1782, "node_type": "S", "subcondition": 21, "parent": 7232}}, {"model": "template.logicnode", "pk": 7232, "fields": {"state_transition": 1782, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7233, "fields": {"state_transition": 1783, "node_type": "N", "subcondition": null, "parent": 7237}}, {"model": "template.logicnode", "pk": 7234, "fields": {"state_transition": 1783, "node_type": "S", "subcondition": 23, "parent": 7233}}, {"model": "template.logicnode", "pk": 7235, "fields": {"state_transition": 1783, "node_type": "S", "subcondition": 3, "parent": 7237}}, {"model": "template.logicnode", "pk": 7236, "fields": {"state_transition": 1783, "node_type": "S", "subcondition": 22, "parent": 7237}}, {"model": "template.logicnode", "pk": 7237, "fields": {"state_transition": 1783, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7238, "fields": {"state_transition": 1784, "node_type": "N", "subcondition": null, "parent": 7242}}, {"model": "template.logicnode", "pk": 7239, "fields": {"state_transition": 1784, "node_type": "S", "subcondition": 23, "parent": 7238}}, {"model": "template.logicnode", "pk": 7240, "fields": {"state_transition": 1784, "node_type": "S", "subcondition": 4, "parent": 7242}}, {"model": "template.logicnode", "pk": 7241, "fields": {"state_transition": 1784, "node_type": "S", "subcondition": 19, "parent": 7242}}, {"model": "template.logicnode", "pk": 7242, "fields": {"state_transition": 1784, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7243, "fields": {"state_transition": 1785, "node_type": "N", "subcondition": null, "parent": 7247}}, {"model": "template.logicnode", "pk": 7244, "fields": {"state_transition": 1785, "node_type": "S", "subcondition": 23, "parent": 7243}}, {"model": "template.logicnode", "pk": 7245, "fields": {"state_transition": 1785, "node_type": "S", "subcondition": 4, "parent": 7247}}, {"model": "template.logicnode", "pk": 7246, "fields": {"state_transition": 1785, "node_type": "S", "subcondition": 20, "parent": 7247}}, {"model": "template.logicnode", "pk": 7247, "fields": {"state_transition": 1785, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7248, "fields": {"state_transition": 1786, "node_type": "N", "subcondition": null, "parent": 7252}}, {"model": "template.logicnode", "pk": 7249, "fields": {"state_transition": 1786, "node_type": "S", "subcondition": 23, "parent": 7248}}, {"model": "template.logicnode", "pk": 7250, "fields": {"state_transition": 1786, "node_type": "S", "subcondition": 4, "parent": 7252}}, {"model": "template.logicnode", "pk": 7251, "fields": {"state_transition": 1786, "node_type": "S", "subcondition": 21, "parent": 7252}}, {"model": "template.logicnode", "pk": 7252, "fields": {"state_transition": 1786, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7253, "fields": {"state_transition": 1787, "node_type": "N", "subcondition": null, "parent": 7257}}, {"model": "template.logicnode", "pk": 7254, "fields": {"state_transition": 1787, "node_type": "S", "subcondition": 23, "parent": 7253}}, {"model": "template.logicnode", "pk": 7255, "fields": {"state_transition": 1787, "node_type": "S", "subcondition": 4, "parent": 7257}}, {"model": "template.logicnode", "pk": 7256, "fields": {"state_transition": 1787, "node_type": "S", "subcondition": 22, "parent": 7257}}, {"model": "template.logicnode", "pk": 7257, "fields": {"state_transition": 1787, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7258, "fields": {"state_transition": 1788, "node_type": "N", "subcondition": null, "parent": 7262}}, {"model": "template.logicnode", "pk": 7259, "fields": {"state_transition": 1788, "node_type": "S", "subcondition": 23, "parent": 7258}}, {"model": "template.logicnode", "pk": 7260, "fields": {"state_transition": 1788, "node_type": "S", "subcondition": 5, "parent": 7262}}, {"model": "template.logicnode", "pk": 7261, "fields": {"state_transition": 1788, "node_type": "S", "subcondition": 19, "parent": 7262}}, {"model": "template.logicnode", "pk": 7262, "fields": {"state_transition": 1788, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7263, "fields": {"state_transition": 1789, "node_type": "N", "subcondition": null, "parent": 7267}}, {"model": "template.logicnode", "pk": 7264, "fields": {"state_transition": 1789, "node_type": "S", "subcondition": 23, "parent": 7263}}, {"model": "template.logicnode", "pk": 7265, "fields": {"state_transition": 1789, "node_type": "S", "subcondition": 5, "parent": 7267}}, {"model": "template.logicnode", "pk": 7266, "fields": {"state_transition": 1789, "node_type": "S", "subcondition": 20, "parent": 7267}}, {"model": "template.logicnode", "pk": 7267, "fields": {"state_transition": 1789, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7268, "fields": {"state_transition": 1790, "node_type": "N", "subcondition": null, "parent": 7272}}, {"model": "template.logicnode", "pk": 7269, "fields": {"state_transition": 1790, "node_type": "S", "subcondition": 23, "parent": 7268}}, {"model": "template.logicnode", "pk": 7270, "fields": {"state_transition": 1790, "node_type": "S", "subcondition": 5, "parent": 7272}}, {"model": "template.logicnode", "pk": 7271, "fields": {"state_transition": 1790, "node_type": "S", "subcondition": 21, "parent": 7272}}, {"model": "template.logicnode", "pk": 7272, "fields": {"state_transition": 1790, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7273, "fields": {"state_transition": 1791, "node_type": "N", "subcondition": null, "parent": 7277}}, {"model": "template.logicnode", "pk": 7274, "fields": {"state_transition": 1791, "node_type": "S", "subcondition": 23, "parent": 7273}}, {"model": "template.logicnode", "pk": 7275, "fields": {"state_transition": 1791, "node_type": "S", "subcondition": 5, "parent": 7277}}, {"model": "template.logicnode", "pk": 7276, "fields": {"state_transition": 1791, "node_type": "S", "subcondition": 22, "parent": 7277}}, {"model": "template.logicnode", "pk": 7277, "fields": {"state_transition": 1791, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7278, "fields": {"state_transition": 1792, "node_type": "N", "subcondition": null, "parent": 7282}}, {"model": "template.logicnode", "pk": 7279, "fields": {"state_transition": 1792, "node_type": "S", "subcondition": 23, "parent": 7278}}, {"model": "template.logicnode", "pk": 7280, "fields": {"state_transition": 1792, "node_type": "S", "subcondition": 6, "parent": 7282}}, {"model": "template.logicnode", "pk": 7281, "fields": {"state_transition": 1792, "node_type": "S", "subcondition": 19, "parent": 7282}}, {"model": "template.logicnode", "pk": 7282, "fields": {"state_transition": 1792, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7283, "fields": {"state_transition": 1793, "node_type": "N", "subcondition": null, "parent": 7287}}, {"model": "template.logicnode", "pk": 7284, "fields": {"state_transition": 1793, "node_type": "S", "subcondition": 23, "parent": 7283}}, {"model": "template.logicnode", "pk": 7285, "fields": {"state_transition": 1793, "node_type": "S", "subcondition": 6, "parent": 7287}}, {"model": "template.logicnode", "pk": 7286, "fields": {"state_transition": 1793, "node_type": "S", "subcondition": 20, "parent": 7287}}, {"model": "template.logicnode", "pk": 7287, "fields": {"state_transition": 1793, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7288, "fields": {"state_transition": 1794, "node_type": "N", "subcondition": null, "parent": 7292}}, {"model": "template.logicnode", "pk": 7289, "fields": {"state_transition": 1794, "node_type": "S", "subcondition": 23, "parent": 7288}}, {"model": "template.logicnode", "pk": 7290, "fields": {"state_transition": 1794, "node_type": "S", "subcondition": 6, "parent": 7292}}, {"model": "template.logicnode", "pk": 7291, "fields": {"state_transition": 1794, "node_type": "S", "subcondition": 21, "parent": 7292}}, {"model": "template.logicnode", "pk": 7292, "fields": {"state_transition": 1794, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7293, "fields": {"state_transition": 1795, "node_type": "N", "subcondition": null, "parent": 7297}}, {"model": "template.logicnode", "pk": 7294, "fields": {"state_transition": 1795, "node_type": "S", "subcondition": 23, "parent": 7293}}, {"model": "template.logicnode", "pk": 7295, "fields": {"state_transition": 1795, "node_type": "S", "subcondition": 6, "parent": 7297}}, {"model": "template.logicnode", "pk": 7296, "fields": {"state_transition": 1795, "node_type": "S", "subcondition": 22, "parent": 7297}}, {"model": "template.logicnode", "pk": 7297, "fields": {"state_transition": 1795, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7298, "fields": {"state_transition": 1796, "node_type": "S", "subcondition": 23, "parent": 7301}}, {"model": "template.logicnode", "pk": 7299, "fields": {"state_transition": 1796, "node_type": "S", "subcondition": 3, "parent": 7301}}, {"model": "template.logicnode", "pk": 7300, "fields": {"state_transition": 1796, "node_type": "S", "subcondition": 19, "parent": 7301}}, {"model": "template.logicnode", "pk": 7301, "fields": {"state_transition": 1796, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7302, "fields": {"state_transition": 1797, "node_type": "S", "subcondition": 23, "parent": 7305}}, {"model": "template.logicnode", "pk": 7303, "fields": {"state_transition": 1797, "node_type": "S", "subcondition": 3, "parent": 7305}}, {"model": "template.logicnode", "pk": 7304, "fields": {"state_transition": 1797, "node_type": "S", "subcondition": 20, "parent": 7305}}, {"model": "template.logicnode", "pk": 7305, "fields": {"state_transition": 1797, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7306, "fields": {"state_transition": 1798, "node_type": "S", "subcondition": 23, "parent": 7309}}, {"model": "template.logicnode", "pk": 7307, "fields": {"state_transition": 1798, "node_type": "S", "subcondition": 3, "parent": 7309}}, {"model": "template.logicnode", "pk": 7308, "fields": {"state_transition": 1798, "node_type": "S", "subcondition": 21, "parent": 7309}}, {"model": "template.logicnode", "pk": 7309, "fields": {"state_transition": 1798, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7310, "fields": {"state_transition": 1799, "node_type": "S", "subcondition": 23, "parent": 7313}}, {"model": "template.logicnode", "pk": 7311, "fields": {"state_transition": 1799, "node_type": "S", "subcondition": 3, "parent": 7313}}, {"model": "template.logicnode", "pk": 7312, "fields": {"state_transition": 1799, "node_type": "S", "subcondition": 22, "parent": 7313}}, {"model": "template.logicnode", "pk": 7313, "fields": {"state_transition": 1799, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7314, "fields": {"state_transition": 1800, "node_type": "S", "subcondition": 23, "parent": 7317}}, {"model": "template.logicnode", "pk": 7315, "fields": {"state_transition": 1800, "node_type": "S", "subcondition": 4, "parent": 7317}}, {"model": "template.logicnode", "pk": 7316, "fields": {"state_transition": 1800, "node_type": "S", "subcondition": 19, "parent": 7317}}, {"model": "template.logicnode", "pk": 7317, "fields": {"state_transition": 1800, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7318, "fields": {"state_transition": 1801, "node_type": "S", "subcondition": 23, "parent": 7321}}, {"model": "template.logicnode", "pk": 7319, "fields": {"state_transition": 1801, "node_type": "S", "subcondition": 4, "parent": 7321}}, {"model": "template.logicnode", "pk": 7320, "fields": {"state_transition": 1801, "node_type": "S", "subcondition": 20, "parent": 7321}}, {"model": "template.logicnode", "pk": 7321, "fields": {"state_transition": 1801, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7322, "fields": {"state_transition": 1802, "node_type": "S", "subcondition": 23, "parent": 7325}}, {"model": "template.logicnode", "pk": 7323, "fields": {"state_transition": 1802, "node_type": "S", "subcondition": 4, "parent": 7325}}, {"model": "template.logicnode", "pk": 7324, "fields": {"state_transition": 1802, "node_type": "S", "subcondition": 21, "parent": 7325}}, {"model": "template.logicnode", "pk": 7325, "fields": {"state_transition": 1802, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7326, "fields": {"state_transition": 1803, "node_type": "S", "subcondition": 23, "parent": 7329}}, {"model": "template.logicnode", "pk": 7327, "fields": {"state_transition": 1803, "node_type": "S", "subcondition": 4, "parent": 7329}}, {"model": "template.logicnode", "pk": 7328, "fields": {"state_transition": 1803, "node_type": "S", "subcondition": 22, "parent": 7329}}, {"model": "template.logicnode", "pk": 7329, "fields": {"state_transition": 1803, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7330, "fields": {"state_transition": 1804, "node_type": "S", "subcondition": 23, "parent": 7333}}, {"model": "template.logicnode", "pk": 7331, "fields": {"state_transition": 1804, "node_type": "S", "subcondition": 5, "parent": 7333}}, {"model": "template.logicnode", "pk": 7332, "fields": {"state_transition": 1804, "node_type": "S", "subcondition": 19, "parent": 7333}}, {"model": "template.logicnode", "pk": 7333, "fields": {"state_transition": 1804, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7334, "fields": {"state_transition": 1805, "node_type": "S", "subcondition": 23, "parent": 7337}}, {"model": "template.logicnode", "pk": 7335, "fields": {"state_transition": 1805, "node_type": "S", "subcondition": 5, "parent": 7337}}, {"model": "template.logicnode", "pk": 7336, "fields": {"state_transition": 1805, "node_type": "S", "subcondition": 20, "parent": 7337}}, {"model": "template.logicnode", "pk": 7337, "fields": {"state_transition": 1805, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7338, "fields": {"state_transition": 1806, "node_type": "S", "subcondition": 23, "parent": 7341}}, {"model": "template.logicnode", "pk": 7339, "fields": {"state_transition": 1806, "node_type": "S", "subcondition": 5, "parent": 7341}}, {"model": "template.logicnode", "pk": 7340, "fields": {"state_transition": 1806, "node_type": "S", "subcondition": 21, "parent": 7341}}, {"model": "template.logicnode", "pk": 7341, "fields": {"state_transition": 1806, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7342, "fields": {"state_transition": 1807, "node_type": "S", "subcondition": 23, "parent": 7345}}, {"model": "template.logicnode", "pk": 7343, "fields": {"state_transition": 1807, "node_type": "S", "subcondition": 5, "parent": 7345}}, {"model": "template.logicnode", "pk": 7344, "fields": {"state_transition": 1807, "node_type": "S", "subcondition": 22, "parent": 7345}}, {"model": "template.logicnode", "pk": 7345, "fields": {"state_transition": 1807, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7346, "fields": {"state_transition": 1808, "node_type": "S", "subcondition": 23, "parent": 7349}}, {"model": "template.logicnode", "pk": 7347, "fields": {"state_transition": 1808, "node_type": "S", "subcondition": 6, "parent": 7349}}, {"model": "template.logicnode", "pk": 7348, "fields": {"state_transition": 1808, "node_type": "S", "subcondition": 19, "parent": 7349}}, {"model": "template.logicnode", "pk": 7349, "fields": {"state_transition": 1808, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7350, "fields": {"state_transition": 1809, "node_type": "S", "subcondition": 23, "parent": 7353}}, {"model": "template.logicnode", "pk": 7351, "fields": {"state_transition": 1809, "node_type": "S", "subcondition": 6, "parent": 7353}}, {"model": "template.logicnode", "pk": 7352, "fields": {"state_transition": 1809, "node_type": "S", "subcondition": 20, "parent": 7353}}, {"model": "template.logicnode", "pk": 7353, "fields": {"state_transition": 1809, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7354, "fields": {"state_transition": 1810, "node_type": "S", "subcondition": 23, "parent": 7357}}, {"model": "template.logicnode", "pk": 7355, "fields": {"state_transition": 1810, "node_type": "S", "subcondition": 6, "parent": 7357}}, {"model": "template.logicnode", "pk": 7356, "fields": {"state_transition": 1810, "node_type": "S", "subcondition": 21, "parent": 7357}}, {"model": "template.logicnode", "pk": 7357, "fields": {"state_transition": 1810, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7358, "fields": {"state_transition": 1811, "node_type": "S", "subcondition": 23, "parent": 7361}}, {"model": "template.logicnode", "pk": 7359, "fields": {"state_transition": 1811, "node_type": "S", "subcondition": 6, "parent": 7361}}, {"model": "template.logicnode", "pk": 7360, "fields": {"state_transition": 1811, "node_type": "S", "subcondition": 22, "parent": 7361}}, {"model": "template.logicnode", "pk": 7361, "fields": {"state_transition": 1811, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7362, "fields": {"state_transition": 1812, "node_type": "N", "subcondition": null, "parent": 7366}}, {"model": "template.logicnode", "pk": 7363, "fields": {"state_transition": 1812, "node_type": "S", "subcondition": 23, "parent": 7362}}, {"model": "template.logicnode", "pk": 7364, "fields": {"state_transition": 1812, "node_type": "S", "subcondition": 3, "parent": 7366}}, {"model": "template.logicnode", "pk": 7365, "fields": {"state_transition": 1812, "node_type": "S", "subcondition": 19, "parent": 7366}}, {"model": "template.logicnode", "pk": 7366, "fields": {"state_transition": 1812, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7367, "fields": {"state_transition": 1813, "node_type": "N", "subcondition": null, "parent": 7371}}, {"model": "template.logicnode", "pk": 7368, "fields": {"state_transition": 1813, "node_type": "S", "subcondition": 23, "parent": 7367}}, {"model": "template.logicnode", "pk": 7369, "fields": {"state_transition": 1813, "node_type": "S", "subcondition": 3, "parent": 7371}}, {"model": "template.logicnode", "pk": 7370, "fields": {"state_transition": 1813, "node_type": "S", "subcondition": 20, "parent": 7371}}, {"model": "template.logicnode", "pk": 7371, "fields": {"state_transition": 1813, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7372, "fields": {"state_transition": 1814, "node_type": "N", "subcondition": null, "parent": 7376}}, {"model": "template.logicnode", "pk": 7373, "fields": {"state_transition": 1814, "node_type": "S", "subcondition": 23, "parent": 7372}}, {"model": "template.logicnode", "pk": 7374, "fields": {"state_transition": 1814, "node_type": "S", "subcondition": 3, "parent": 7376}}, {"model": "template.logicnode", "pk": 7375, "fields": {"state_transition": 1814, "node_type": "S", "subcondition": 21, "parent": 7376}}, {"model": "template.logicnode", "pk": 7376, "fields": {"state_transition": 1814, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7377, "fields": {"state_transition": 1815, "node_type": "N", "subcondition": null, "parent": 7381}}, {"model": "template.logicnode", "pk": 7378, "fields": {"state_transition": 1815, "node_type": "S", "subcondition": 23, "parent": 7377}}, {"model": "template.logicnode", "pk": 7379, "fields": {"state_transition": 1815, "node_type": "S", "subcondition": 3, "parent": 7381}}, {"model": "template.logicnode", "pk": 7380, "fields": {"state_transition": 1815, "node_type": "S", "subcondition": 22, "parent": 7381}}, {"model": "template.logicnode", "pk": 7381, "fields": {"state_transition": 1815, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7382, "fields": {"state_transition": 1816, "node_type": "N", "subcondition": null, "parent": 7386}}, {"model": "template.logicnode", "pk": 7383, "fields": {"state_transition": 1816, "node_type": "S", "subcondition": 23, "parent": 7382}}, {"model": "template.logicnode", "pk": 7384, "fields": {"state_transition": 1816, "node_type": "S", "subcondition": 4, "parent": 7386}}, {"model": "template.logicnode", "pk": 7385, "fields": {"state_transition": 1816, "node_type": "S", "subcondition": 19, "parent": 7386}}, {"model": "template.logicnode", "pk": 7386, "fields": {"state_transition": 1816, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7387, "fields": {"state_transition": 1817, "node_type": "N", "subcondition": null, "parent": 7391}}, {"model": "template.logicnode", "pk": 7388, "fields": {"state_transition": 1817, "node_type": "S", "subcondition": 23, "parent": 7387}}, {"model": "template.logicnode", "pk": 7389, "fields": {"state_transition": 1817, "node_type": "S", "subcondition": 4, "parent": 7391}}, {"model": "template.logicnode", "pk": 7390, "fields": {"state_transition": 1817, "node_type": "S", "subcondition": 20, "parent": 7391}}, {"model": "template.logicnode", "pk": 7391, "fields": {"state_transition": 1817, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7392, "fields": {"state_transition": 1818, "node_type": "N", "subcondition": null, "parent": 7396}}, {"model": "template.logicnode", "pk": 7393, "fields": {"state_transition": 1818, "node_type": "S", "subcondition": 23, "parent": 7392}}, {"model": "template.logicnode", "pk": 7394, "fields": {"state_transition": 1818, "node_type": "S", "subcondition": 4, "parent": 7396}}, {"model": "template.logicnode", "pk": 7395, "fields": {"state_transition": 1818, "node_type": "S", "subcondition": 21, "parent": 7396}}, {"model": "template.logicnode", "pk": 7396, "fields": {"state_transition": 1818, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7397, "fields": {"state_transition": 1819, "node_type": "N", "subcondition": null, "parent": 7401}}, {"model": "template.logicnode", "pk": 7398, "fields": {"state_transition": 1819, "node_type": "S", "subcondition": 23, "parent": 7397}}, {"model": "template.logicnode", "pk": 7399, "fields": {"state_transition": 1819, "node_type": "S", "subcondition": 4, "parent": 7401}}, {"model": "template.logicnode", "pk": 7400, "fields": {"state_transition": 1819, "node_type": "S", "subcondition": 22, "parent": 7401}}, {"model": "template.logicnode", "pk": 7401, "fields": {"state_transition": 1819, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7402, "fields": {"state_transition": 1820, "node_type": "N", "subcondition": null, "parent": 7406}}, {"model": "template.logicnode", "pk": 7403, "fields": {"state_transition": 1820, "node_type": "S", "subcondition": 23, "parent": 7402}}, {"model": "template.logicnode", "pk": 7404, "fields": {"state_transition": 1820, "node_type": "S", "subcondition": 5, "parent": 7406}}, {"model": "template.logicnode", "pk": 7405, "fields": {"state_transition": 1820, "node_type": "S", "subcondition": 19, "parent": 7406}}, {"model": "template.logicnode", "pk": 7406, "fields": {"state_transition": 1820, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7407, "fields": {"state_transition": 1821, "node_type": "N", "subcondition": null, "parent": 7411}}, {"model": "template.logicnode", "pk": 7408, "fields": {"state_transition": 1821, "node_type": "S", "subcondition": 23, "parent": 7407}}, {"model": "template.logicnode", "pk": 7409, "fields": {"state_transition": 1821, "node_type": "S", "subcondition": 5, "parent": 7411}}, {"model": "template.logicnode", "pk": 7410, "fields": {"state_transition": 1821, "node_type": "S", "subcondition": 20, "parent": 7411}}, {"model": "template.logicnode", "pk": 7411, "fields": {"state_transition": 1821, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7412, "fields": {"state_transition": 1822, "node_type": "N", "subcondition": null, "parent": 7416}}, {"model": "template.logicnode", "pk": 7413, "fields": {"state_transition": 1822, "node_type": "S", "subcondition": 23, "parent": 7412}}, {"model": "template.logicnode", "pk": 7414, "fields": {"state_transition": 1822, "node_type": "S", "subcondition": 5, "parent": 7416}}, {"model": "template.logicnode", "pk": 7415, "fields": {"state_transition": 1822, "node_type": "S", "subcondition": 21, "parent": 7416}}, {"model": "template.logicnode", "pk": 7416, "fields": {"state_transition": 1822, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7417, "fields": {"state_transition": 1823, "node_type": "N", "subcondition": null, "parent": 7421}}, {"model": "template.logicnode", "pk": 7418, "fields": {"state_transition": 1823, "node_type": "S", "subcondition": 23, "parent": 7417}}, {"model": "template.logicnode", "pk": 7419, "fields": {"state_transition": 1823, "node_type": "S", "subcondition": 5, "parent": 7421}}, {"model": "template.logicnode", "pk": 7420, "fields": {"state_transition": 1823, "node_type": "S", "subcondition": 22, "parent": 7421}}, {"model": "template.logicnode", "pk": 7421, "fields": {"state_transition": 1823, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7422, "fields": {"state_transition": 1824, "node_type": "N", "subcondition": null, "parent": 7426}}, {"model": "template.logicnode", "pk": 7423, "fields": {"state_transition": 1824, "node_type": "S", "subcondition": 23, "parent": 7422}}, {"model": "template.logicnode", "pk": 7424, "fields": {"state_transition": 1824, "node_type": "S", "subcondition": 6, "parent": 7426}}, {"model": "template.logicnode", "pk": 7425, "fields": {"state_transition": 1824, "node_type": "S", "subcondition": 19, "parent": 7426}}, {"model": "template.logicnode", "pk": 7426, "fields": {"state_transition": 1824, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7427, "fields": {"state_transition": 1825, "node_type": "N", "subcondition": null, "parent": 7431}}, {"model": "template.logicnode", "pk": 7428, "fields": {"state_transition": 1825, "node_type": "S", "subcondition": 23, "parent": 7427}}, {"model": "template.logicnode", "pk": 7429, "fields": {"state_transition": 1825, "node_type": "S", "subcondition": 6, "parent": 7431}}, {"model": "template.logicnode", "pk": 7430, "fields": {"state_transition": 1825, "node_type": "S", "subcondition": 20, "parent": 7431}}, {"model": "template.logicnode", "pk": 7431, "fields": {"state_transition": 1825, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7432, "fields": {"state_transition": 1826, "node_type": "N", "subcondition": null, "parent": 7436}}, {"model": "template.logicnode", "pk": 7433, "fields": {"state_transition": 1826, "node_type": "S", "subcondition": 23, "parent": 7432}}, {"model": "template.logicnode", "pk": 7434, "fields": {"state_transition": 1826, "node_type": "S", "subcondition": 6, "parent": 7436}}, {"model": "template.logicnode", "pk": 7435, "fields": {"state_transition": 1826, "node_type": "S", "subcondition": 21, "parent": 7436}}, {"model": "template.logicnode", "pk": 7436, "fields": {"state_transition": 1826, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7437, "fields": {"state_transition": 1827, "node_type": "N", "subcondition": null, "parent": 7441}}, {"model": "template.logicnode", "pk": 7438, "fields": {"state_transition": 1827, "node_type": "S", "subcondition": 23, "parent": 7437}}, {"model": "template.logicnode", "pk": 7439, "fields": {"state_transition": 1827, "node_type": "S", "subcondition": 6, "parent": 7441}}, {"model": "template.logicnode", "pk": 7440, "fields": {"state_transition": 1827, "node_type": "S", "subcondition": 22, "parent": 7441}}, {"model": "template.logicnode", "pk": 7441, "fields": {"state_transition": 1827, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7442, "fields": {"state_transition": 1828, "node_type": "S", "subcondition": 23, "parent": 7445}}, {"model": "template.logicnode", "pk": 7443, "fields": {"state_transition": 1828, "node_type": "S", "subcondition": 3, "parent": 7445}}, {"model": "template.logicnode", "pk": 7444, "fields": {"state_transition": 1828, "node_type": "S", "subcondition": 19, "parent": 7445}}, {"model": "template.logicnode", "pk": 7445, "fields": {"state_transition": 1828, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7446, "fields": {"state_transition": 1829, "node_type": "S", "subcondition": 23, "parent": 7449}}, {"model": "template.logicnode", "pk": 7447, "fields": {"state_transition": 1829, "node_type": "S", "subcondition": 3, "parent": 7449}}, {"model": "template.logicnode", "pk": 7448, "fields": {"state_transition": 1829, "node_type": "S", "subcondition": 20, "parent": 7449}}, {"model": "template.logicnode", "pk": 7449, "fields": {"state_transition": 1829, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7450, "fields": {"state_transition": 1830, "node_type": "S", "subcondition": 23, "parent": 7453}}, {"model": "template.logicnode", "pk": 7451, "fields": {"state_transition": 1830, "node_type": "S", "subcondition": 3, "parent": 7453}}, {"model": "template.logicnode", "pk": 7452, "fields": {"state_transition": 1830, "node_type": "S", "subcondition": 21, "parent": 7453}}, {"model": "template.logicnode", "pk": 7453, "fields": {"state_transition": 1830, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7454, "fields": {"state_transition": 1831, "node_type": "S", "subcondition": 23, "parent": 7457}}, {"model": "template.logicnode", "pk": 7455, "fields": {"state_transition": 1831, "node_type": "S", "subcondition": 3, "parent": 7457}}, {"model": "template.logicnode", "pk": 7456, "fields": {"state_transition": 1831, "node_type": "S", "subcondition": 22, "parent": 7457}}, {"model": "template.logicnode", "pk": 7457, "fields": {"state_transition": 1831, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7458, "fields": {"state_transition": 1832, "node_type": "S", "subcondition": 23, "parent": 7461}}, {"model": "template.logicnode", "pk": 7459, "fields": {"state_transition": 1832, "node_type": "S", "subcondition": 4, "parent": 7461}}, {"model": "template.logicnode", "pk": 7460, "fields": {"state_transition": 1832, "node_type": "S", "subcondition": 19, "parent": 7461}}, {"model": "template.logicnode", "pk": 7461, "fields": {"state_transition": 1832, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7462, "fields": {"state_transition": 1833, "node_type": "S", "subcondition": 23, "parent": 7465}}, {"model": "template.logicnode", "pk": 7463, "fields": {"state_transition": 1833, "node_type": "S", "subcondition": 4, "parent": 7465}}, {"model": "template.logicnode", "pk": 7464, "fields": {"state_transition": 1833, "node_type": "S", "subcondition": 20, "parent": 7465}}, {"model": "template.logicnode", "pk": 7465, "fields": {"state_transition": 1833, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7466, "fields": {"state_transition": 1834, "node_type": "S", "subcondition": 23, "parent": 7469}}, {"model": "template.logicnode", "pk": 7467, "fields": {"state_transition": 1834, "node_type": "S", "subcondition": 4, "parent": 7469}}, {"model": "template.logicnode", "pk": 7468, "fields": {"state_transition": 1834, "node_type": "S", "subcondition": 21, "parent": 7469}}, {"model": "template.logicnode", "pk": 7469, "fields": {"state_transition": 1834, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7470, "fields": {"state_transition": 1835, "node_type": "S", "subcondition": 23, "parent": 7473}}, {"model": "template.logicnode", "pk": 7471, "fields": {"state_transition": 1835, "node_type": "S", "subcondition": 4, "parent": 7473}}, {"model": "template.logicnode", "pk": 7472, "fields": {"state_transition": 1835, "node_type": "S", "subcondition": 22, "parent": 7473}}, {"model": "template.logicnode", "pk": 7473, "fields": {"state_transition": 1835, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7474, "fields": {"state_transition": 1836, "node_type": "S", "subcondition": 23, "parent": 7477}}, {"model": "template.logicnode", "pk": 7475, "fields": {"state_transition": 1836, "node_type": "S", "subcondition": 5, "parent": 7477}}, {"model": "template.logicnode", "pk": 7476, "fields": {"state_transition": 1836, "node_type": "S", "subcondition": 19, "parent": 7477}}, {"model": "template.logicnode", "pk": 7477, "fields": {"state_transition": 1836, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7478, "fields": {"state_transition": 1837, "node_type": "S", "subcondition": 23, "parent": 7481}}, {"model": "template.logicnode", "pk": 7479, "fields": {"state_transition": 1837, "node_type": "S", "subcondition": 5, "parent": 7481}}, {"model": "template.logicnode", "pk": 7480, "fields": {"state_transition": 1837, "node_type": "S", "subcondition": 20, "parent": 7481}}, {"model": "template.logicnode", "pk": 7481, "fields": {"state_transition": 1837, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7482, "fields": {"state_transition": 1838, "node_type": "S", "subcondition": 23, "parent": 7485}}, {"model": "template.logicnode", "pk": 7483, "fields": {"state_transition": 1838, "node_type": "S", "subcondition": 5, "parent": 7485}}, {"model": "template.logicnode", "pk": 7484, "fields": {"state_transition": 1838, "node_type": "S", "subcondition": 21, "parent": 7485}}, {"model": "template.logicnode", "pk": 7485, "fields": {"state_transition": 1838, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7486, "fields": {"state_transition": 1839, "node_type": "S", "subcondition": 23, "parent": 7489}}, {"model": "template.logicnode", "pk": 7487, "fields": {"state_transition": 1839, "node_type": "S", "subcondition": 5, "parent": 7489}}, {"model": "template.logicnode", "pk": 7488, "fields": {"state_transition": 1839, "node_type": "S", "subcondition": 22, "parent": 7489}}, {"model": "template.logicnode", "pk": 7489, "fields": {"state_transition": 1839, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7490, "fields": {"state_transition": 1840, "node_type": "S", "subcondition": 23, "parent": 7493}}, {"model": "template.logicnode", "pk": 7491, "fields": {"state_transition": 1840, "node_type": "S", "subcondition": 6, "parent": 7493}}, {"model": "template.logicnode", "pk": 7492, "fields": {"state_transition": 1840, "node_type": "S", "subcondition": 19, "parent": 7493}}, {"model": "template.logicnode", "pk": 7493, "fields": {"state_transition": 1840, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7494, "fields": {"state_transition": 1841, "node_type": "S", "subcondition": 23, "parent": 7497}}, {"model": "template.logicnode", "pk": 7495, "fields": {"state_transition": 1841, "node_type": "S", "subcondition": 6, "parent": 7497}}, {"model": "template.logicnode", "pk": 7496, "fields": {"state_transition": 1841, "node_type": "S", "subcondition": 20, "parent": 7497}}, {"model": "template.logicnode", "pk": 7497, "fields": {"state_transition": 1841, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7498, "fields": {"state_transition": 1842, "node_type": "S", "subcondition": 23, "parent": 7501}}, {"model": "template.logicnode", "pk": 7499, "fields": {"state_transition": 1842, "node_type": "S", "subcondition": 6, "parent": 7501}}, {"model": "template.logicnode", "pk": 7500, "fields": {"state_transition": 1842, "node_type": "S", "subcondition": 21, "parent": 7501}}, {"model": "template.logicnode", "pk": 7501, "fields": {"state_transition": 1842, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7502, "fields": {"state_transition": 1843, "node_type": "S", "subcondition": 23, "parent": 7505}}, {"model": "template.logicnode", "pk": 7503, "fields": {"state_transition": 1843, "node_type": "S", "subcondition": 6, "parent": 7505}}, {"model": "template.logicnode", "pk": 7504, "fields": {"state_transition": 1843, "node_type": "S", "subcondition": 22, "parent": 7505}}, {"model": "template.logicnode", "pk": 7505, "fields": {"state_transition": 1843, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7506, "fields": {"state_transition": 1844, "node_type": "N", "subcondition": null, "parent": 7510}}, {"model": "template.logicnode", "pk": 7507, "fields": {"state_transition": 1844, "node_type": "S", "subcondition": 23, "parent": 7506}}, {"model": "template.logicnode", "pk": 7508, "fields": {"state_transition": 1844, "node_type": "S", "subcondition": 3, "parent": 7510}}, {"model": "template.logicnode", "pk": 7509, "fields": {"state_transition": 1844, "node_type": "S", "subcondition": 19, "parent": 7510}}, {"model": "template.logicnode", "pk": 7510, "fields": {"state_transition": 1844, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7511, "fields": {"state_transition": 1845, "node_type": "N", "subcondition": null, "parent": 7515}}, {"model": "template.logicnode", "pk": 7512, "fields": {"state_transition": 1845, "node_type": "S", "subcondition": 23, "parent": 7511}}, {"model": "template.logicnode", "pk": 7513, "fields": {"state_transition": 1845, "node_type": "S", "subcondition": 3, "parent": 7515}}, {"model": "template.logicnode", "pk": 7514, "fields": {"state_transition": 1845, "node_type": "S", "subcondition": 20, "parent": 7515}}, {"model": "template.logicnode", "pk": 7515, "fields": {"state_transition": 1845, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7516, "fields": {"state_transition": 1846, "node_type": "N", "subcondition": null, "parent": 7520}}, {"model": "template.logicnode", "pk": 7517, "fields": {"state_transition": 1846, "node_type": "S", "subcondition": 23, "parent": 7516}}, {"model": "template.logicnode", "pk": 7518, "fields": {"state_transition": 1846, "node_type": "S", "subcondition": 3, "parent": 7520}}, {"model": "template.logicnode", "pk": 7519, "fields": {"state_transition": 1846, "node_type": "S", "subcondition": 21, "parent": 7520}}, {"model": "template.logicnode", "pk": 7520, "fields": {"state_transition": 1846, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7521, "fields": {"state_transition": 1847, "node_type": "N", "subcondition": null, "parent": 7525}}, {"model": "template.logicnode", "pk": 7522, "fields": {"state_transition": 1847, "node_type": "S", "subcondition": 23, "parent": 7521}}, {"model": "template.logicnode", "pk": 7523, "fields": {"state_transition": 1847, "node_type": "S", "subcondition": 3, "parent": 7525}}, {"model": "template.logicnode", "pk": 7524, "fields": {"state_transition": 1847, "node_type": "S", "subcondition": 22, "parent": 7525}}, {"model": "template.logicnode", "pk": 7525, "fields": {"state_transition": 1847, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7526, "fields": {"state_transition": 1848, "node_type": "N", "subcondition": null, "parent": 7530}}, {"model": "template.logicnode", "pk": 7527, "fields": {"state_transition": 1848, "node_type": "S", "subcondition": 23, "parent": 7526}}, {"model": "template.logicnode", "pk": 7528, "fields": {"state_transition": 1848, "node_type": "S", "subcondition": 4, "parent": 7530}}, {"model": "template.logicnode", "pk": 7529, "fields": {"state_transition": 1848, "node_type": "S", "subcondition": 19, "parent": 7530}}, {"model": "template.logicnode", "pk": 7530, "fields": {"state_transition": 1848, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7531, "fields": {"state_transition": 1849, "node_type": "N", "subcondition": null, "parent": 7535}}, {"model": "template.logicnode", "pk": 7532, "fields": {"state_transition": 1849, "node_type": "S", "subcondition": 23, "parent": 7531}}, {"model": "template.logicnode", "pk": 7533, "fields": {"state_transition": 1849, "node_type": "S", "subcondition": 4, "parent": 7535}}, {"model": "template.logicnode", "pk": 7534, "fields": {"state_transition": 1849, "node_type": "S", "subcondition": 20, "parent": 7535}}, {"model": "template.logicnode", "pk": 7535, "fields": {"state_transition": 1849, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7536, "fields": {"state_transition": 1850, "node_type": "N", "subcondition": null, "parent": 7540}}, {"model": "template.logicnode", "pk": 7537, "fields": {"state_transition": 1850, "node_type": "S", "subcondition": 23, "parent": 7536}}, {"model": "template.logicnode", "pk": 7538, "fields": {"state_transition": 1850, "node_type": "S", "subcondition": 4, "parent": 7540}}, {"model": "template.logicnode", "pk": 7539, "fields": {"state_transition": 1850, "node_type": "S", "subcondition": 21, "parent": 7540}}, {"model": "template.logicnode", "pk": 7540, "fields": {"state_transition": 1850, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7541, "fields": {"state_transition": 1851, "node_type": "N", "subcondition": null, "parent": 7545}}, {"model": "template.logicnode", "pk": 7542, "fields": {"state_transition": 1851, "node_type": "S", "subcondition": 23, "parent": 7541}}, {"model": "template.logicnode", "pk": 7543, "fields": {"state_transition": 1851, "node_type": "S", "subcondition": 4, "parent": 7545}}, {"model": "template.logicnode", "pk": 7544, "fields": {"state_transition": 1851, "node_type": "S", "subcondition": 22, "parent": 7545}}, {"model": "template.logicnode", "pk": 7545, "fields": {"state_transition": 1851, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7546, "fields": {"state_transition": 1852, "node_type": "N", "subcondition": null, "parent": 7550}}, {"model": "template.logicnode", "pk": 7547, "fields": {"state_transition": 1852, "node_type": "S", "subcondition": 23, "parent": 7546}}, {"model": "template.logicnode", "pk": 7548, "fields": {"state_transition": 1852, "node_type": "S", "subcondition": 5, "parent": 7550}}, {"model": "template.logicnode", "pk": 7549, "fields": {"state_transition": 1852, "node_type": "S", "subcondition": 19, "parent": 7550}}, {"model": "template.logicnode", "pk": 7550, "fields": {"state_transition": 1852, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7551, "fields": {"state_transition": 1853, "node_type": "N", "subcondition": null, "parent": 7555}}, {"model": "template.logicnode", "pk": 7552, "fields": {"state_transition": 1853, "node_type": "S", "subcondition": 23, "parent": 7551}}, {"model": "template.logicnode", "pk": 7553, "fields": {"state_transition": 1853, "node_type": "S", "subcondition": 5, "parent": 7555}}, {"model": "template.logicnode", "pk": 7554, "fields": {"state_transition": 1853, "node_type": "S", "subcondition": 20, "parent": 7555}}, {"model": "template.logicnode", "pk": 7555, "fields": {"state_transition": 1853, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7556, "fields": {"state_transition": 1854, "node_type": "N", "subcondition": null, "parent": 7560}}, {"model": "template.logicnode", "pk": 7557, "fields": {"state_transition": 1854, "node_type": "S", "subcondition": 23, "parent": 7556}}, {"model": "template.logicnode", "pk": 7558, "fields": {"state_transition": 1854, "node_type": "S", "subcondition": 5, "parent": 7560}}, {"model": "template.logicnode", "pk": 7559, "fields": {"state_transition": 1854, "node_type": "S", "subcondition": 21, "parent": 7560}}, {"model": "template.logicnode", "pk": 7560, "fields": {"state_transition": 1854, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7561, "fields": {"state_transition": 1855, "node_type": "N", "subcondition": null, "parent": 7565}}, {"model": "template.logicnode", "pk": 7562, "fields": {"state_transition": 1855, "node_type": "S", "subcondition": 23, "parent": 7561}}, {"model": "template.logicnode", "pk": 7563, "fields": {"state_transition": 1855, "node_type": "S", "subcondition": 5, "parent": 7565}}, {"model": "template.logicnode", "pk": 7564, "fields": {"state_transition": 1855, "node_type": "S", "subcondition": 22, "parent": 7565}}, {"model": "template.logicnode", "pk": 7565, "fields": {"state_transition": 1855, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7566, "fields": {"state_transition": 1856, "node_type": "N", "subcondition": null, "parent": 7570}}, {"model": "template.logicnode", "pk": 7567, "fields": {"state_transition": 1856, "node_type": "S", "subcondition": 23, "parent": 7566}}, {"model": "template.logicnode", "pk": 7568, "fields": {"state_transition": 1856, "node_type": "S", "subcondition": 6, "parent": 7570}}, {"model": "template.logicnode", "pk": 7569, "fields": {"state_transition": 1856, "node_type": "S", "subcondition": 19, "parent": 7570}}, {"model": "template.logicnode", "pk": 7570, "fields": {"state_transition": 1856, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7571, "fields": {"state_transition": 1857, "node_type": "N", "subcondition": null, "parent": 7575}}, {"model": "template.logicnode", "pk": 7572, "fields": {"state_transition": 1857, "node_type": "S", "subcondition": 23, "parent": 7571}}, {"model": "template.logicnode", "pk": 7573, "fields": {"state_transition": 1857, "node_type": "S", "subcondition": 6, "parent": 7575}}, {"model": "template.logicnode", "pk": 7574, "fields": {"state_transition": 1857, "node_type": "S", "subcondition": 20, "parent": 7575}}, {"model": "template.logicnode", "pk": 7575, "fields": {"state_transition": 1857, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7576, "fields": {"state_transition": 1858, "node_type": "N", "subcondition": null, "parent": 7580}}, {"model": "template.logicnode", "pk": 7577, "fields": {"state_transition": 1858, "node_type": "S", "subcondition": 23, "parent": 7576}}, {"model": "template.logicnode", "pk": 7578, "fields": {"state_transition": 1858, "node_type": "S", "subcondition": 6, "parent": 7580}}, {"model": "template.logicnode", "pk": 7579, "fields": {"state_transition": 1858, "node_type": "S", "subcondition": 21, "parent": 7580}}, {"model": "template.logicnode", "pk": 7580, "fields": {"state_transition": 1858, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7581, "fields": {"state_transition": 1859, "node_type": "N", "subcondition": null, "parent": 7585}}, {"model": "template.logicnode", "pk": 7582, "fields": {"state_transition": 1859, "node_type": "S", "subcondition": 23, "parent": 7581}}, {"model": "template.logicnode", "pk": 7583, "fields": {"state_transition": 1859, "node_type": "S", "subcondition": 6, "parent": 7585}}, {"model": "template.logicnode", "pk": 7584, "fields": {"state_transition": 1859, "node_type": "S", "subcondition": 22, "parent": 7585}}, {"model": "template.logicnode", "pk": 7585, "fields": {"state_transition": 1859, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7586, "fields": {"state_transition": 1860, "node_type": "S", "subcondition": 23, "parent": 7589}}, {"model": "template.logicnode", "pk": 7587, "fields": {"state_transition": 1860, "node_type": "S", "subcondition": 3, "parent": 7589}}, {"model": "template.logicnode", "pk": 7588, "fields": {"state_transition": 1860, "node_type": "S", "subcondition": 19, "parent": 7589}}, {"model": "template.logicnode", "pk": 7589, "fields": {"state_transition": 1860, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7590, "fields": {"state_transition": 1861, "node_type": "S", "subcondition": 23, "parent": 7593}}, {"model": "template.logicnode", "pk": 7591, "fields": {"state_transition": 1861, "node_type": "S", "subcondition": 3, "parent": 7593}}, {"model": "template.logicnode", "pk": 7592, "fields": {"state_transition": 1861, "node_type": "S", "subcondition": 20, "parent": 7593}}, {"model": "template.logicnode", "pk": 7593, "fields": {"state_transition": 1861, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7594, "fields": {"state_transition": 1862, "node_type": "S", "subcondition": 23, "parent": 7597}}, {"model": "template.logicnode", "pk": 7595, "fields": {"state_transition": 1862, "node_type": "S", "subcondition": 3, "parent": 7597}}, {"model": "template.logicnode", "pk": 7596, "fields": {"state_transition": 1862, "node_type": "S", "subcondition": 21, "parent": 7597}}, {"model": "template.logicnode", "pk": 7597, "fields": {"state_transition": 1862, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7598, "fields": {"state_transition": 1863, "node_type": "S", "subcondition": 23, "parent": 7601}}, {"model": "template.logicnode", "pk": 7599, "fields": {"state_transition": 1863, "node_type": "S", "subcondition": 3, "parent": 7601}}, {"model": "template.logicnode", "pk": 7600, "fields": {"state_transition": 1863, "node_type": "S", "subcondition": 22, "parent": 7601}}, {"model": "template.logicnode", "pk": 7601, "fields": {"state_transition": 1863, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7602, "fields": {"state_transition": 1864, "node_type": "S", "subcondition": 23, "parent": 7605}}, {"model": "template.logicnode", "pk": 7603, "fields": {"state_transition": 1864, "node_type": "S", "subcondition": 4, "parent": 7605}}, {"model": "template.logicnode", "pk": 7604, "fields": {"state_transition": 1864, "node_type": "S", "subcondition": 19, "parent": 7605}}, {"model": "template.logicnode", "pk": 7605, "fields": {"state_transition": 1864, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7606, "fields": {"state_transition": 1865, "node_type": "S", "subcondition": 23, "parent": 7609}}, {"model": "template.logicnode", "pk": 7607, "fields": {"state_transition": 1865, "node_type": "S", "subcondition": 4, "parent": 7609}}, {"model": "template.logicnode", "pk": 7608, "fields": {"state_transition": 1865, "node_type": "S", "subcondition": 20, "parent": 7609}}, {"model": "template.logicnode", "pk": 7609, "fields": {"state_transition": 1865, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7610, "fields": {"state_transition": 1866, "node_type": "S", "subcondition": 23, "parent": 7613}}, {"model": "template.logicnode", "pk": 7611, "fields": {"state_transition": 1866, "node_type": "S", "subcondition": 4, "parent": 7613}}, {"model": "template.logicnode", "pk": 7612, "fields": {"state_transition": 1866, "node_type": "S", "subcondition": 21, "parent": 7613}}, {"model": "template.logicnode", "pk": 7613, "fields": {"state_transition": 1866, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7614, "fields": {"state_transition": 1867, "node_type": "S", "subcondition": 23, "parent": 7617}}, {"model": "template.logicnode", "pk": 7615, "fields": {"state_transition": 1867, "node_type": "S", "subcondition": 4, "parent": 7617}}, {"model": "template.logicnode", "pk": 7616, "fields": {"state_transition": 1867, "node_type": "S", "subcondition": 22, "parent": 7617}}, {"model": "template.logicnode", "pk": 7617, "fields": {"state_transition": 1867, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7618, "fields": {"state_transition": 1868, "node_type": "S", "subcondition": 23, "parent": 7621}}, {"model": "template.logicnode", "pk": 7619, "fields": {"state_transition": 1868, "node_type": "S", "subcondition": 5, "parent": 7621}}, {"model": "template.logicnode", "pk": 7620, "fields": {"state_transition": 1868, "node_type": "S", "subcondition": 19, "parent": 7621}}, {"model": "template.logicnode", "pk": 7621, "fields": {"state_transition": 1868, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7622, "fields": {"state_transition": 1869, "node_type": "S", "subcondition": 23, "parent": 7625}}, {"model": "template.logicnode", "pk": 7623, "fields": {"state_transition": 1869, "node_type": "S", "subcondition": 5, "parent": 7625}}, {"model": "template.logicnode", "pk": 7624, "fields": {"state_transition": 1869, "node_type": "S", "subcondition": 20, "parent": 7625}}, {"model": "template.logicnode", "pk": 7625, "fields": {"state_transition": 1869, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7626, "fields": {"state_transition": 1870, "node_type": "S", "subcondition": 23, "parent": 7629}}, {"model": "template.logicnode", "pk": 7627, "fields": {"state_transition": 1870, "node_type": "S", "subcondition": 5, "parent": 7629}}, {"model": "template.logicnode", "pk": 7628, "fields": {"state_transition": 1870, "node_type": "S", "subcondition": 21, "parent": 7629}}, {"model": "template.logicnode", "pk": 7629, "fields": {"state_transition": 1870, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7630, "fields": {"state_transition": 1871, "node_type": "S", "subcondition": 23, "parent": 7633}}, {"model": "template.logicnode", "pk": 7631, "fields": {"state_transition": 1871, "node_type": "S", "subcondition": 5, "parent": 7633}}, {"model": "template.logicnode", "pk": 7632, "fields": {"state_transition": 1871, "node_type": "S", "subcondition": 22, "parent": 7633}}, {"model": "template.logicnode", "pk": 7633, "fields": {"state_transition": 1871, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7634, "fields": {"state_transition": 1872, "node_type": "S", "subcondition": 23, "parent": 7637}}, {"model": "template.logicnode", "pk": 7635, "fields": {"state_transition": 1872, "node_type": "S", "subcondition": 6, "parent": 7637}}, {"model": "template.logicnode", "pk": 7636, "fields": {"state_transition": 1872, "node_type": "S", "subcondition": 19, "parent": 7637}}, {"model": "template.logicnode", "pk": 7637, "fields": {"state_transition": 1872, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7638, "fields": {"state_transition": 1873, "node_type": "S", "subcondition": 23, "parent": 7641}}, {"model": "template.logicnode", "pk": 7639, "fields": {"state_transition": 1873, "node_type": "S", "subcondition": 6, "parent": 7641}}, {"model": "template.logicnode", "pk": 7640, "fields": {"state_transition": 1873, "node_type": "S", "subcondition": 20, "parent": 7641}}, {"model": "template.logicnode", "pk": 7641, "fields": {"state_transition": 1873, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7642, "fields": {"state_transition": 1874, "node_type": "S", "subcondition": 23, "parent": 7645}}, {"model": "template.logicnode", "pk": 7643, "fields": {"state_transition": 1874, "node_type": "S", "subcondition": 6, "parent": 7645}}, {"model": "template.logicnode", "pk": 7644, "fields": {"state_transition": 1874, "node_type": "S", "subcondition": 21, "parent": 7645}}, {"model": "template.logicnode", "pk": 7645, "fields": {"state_transition": 1874, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7646, "fields": {"state_transition": 1875, "node_type": "S", "subcondition": 23, "parent": 7649}}, {"model": "template.logicnode", "pk": 7647, "fields": {"state_transition": 1875, "node_type": "S", "subcondition": 6, "parent": 7649}}, {"model": "template.logicnode", "pk": 7648, "fields": {"state_transition": 1875, "node_type": "S", "subcondition": 22, "parent": 7649}}, {"model": "template.logicnode", "pk": 7649, "fields": {"state_transition": 1875, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7650, "fields": {"state_transition": 1876, "node_type": "N", "subcondition": null, "parent": 7654}}, {"model": "template.logicnode", "pk": 7651, "fields": {"state_transition": 1876, "node_type": "S", "subcondition": 23, "parent": 7650}}, {"model": "template.logicnode", "pk": 7652, "fields": {"state_transition": 1876, "node_type": "S", "subcondition": 3, "parent": 7654}}, {"model": "template.logicnode", "pk": 7653, "fields": {"state_transition": 1876, "node_type": "S", "subcondition": 19, "parent": 7654}}, {"model": "template.logicnode", "pk": 7654, "fields": {"state_transition": 1876, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7655, "fields": {"state_transition": 1877, "node_type": "N", "subcondition": null, "parent": 7659}}, {"model": "template.logicnode", "pk": 7656, "fields": {"state_transition": 1877, "node_type": "S", "subcondition": 23, "parent": 7655}}, {"model": "template.logicnode", "pk": 7657, "fields": {"state_transition": 1877, "node_type": "S", "subcondition": 3, "parent": 7659}}, {"model": "template.logicnode", "pk": 7658, "fields": {"state_transition": 1877, "node_type": "S", "subcondition": 20, "parent": 7659}}, {"model": "template.logicnode", "pk": 7659, "fields": {"state_transition": 1877, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7660, "fields": {"state_transition": 1878, "node_type": "N", "subcondition": null, "parent": 7664}}, {"model": "template.logicnode", "pk": 7661, "fields": {"state_transition": 1878, "node_type": "S", "subcondition": 23, "parent": 7660}}, {"model": "template.logicnode", "pk": 7662, "fields": {"state_transition": 1878, "node_type": "S", "subcondition": 3, "parent": 7664}}, {"model": "template.logicnode", "pk": 7663, "fields": {"state_transition": 1878, "node_type": "S", "subcondition": 21, "parent": 7664}}, {"model": "template.logicnode", "pk": 7664, "fields": {"state_transition": 1878, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7665, "fields": {"state_transition": 1879, "node_type": "N", "subcondition": null, "parent": 7669}}, {"model": "template.logicnode", "pk": 7666, "fields": {"state_transition": 1879, "node_type": "S", "subcondition": 23, "parent": 7665}}, {"model": "template.logicnode", "pk": 7667, "fields": {"state_transition": 1879, "node_type": "S", "subcondition": 3, "parent": 7669}}, {"model": "template.logicnode", "pk": 7668, "fields": {"state_transition": 1879, "node_type": "S", "subcondition": 22, "parent": 7669}}, {"model": "template.logicnode", "pk": 7669, "fields": {"state_transition": 1879, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7670, "fields": {"state_transition": 1880, "node_type": "N", "subcondition": null, "parent": 7674}}, {"model": "template.logicnode", "pk": 7671, "fields": {"state_transition": 1880, "node_type": "S", "subcondition": 23, "parent": 7670}}, {"model": "template.logicnode", "pk": 7672, "fields": {"state_transition": 1880, "node_type": "S", "subcondition": 4, "parent": 7674}}, {"model": "template.logicnode", "pk": 7673, "fields": {"state_transition": 1880, "node_type": "S", "subcondition": 19, "parent": 7674}}, {"model": "template.logicnode", "pk": 7674, "fields": {"state_transition": 1880, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7675, "fields": {"state_transition": 1881, "node_type": "N", "subcondition": null, "parent": 7679}}, {"model": "template.logicnode", "pk": 7676, "fields": {"state_transition": 1881, "node_type": "S", "subcondition": 23, "parent": 7675}}, {"model": "template.logicnode", "pk": 7677, "fields": {"state_transition": 1881, "node_type": "S", "subcondition": 4, "parent": 7679}}, {"model": "template.logicnode", "pk": 7678, "fields": {"state_transition": 1881, "node_type": "S", "subcondition": 20, "parent": 7679}}, {"model": "template.logicnode", "pk": 7679, "fields": {"state_transition": 1881, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7680, "fields": {"state_transition": 1882, "node_type": "N", "subcondition": null, "parent": 7684}}, {"model": "template.logicnode", "pk": 7681, "fields": {"state_transition": 1882, "node_type": "S", "subcondition": 23, "parent": 7680}}, {"model": "template.logicnode", "pk": 7682, "fields": {"state_transition": 1882, "node_type": "S", "subcondition": 4, "parent": 7684}}, {"model": "template.logicnode", "pk": 7683, "fields": {"state_transition": 1882, "node_type": "S", "subcondition": 21, "parent": 7684}}, {"model": "template.logicnode", "pk": 7684, "fields": {"state_transition": 1882, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7685, "fields": {"state_transition": 1883, "node_type": "N", "subcondition": null, "parent": 7689}}, {"model": "template.logicnode", "pk": 7686, "fields": {"state_transition": 1883, "node_type": "S", "subcondition": 23, "parent": 7685}}, {"model": "template.logicnode", "pk": 7687, "fields": {"state_transition": 1883, "node_type": "S", "subcondition": 4, "parent": 7689}}, {"model": "template.logicnode", "pk": 7688, "fields": {"state_transition": 1883, "node_type": "S", "subcondition": 22, "parent": 7689}}, {"model": "template.logicnode", "pk": 7689, "fields": {"state_transition": 1883, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7690, "fields": {"state_transition": 1884, "node_type": "N", "subcondition": null, "parent": 7694}}, {"model": "template.logicnode", "pk": 7691, "fields": {"state_transition": 1884, "node_type": "S", "subcondition": 23, "parent": 7690}}, {"model": "template.logicnode", "pk": 7692, "fields": {"state_transition": 1884, "node_type": "S", "subcondition": 5, "parent": 7694}}, {"model": "template.logicnode", "pk": 7693, "fields": {"state_transition": 1884, "node_type": "S", "subcondition": 19, "parent": 7694}}, {"model": "template.logicnode", "pk": 7694, "fields": {"state_transition": 1884, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7695, "fields": {"state_transition": 1885, "node_type": "N", "subcondition": null, "parent": 7699}}, {"model": "template.logicnode", "pk": 7696, "fields": {"state_transition": 1885, "node_type": "S", "subcondition": 23, "parent": 7695}}, {"model": "template.logicnode", "pk": 7697, "fields": {"state_transition": 1885, "node_type": "S", "subcondition": 5, "parent": 7699}}, {"model": "template.logicnode", "pk": 7698, "fields": {"state_transition": 1885, "node_type": "S", "subcondition": 20, "parent": 7699}}, {"model": "template.logicnode", "pk": 7699, "fields": {"state_transition": 1885, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7700, "fields": {"state_transition": 1886, "node_type": "N", "subcondition": null, "parent": 7704}}, {"model": "template.logicnode", "pk": 7701, "fields": {"state_transition": 1886, "node_type": "S", "subcondition": 23, "parent": 7700}}, {"model": "template.logicnode", "pk": 7702, "fields": {"state_transition": 1886, "node_type": "S", "subcondition": 5, "parent": 7704}}, {"model": "template.logicnode", "pk": 7703, "fields": {"state_transition": 1886, "node_type": "S", "subcondition": 21, "parent": 7704}}, {"model": "template.logicnode", "pk": 7704, "fields": {"state_transition": 1886, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7705, "fields": {"state_transition": 1887, "node_type": "N", "subcondition": null, "parent": 7709}}, {"model": "template.logicnode", "pk": 7706, "fields": {"state_transition": 1887, "node_type": "S", "subcondition": 23, "parent": 7705}}, {"model": "template.logicnode", "pk": 7707, "fields": {"state_transition": 1887, "node_type": "S", "subcondition": 5, "parent": 7709}}, {"model": "template.logicnode", "pk": 7708, "fields": {"state_transition": 1887, "node_type": "S", "subcondition": 22, "parent": 7709}}, {"model": "template.logicnode", "pk": 7709, "fields": {"state_transition": 1887, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7710, "fields": {"state_transition": 1888, "node_type": "N", "subcondition": null, "parent": 7714}}, {"model": "template.logicnode", "pk": 7711, "fields": {"state_transition": 1888, "node_type": "S", "subcondition": 23, "parent": 7710}}, {"model": "template.logicnode", "pk": 7712, "fields": {"state_transition": 1888, "node_type": "S", "subcondition": 6, "parent": 7714}}, {"model": "template.logicnode", "pk": 7713, "fields": {"state_transition": 1888, "node_type": "S", "subcondition": 19, "parent": 7714}}, {"model": "template.logicnode", "pk": 7714, "fields": {"state_transition": 1888, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7715, "fields": {"state_transition": 1889, "node_type": "N", "subcondition": null, "parent": 7719}}, {"model": "template.logicnode", "pk": 7716, "fields": {"state_transition": 1889, "node_type": "S", "subcondition": 23, "parent": 7715}}, {"model": "template.logicnode", "pk": 7717, "fields": {"state_transition": 1889, "node_type": "S", "subcondition": 6, "parent": 7719}}, {"model": "template.logicnode", "pk": 7718, "fields": {"state_transition": 1889, "node_type": "S", "subcondition": 20, "parent": 7719}}, {"model": "template.logicnode", "pk": 7719, "fields": {"state_transition": 1889, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7720, "fields": {"state_transition": 1890, "node_type": "N", "subcondition": null, "parent": 7724}}, {"model": "template.logicnode", "pk": 7721, "fields": {"state_transition": 1890, "node_type": "S", "subcondition": 23, "parent": 7720}}, {"model": "template.logicnode", "pk": 7722, "fields": {"state_transition": 1890, "node_type": "S", "subcondition": 6, "parent": 7724}}, {"model": "template.logicnode", "pk": 7723, "fields": {"state_transition": 1890, "node_type": "S", "subcondition": 21, "parent": 7724}}, {"model": "template.logicnode", "pk": 7724, "fields": {"state_transition": 1890, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7725, "fields": {"state_transition": 1891, "node_type": "N", "subcondition": null, "parent": 7729}}, {"model": "template.logicnode", "pk": 7726, "fields": {"state_transition": 1891, "node_type": "S", "subcondition": 23, "parent": 7725}}, {"model": "template.logicnode", "pk": 7727, "fields": {"state_transition": 1891, "node_type": "S", "subcondition": 6, "parent": 7729}}, {"model": "template.logicnode", "pk": 7728, "fields": {"state_transition": 1891, "node_type": "S", "subcondition": 22, "parent": 7729}}, {"model": "template.logicnode", "pk": 7729, "fields": {"state_transition": 1891, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7730, "fields": {"state_transition": 1892, "node_type": "S", "subcondition": 23, "parent": 7733}}, {"model": "template.logicnode", "pk": 7731, "fields": {"state_transition": 1892, "node_type": "S", "subcondition": 3, "parent": 7733}}, {"model": "template.logicnode", "pk": 7732, "fields": {"state_transition": 1892, "node_type": "S", "subcondition": 19, "parent": 7733}}, {"model": "template.logicnode", "pk": 7733, "fields": {"state_transition": 1892, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7734, "fields": {"state_transition": 1893, "node_type": "S", "subcondition": 23, "parent": 7737}}, {"model": "template.logicnode", "pk": 7735, "fields": {"state_transition": 1893, "node_type": "S", "subcondition": 3, "parent": 7737}}, {"model": "template.logicnode", "pk": 7736, "fields": {"state_transition": 1893, "node_type": "S", "subcondition": 20, "parent": 7737}}, {"model": "template.logicnode", "pk": 7737, "fields": {"state_transition": 1893, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7738, "fields": {"state_transition": 1894, "node_type": "S", "subcondition": 23, "parent": 7741}}, {"model": "template.logicnode", "pk": 7739, "fields": {"state_transition": 1894, "node_type": "S", "subcondition": 3, "parent": 7741}}, {"model": "template.logicnode", "pk": 7740, "fields": {"state_transition": 1894, "node_type": "S", "subcondition": 21, "parent": 7741}}, {"model": "template.logicnode", "pk": 7741, "fields": {"state_transition": 1894, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7742, "fields": {"state_transition": 1895, "node_type": "S", "subcondition": 23, "parent": 7745}}, {"model": "template.logicnode", "pk": 7743, "fields": {"state_transition": 1895, "node_type": "S", "subcondition": 3, "parent": 7745}}, {"model": "template.logicnode", "pk": 7744, "fields": {"state_transition": 1895, "node_type": "S", "subcondition": 22, "parent": 7745}}, {"model": "template.logicnode", "pk": 7745, "fields": {"state_transition": 1895, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7746, "fields": {"state_transition": 1896, "node_type": "S", "subcondition": 23, "parent": 7749}}, {"model": "template.logicnode", "pk": 7747, "fields": {"state_transition": 1896, "node_type": "S", "subcondition": 4, "parent": 7749}}, {"model": "template.logicnode", "pk": 7748, "fields": {"state_transition": 1896, "node_type": "S", "subcondition": 19, "parent": 7749}}, {"model": "template.logicnode", "pk": 7749, "fields": {"state_transition": 1896, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7750, "fields": {"state_transition": 1897, "node_type": "S", "subcondition": 23, "parent": 7753}}, {"model": "template.logicnode", "pk": 7751, "fields": {"state_transition": 1897, "node_type": "S", "subcondition": 4, "parent": 7753}}, {"model": "template.logicnode", "pk": 7752, "fields": {"state_transition": 1897, "node_type": "S", "subcondition": 20, "parent": 7753}}, {"model": "template.logicnode", "pk": 7753, "fields": {"state_transition": 1897, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7754, "fields": {"state_transition": 1898, "node_type": "S", "subcondition": 23, "parent": 7757}}, {"model": "template.logicnode", "pk": 7755, "fields": {"state_transition": 1898, "node_type": "S", "subcondition": 4, "parent": 7757}}, {"model": "template.logicnode", "pk": 7756, "fields": {"state_transition": 1898, "node_type": "S", "subcondition": 21, "parent": 7757}}, {"model": "template.logicnode", "pk": 7757, "fields": {"state_transition": 1898, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7758, "fields": {"state_transition": 1899, "node_type": "S", "subcondition": 23, "parent": 7761}}, {"model": "template.logicnode", "pk": 7759, "fields": {"state_transition": 1899, "node_type": "S", "subcondition": 4, "parent": 7761}}, {"model": "template.logicnode", "pk": 7760, "fields": {"state_transition": 1899, "node_type": "S", "subcondition": 22, "parent": 7761}}, {"model": "template.logicnode", "pk": 7761, "fields": {"state_transition": 1899, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7762, "fields": {"state_transition": 1900, "node_type": "S", "subcondition": 23, "parent": 7765}}, {"model": "template.logicnode", "pk": 7763, "fields": {"state_transition": 1900, "node_type": "S", "subcondition": 5, "parent": 7765}}, {"model": "template.logicnode", "pk": 7764, "fields": {"state_transition": 1900, "node_type": "S", "subcondition": 19, "parent": 7765}}, {"model": "template.logicnode", "pk": 7765, "fields": {"state_transition": 1900, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7766, "fields": {"state_transition": 1901, "node_type": "S", "subcondition": 23, "parent": 7769}}, {"model": "template.logicnode", "pk": 7767, "fields": {"state_transition": 1901, "node_type": "S", "subcondition": 5, "parent": 7769}}, {"model": "template.logicnode", "pk": 7768, "fields": {"state_transition": 1901, "node_type": "S", "subcondition": 20, "parent": 7769}}, {"model": "template.logicnode", "pk": 7769, "fields": {"state_transition": 1901, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7770, "fields": {"state_transition": 1902, "node_type": "S", "subcondition": 23, "parent": 7773}}, {"model": "template.logicnode", "pk": 7771, "fields": {"state_transition": 1902, "node_type": "S", "subcondition": 5, "parent": 7773}}, {"model": "template.logicnode", "pk": 7772, "fields": {"state_transition": 1902, "node_type": "S", "subcondition": 21, "parent": 7773}}, {"model": "template.logicnode", "pk": 7773, "fields": {"state_transition": 1902, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7774, "fields": {"state_transition": 1903, "node_type": "S", "subcondition": 23, "parent": 7777}}, {"model": "template.logicnode", "pk": 7775, "fields": {"state_transition": 1903, "node_type": "S", "subcondition": 5, "parent": 7777}}, {"model": "template.logicnode", "pk": 7776, "fields": {"state_transition": 1903, "node_type": "S", "subcondition": 22, "parent": 7777}}, {"model": "template.logicnode", "pk": 7777, "fields": {"state_transition": 1903, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7778, "fields": {"state_transition": 1904, "node_type": "S", "subcondition": 23, "parent": 7781}}, {"model": "template.logicnode", "pk": 7779, "fields": {"state_transition": 1904, "node_type": "S", "subcondition": 6, "parent": 7781}}, {"model": "template.logicnode", "pk": 7780, "fields": {"state_transition": 1904, "node_type": "S", "subcondition": 19, "parent": 7781}}, {"model": "template.logicnode", "pk": 7781, "fields": {"state_transition": 1904, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7782, "fields": {"state_transition": 1905, "node_type": "S", "subcondition": 23, "parent": 7785}}, {"model": "template.logicnode", "pk": 7783, "fields": {"state_transition": 1905, "node_type": "S", "subcondition": 6, "parent": 7785}}, {"model": "template.logicnode", "pk": 7784, "fields": {"state_transition": 1905, "node_type": "S", "subcondition": 20, "parent": 7785}}, {"model": "template.logicnode", "pk": 7785, "fields": {"state_transition": 1905, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7786, "fields": {"state_transition": 1906, "node_type": "S", "subcondition": 23, "parent": 7789}}, {"model": "template.logicnode", "pk": 7787, "fields": {"state_transition": 1906, "node_type": "S", "subcondition": 6, "parent": 7789}}, {"model": "template.logicnode", "pk": 7788, "fields": {"state_transition": 1906, "node_type": "S", "subcondition": 21, "parent": 7789}}, {"model": "template.logicnode", "pk": 7789, "fields": {"state_transition": 1906, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7790, "fields": {"state_transition": 1907, "node_type": "S", "subcondition": 23, "parent": 7793}}, {"model": "template.logicnode", "pk": 7791, "fields": {"state_transition": 1907, "node_type": "S", "subcondition": 6, "parent": 7793}}, {"model": "template.logicnode", "pk": 7792, "fields": {"state_transition": 1907, "node_type": "S", "subcondition": 22, "parent": 7793}}, {"model": "template.logicnode", "pk": 7793, "fields": {"state_transition": 1907, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7794, "fields": {"state_transition": 1908, "node_type": "N", "subcondition": null, "parent": 7798}}, {"model": "template.logicnode", "pk": 7795, "fields": {"state_transition": 1908, "node_type": "S", "subcondition": 23, "parent": 7794}}, {"model": "template.logicnode", "pk": 7796, "fields": {"state_transition": 1908, "node_type": "S", "subcondition": 3, "parent": 7798}}, {"model": "template.logicnode", "pk": 7797, "fields": {"state_transition": 1908, "node_type": "S", "subcondition": 19, "parent": 7798}}, {"model": "template.logicnode", "pk": 7798, "fields": {"state_transition": 1908, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7799, "fields": {"state_transition": 1909, "node_type": "N", "subcondition": null, "parent": 7803}}, {"model": "template.logicnode", "pk": 7800, "fields": {"state_transition": 1909, "node_type": "S", "subcondition": 23, "parent": 7799}}, {"model": "template.logicnode", "pk": 7801, "fields": {"state_transition": 1909, "node_type": "S", "subcondition": 3, "parent": 7803}}, {"model": "template.logicnode", "pk": 7802, "fields": {"state_transition": 1909, "node_type": "S", "subcondition": 20, "parent": 7803}}, {"model": "template.logicnode", "pk": 7803, "fields": {"state_transition": 1909, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7804, "fields": {"state_transition": 1910, "node_type": "N", "subcondition": null, "parent": 7808}}, {"model": "template.logicnode", "pk": 7805, "fields": {"state_transition": 1910, "node_type": "S", "subcondition": 23, "parent": 7804}}, {"model": "template.logicnode", "pk": 7806, "fields": {"state_transition": 1910, "node_type": "S", "subcondition": 3, "parent": 7808}}, {"model": "template.logicnode", "pk": 7807, "fields": {"state_transition": 1910, "node_type": "S", "subcondition": 21, "parent": 7808}}, {"model": "template.logicnode", "pk": 7808, "fields": {"state_transition": 1910, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7809, "fields": {"state_transition": 1911, "node_type": "N", "subcondition": null, "parent": 7813}}, {"model": "template.logicnode", "pk": 7810, "fields": {"state_transition": 1911, "node_type": "S", "subcondition": 23, "parent": 7809}}, {"model": "template.logicnode", "pk": 7811, "fields": {"state_transition": 1911, "node_type": "S", "subcondition": 3, "parent": 7813}}, {"model": "template.logicnode", "pk": 7812, "fields": {"state_transition": 1911, "node_type": "S", "subcondition": 22, "parent": 7813}}, {"model": "template.logicnode", "pk": 7813, "fields": {"state_transition": 1911, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7814, "fields": {"state_transition": 1912, "node_type": "N", "subcondition": null, "parent": 7818}}, {"model": "template.logicnode", "pk": 7815, "fields": {"state_transition": 1912, "node_type": "S", "subcondition": 23, "parent": 7814}}, {"model": "template.logicnode", "pk": 7816, "fields": {"state_transition": 1912, "node_type": "S", "subcondition": 4, "parent": 7818}}, {"model": "template.logicnode", "pk": 7817, "fields": {"state_transition": 1912, "node_type": "S", "subcondition": 19, "parent": 7818}}, {"model": "template.logicnode", "pk": 7818, "fields": {"state_transition": 1912, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7819, "fields": {"state_transition": 1913, "node_type": "N", "subcondition": null, "parent": 7823}}, {"model": "template.logicnode", "pk": 7820, "fields": {"state_transition": 1913, "node_type": "S", "subcondition": 23, "parent": 7819}}, {"model": "template.logicnode", "pk": 7821, "fields": {"state_transition": 1913, "node_type": "S", "subcondition": 4, "parent": 7823}}, {"model": "template.logicnode", "pk": 7822, "fields": {"state_transition": 1913, "node_type": "S", "subcondition": 20, "parent": 7823}}, {"model": "template.logicnode", "pk": 7823, "fields": {"state_transition": 1913, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7824, "fields": {"state_transition": 1914, "node_type": "N", "subcondition": null, "parent": 7828}}, {"model": "template.logicnode", "pk": 7825, "fields": {"state_transition": 1914, "node_type": "S", "subcondition": 23, "parent": 7824}}, {"model": "template.logicnode", "pk": 7826, "fields": {"state_transition": 1914, "node_type": "S", "subcondition": 4, "parent": 7828}}, {"model": "template.logicnode", "pk": 7827, "fields": {"state_transition": 1914, "node_type": "S", "subcondition": 21, "parent": 7828}}, {"model": "template.logicnode", "pk": 7828, "fields": {"state_transition": 1914, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7829, "fields": {"state_transition": 1915, "node_type": "N", "subcondition": null, "parent": 7833}}, {"model": "template.logicnode", "pk": 7830, "fields": {"state_transition": 1915, "node_type": "S", "subcondition": 23, "parent": 7829}}, {"model": "template.logicnode", "pk": 7831, "fields": {"state_transition": 1915, "node_type": "S", "subcondition": 4, "parent": 7833}}, {"model": "template.logicnode", "pk": 7832, "fields": {"state_transition": 1915, "node_type": "S", "subcondition": 22, "parent": 7833}}, {"model": "template.logicnode", "pk": 7833, "fields": {"state_transition": 1915, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7834, "fields": {"state_transition": 1916, "node_type": "N", "subcondition": null, "parent": 7838}}, {"model": "template.logicnode", "pk": 7835, "fields": {"state_transition": 1916, "node_type": "S", "subcondition": 23, "parent": 7834}}, {"model": "template.logicnode", "pk": 7836, "fields": {"state_transition": 1916, "node_type": "S", "subcondition": 5, "parent": 7838}}, {"model": "template.logicnode", "pk": 7837, "fields": {"state_transition": 1916, "node_type": "S", "subcondition": 19, "parent": 7838}}, {"model": "template.logicnode", "pk": 7838, "fields": {"state_transition": 1916, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7839, "fields": {"state_transition": 1917, "node_type": "N", "subcondition": null, "parent": 7843}}, {"model": "template.logicnode", "pk": 7840, "fields": {"state_transition": 1917, "node_type": "S", "subcondition": 23, "parent": 7839}}, {"model": "template.logicnode", "pk": 7841, "fields": {"state_transition": 1917, "node_type": "S", "subcondition": 5, "parent": 7843}}, {"model": "template.logicnode", "pk": 7842, "fields": {"state_transition": 1917, "node_type": "S", "subcondition": 20, "parent": 7843}}, {"model": "template.logicnode", "pk": 7843, "fields": {"state_transition": 1917, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7844, "fields": {"state_transition": 1918, "node_type": "N", "subcondition": null, "parent": 7848}}, {"model": "template.logicnode", "pk": 7845, "fields": {"state_transition": 1918, "node_type": "S", "subcondition": 23, "parent": 7844}}, {"model": "template.logicnode", "pk": 7846, "fields": {"state_transition": 1918, "node_type": "S", "subcondition": 5, "parent": 7848}}, {"model": "template.logicnode", "pk": 7847, "fields": {"state_transition": 1918, "node_type": "S", "subcondition": 21, "parent": 7848}}, {"model": "template.logicnode", "pk": 7848, "fields": {"state_transition": 1918, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7849, "fields": {"state_transition": 1919, "node_type": "N", "subcondition": null, "parent": 7853}}, {"model": "template.logicnode", "pk": 7850, "fields": {"state_transition": 1919, "node_type": "S", "subcondition": 23, "parent": 7849}}, {"model": "template.logicnode", "pk": 7851, "fields": {"state_transition": 1919, "node_type": "S", "subcondition": 5, "parent": 7853}}, {"model": "template.logicnode", "pk": 7852, "fields": {"state_transition": 1919, "node_type": "S", "subcondition": 22, "parent": 7853}}, {"model": "template.logicnode", "pk": 7853, "fields": {"state_transition": 1919, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7854, "fields": {"state_transition": 1920, "node_type": "N", "subcondition": null, "parent": 7858}}, {"model": "template.logicnode", "pk": 7855, "fields": {"state_transition": 1920, "node_type": "S", "subcondition": 23, "parent": 7854}}, {"model": "template.logicnode", "pk": 7856, "fields": {"state_transition": 1920, "node_type": "S", "subcondition": 6, "parent": 7858}}, {"model": "template.logicnode", "pk": 7857, "fields": {"state_transition": 1920, "node_type": "S", "subcondition": 19, "parent": 7858}}, {"model": "template.logicnode", "pk": 7858, "fields": {"state_transition": 1920, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7859, "fields": {"state_transition": 1921, "node_type": "N", "subcondition": null, "parent": 7863}}, {"model": "template.logicnode", "pk": 7860, "fields": {"state_transition": 1921, "node_type": "S", "subcondition": 23, "parent": 7859}}, {"model": "template.logicnode", "pk": 7861, "fields": {"state_transition": 1921, "node_type": "S", "subcondition": 6, "parent": 7863}}, {"model": "template.logicnode", "pk": 7862, "fields": {"state_transition": 1921, "node_type": "S", "subcondition": 20, "parent": 7863}}, {"model": "template.logicnode", "pk": 7863, "fields": {"state_transition": 1921, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7864, "fields": {"state_transition": 1922, "node_type": "N", "subcondition": null, "parent": 7868}}, {"model": "template.logicnode", "pk": 7865, "fields": {"state_transition": 1922, "node_type": "S", "subcondition": 23, "parent": 7864}}, {"model": "template.logicnode", "pk": 7866, "fields": {"state_transition": 1922, "node_type": "S", "subcondition": 6, "parent": 7868}}, {"model": "template.logicnode", "pk": 7867, "fields": {"state_transition": 1922, "node_type": "S", "subcondition": 21, "parent": 7868}}, {"model": "template.logicnode", "pk": 7868, "fields": {"state_transition": 1922, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7869, "fields": {"state_transition": 1923, "node_type": "N", "subcondition": null, "parent": 7873}}, {"model": "template.logicnode", "pk": 7870, "fields": {"state_transition": 1923, "node_type": "S", "subcondition": 23, "parent": 7869}}, {"model": "template.logicnode", "pk": 7871, "fields": {"state_transition": 1923, "node_type": "S", "subcondition": 6, "parent": 7873}}, {"model": "template.logicnode", "pk": 7872, "fields": {"state_transition": 1923, "node_type": "S", "subcondition": 22, "parent": 7873}}, {"model": "template.logicnode", "pk": 7873, "fields": {"state_transition": 1923, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7874, "fields": {"state_transition": 1924, "node_type": "S", "subcondition": 23, "parent": 7877}}, {"model": "template.logicnode", "pk": 7875, "fields": {"state_transition": 1924, "node_type": "S", "subcondition": 3, "parent": 7877}}, {"model": "template.logicnode", "pk": 7876, "fields": {"state_transition": 1924, "node_type": "S", "subcondition": 19, "parent": 7877}}, {"model": "template.logicnode", "pk": 7877, "fields": {"state_transition": 1924, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7878, "fields": {"state_transition": 1925, "node_type": "S", "subcondition": 23, "parent": 7881}}, {"model": "template.logicnode", "pk": 7879, "fields": {"state_transition": 1925, "node_type": "S", "subcondition": 3, "parent": 7881}}, {"model": "template.logicnode", "pk": 7880, "fields": {"state_transition": 1925, "node_type": "S", "subcondition": 20, "parent": 7881}}, {"model": "template.logicnode", "pk": 7881, "fields": {"state_transition": 1925, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7882, "fields": {"state_transition": 1926, "node_type": "S", "subcondition": 23, "parent": 7885}}, {"model": "template.logicnode", "pk": 7883, "fields": {"state_transition": 1926, "node_type": "S", "subcondition": 3, "parent": 7885}}, {"model": "template.logicnode", "pk": 7884, "fields": {"state_transition": 1926, "node_type": "S", "subcondition": 21, "parent": 7885}}, {"model": "template.logicnode", "pk": 7885, "fields": {"state_transition": 1926, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7886, "fields": {"state_transition": 1927, "node_type": "S", "subcondition": 23, "parent": 7889}}, {"model": "template.logicnode", "pk": 7887, "fields": {"state_transition": 1927, "node_type": "S", "subcondition": 3, "parent": 7889}}, {"model": "template.logicnode", "pk": 7888, "fields": {"state_transition": 1927, "node_type": "S", "subcondition": 22, "parent": 7889}}, {"model": "template.logicnode", "pk": 7889, "fields": {"state_transition": 1927, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7890, "fields": {"state_transition": 1928, "node_type": "S", "subcondition": 23, "parent": 7893}}, {"model": "template.logicnode", "pk": 7891, "fields": {"state_transition": 1928, "node_type": "S", "subcondition": 4, "parent": 7893}}, {"model": "template.logicnode", "pk": 7892, "fields": {"state_transition": 1928, "node_type": "S", "subcondition": 19, "parent": 7893}}, {"model": "template.logicnode", "pk": 7893, "fields": {"state_transition": 1928, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7894, "fields": {"state_transition": 1929, "node_type": "S", "subcondition": 23, "parent": 7897}}, {"model": "template.logicnode", "pk": 7895, "fields": {"state_transition": 1929, "node_type": "S", "subcondition": 4, "parent": 7897}}, {"model": "template.logicnode", "pk": 7896, "fields": {"state_transition": 1929, "node_type": "S", "subcondition": 20, "parent": 7897}}, {"model": "template.logicnode", "pk": 7897, "fields": {"state_transition": 1929, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7898, "fields": {"state_transition": 1930, "node_type": "S", "subcondition": 23, "parent": 7901}}, {"model": "template.logicnode", "pk": 7899, "fields": {"state_transition": 1930, "node_type": "S", "subcondition": 4, "parent": 7901}}, {"model": "template.logicnode", "pk": 7900, "fields": {"state_transition": 1930, "node_type": "S", "subcondition": 21, "parent": 7901}}, {"model": "template.logicnode", "pk": 7901, "fields": {"state_transition": 1930, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7902, "fields": {"state_transition": 1931, "node_type": "S", "subcondition": 23, "parent": 7905}}, {"model": "template.logicnode", "pk": 7903, "fields": {"state_transition": 1931, "node_type": "S", "subcondition": 4, "parent": 7905}}, {"model": "template.logicnode", "pk": 7904, "fields": {"state_transition": 1931, "node_type": "S", "subcondition": 22, "parent": 7905}}, {"model": "template.logicnode", "pk": 7905, "fields": {"state_transition": 1931, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7906, "fields": {"state_transition": 1932, "node_type": "S", "subcondition": 23, "parent": 7909}}, {"model": "template.logicnode", "pk": 7907, "fields": {"state_transition": 1932, "node_type": "S", "subcondition": 5, "parent": 7909}}, {"model": "template.logicnode", "pk": 7908, "fields": {"state_transition": 1932, "node_type": "S", "subcondition": 19, "parent": 7909}}, {"model": "template.logicnode", "pk": 7909, "fields": {"state_transition": 1932, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7910, "fields": {"state_transition": 1933, "node_type": "S", "subcondition": 23, "parent": 7913}}, {"model": "template.logicnode", "pk": 7911, "fields": {"state_transition": 1933, "node_type": "S", "subcondition": 5, "parent": 7913}}, {"model": "template.logicnode", "pk": 7912, "fields": {"state_transition": 1933, "node_type": "S", "subcondition": 20, "parent": 7913}}, {"model": "template.logicnode", "pk": 7913, "fields": {"state_transition": 1933, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7914, "fields": {"state_transition": 1934, "node_type": "S", "subcondition": 23, "parent": 7917}}, {"model": "template.logicnode", "pk": 7915, "fields": {"state_transition": 1934, "node_type": "S", "subcondition": 5, "parent": 7917}}, {"model": "template.logicnode", "pk": 7916, "fields": {"state_transition": 1934, "node_type": "S", "subcondition": 21, "parent": 7917}}, {"model": "template.logicnode", "pk": 7917, "fields": {"state_transition": 1934, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7918, "fields": {"state_transition": 1935, "node_type": "S", "subcondition": 23, "parent": 7921}}, {"model": "template.logicnode", "pk": 7919, "fields": {"state_transition": 1935, "node_type": "S", "subcondition": 5, "parent": 7921}}, {"model": "template.logicnode", "pk": 7920, "fields": {"state_transition": 1935, "node_type": "S", "subcondition": 22, "parent": 7921}}, {"model": "template.logicnode", "pk": 7921, "fields": {"state_transition": 1935, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7922, "fields": {"state_transition": 1936, "node_type": "S", "subcondition": 23, "parent": 7925}}, {"model": "template.logicnode", "pk": 7923, "fields": {"state_transition": 1936, "node_type": "S", "subcondition": 6, "parent": 7925}}, {"model": "template.logicnode", "pk": 7924, "fields": {"state_transition": 1936, "node_type": "S", "subcondition": 19, "parent": 7925}}, {"model": "template.logicnode", "pk": 7925, "fields": {"state_transition": 1936, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7926, "fields": {"state_transition": 1937, "node_type": "S", "subcondition": 23, "parent": 7929}}, {"model": "template.logicnode", "pk": 7927, "fields": {"state_transition": 1937, "node_type": "S", "subcondition": 6, "parent": 7929}}, {"model": "template.logicnode", "pk": 7928, "fields": {"state_transition": 1937, "node_type": "S", "subcondition": 20, "parent": 7929}}, {"model": "template.logicnode", "pk": 7929, "fields": {"state_transition": 1937, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7930, "fields": {"state_transition": 1938, "node_type": "S", "subcondition": 23, "parent": 7933}}, {"model": "template.logicnode", "pk": 7931, "fields": {"state_transition": 1938, "node_type": "S", "subcondition": 6, "parent": 7933}}, {"model": "template.logicnode", "pk": 7932, "fields": {"state_transition": 1938, "node_type": "S", "subcondition": 21, "parent": 7933}}, {"model": "template.logicnode", "pk": 7933, "fields": {"state_transition": 1938, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7934, "fields": {"state_transition": 1939, "node_type": "S", "subcondition": 23, "parent": 7937}}, {"model": "template.logicnode", "pk": 7935, "fields": {"state_transition": 1939, "node_type": "S", "subcondition": 6, "parent": 7937}}, {"model": "template.logicnode", "pk": 7936, "fields": {"state_transition": 1939, "node_type": "S", "subcondition": 22, "parent": 7937}}, {"model": "template.logicnode", "pk": 7937, "fields": {"state_transition": 1939, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7938, "fields": {"state_transition": 1940, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7939, "fields": {"state_transition": 1941, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7940, "fields": {"state_transition": 1942, "node_type": "N", "subcondition": null, "parent": 7946}}, {"model": "template.logicnode", "pk": 7941, "fields": {"state_transition": 1942, "node_type": "S", "subcondition": 23, "parent": 7940}}, {"model": "template.logicnode", "pk": 7942, "fields": {"state_transition": 1942, "node_type": "S", "subcondition": 11, "parent": 7946}}, {"model": "template.logicnode", "pk": 7943, "fields": {"state_transition": 1942, "node_type": "S", "subcondition": 13, "parent": 7946}}, {"model": "template.logicnode", "pk": 7944, "fields": {"state_transition": 1942, "node_type": "S", "subcondition": 17, "parent": 7946}}, {"model": "template.logicnode", "pk": 7945, "fields": {"state_transition": 1942, "node_type": "S", "subcondition": 25, "parent": 7946}}, {"model": "template.logicnode", "pk": 7946, "fields": {"state_transition": 1942, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7947, "fields": {"state_transition": 1943, "node_type": "N", "subcondition": null, "parent": 7952}}, {"model": "template.logicnode", "pk": 7948, "fields": {"state_transition": 1943, "node_type": "S", "subcondition": 23, "parent": 7947}}, {"model": "template.logicnode", "pk": 7949, "fields": {"state_transition": 1943, "node_type": "S", "subcondition": 11, "parent": 7952}}, {"model": "template.logicnode", "pk": 7950, "fields": {"state_transition": 1943, "node_type": "S", "subcondition": 13, "parent": 7952}}, {"model": "template.logicnode", "pk": 7951, "fields": {"state_transition": 1943, "node_type": "S", "subcondition": 17, "parent": 7952}}, {"model": "template.logicnode", "pk": 7952, "fields": {"state_transition": 1943, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7953, "fields": {"state_transition": 1944, "node_type": "N", "subcondition": null, "parent": 7958}}, {"model": "template.logicnode", "pk": 7954, "fields": {"state_transition": 1944, "node_type": "S", "subcondition": 23, "parent": 7953}}, {"model": "template.logicnode", "pk": 7955, "fields": {"state_transition": 1944, "node_type": "S", "subcondition": 11, "parent": 7958}}, {"model": "template.logicnode", "pk": 7956, "fields": {"state_transition": 1944, "node_type": "S", "subcondition": 13, "parent": 7958}}, {"model": "template.logicnode", "pk": 7957, "fields": {"state_transition": 1944, "node_type": "S", "subcondition": 25, "parent": 7958}}, {"model": "template.logicnode", "pk": 7958, "fields": {"state_transition": 1944, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7959, "fields": {"state_transition": 1945, "node_type": "N", "subcondition": null, "parent": 7963}}, {"model": "template.logicnode", "pk": 7960, "fields": {"state_transition": 1945, "node_type": "S", "subcondition": 23, "parent": 7959}}, {"model": "template.logicnode", "pk": 7961, "fields": {"state_transition": 1945, "node_type": "S", "subcondition": 11, "parent": 7963}}, {"model": "template.logicnode", "pk": 7962, "fields": {"state_transition": 1945, "node_type": "S", "subcondition": 13, "parent": 7963}}, {"model": "template.logicnode", "pk": 7963, "fields": {"state_transition": 1945, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7964, "fields": {"state_transition": 1946, "node_type": "N", "subcondition": null, "parent": 7969}}, {"model": "template.logicnode", "pk": 7965, "fields": {"state_transition": 1946, "node_type": "S", "subcondition": 23, "parent": 7964}}, {"model": "template.logicnode", "pk": 7966, "fields": {"state_transition": 1946, "node_type": "S", "subcondition": 11, "parent": 7969}}, {"model": "template.logicnode", "pk": 7967, "fields": {"state_transition": 1946, "node_type": "S", "subcondition": 17, "parent": 7969}}, {"model": "template.logicnode", "pk": 7968, "fields": {"state_transition": 1946, "node_type": "S", "subcondition": 25, "parent": 7969}}, {"model": "template.logicnode", "pk": 7969, "fields": {"state_transition": 1946, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7970, "fields": {"state_transition": 1947, "node_type": "N", "subcondition": null, "parent": 7974}}, {"model": "template.logicnode", "pk": 7971, "fields": {"state_transition": 1947, "node_type": "S", "subcondition": 23, "parent": 7970}}, {"model": "template.logicnode", "pk": 7972, "fields": {"state_transition": 1947, "node_type": "S", "subcondition": 11, "parent": 7974}}, {"model": "template.logicnode", "pk": 7973, "fields": {"state_transition": 1947, "node_type": "S", "subcondition": 17, "parent": 7974}}, {"model": "template.logicnode", "pk": 7974, "fields": {"state_transition": 1947, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7975, "fields": {"state_transition": 1948, "node_type": "N", "subcondition": null, "parent": 7979}}, {"model": "template.logicnode", "pk": 7976, "fields": {"state_transition": 1948, "node_type": "S", "subcondition": 23, "parent": 7975}}, {"model": "template.logicnode", "pk": 7977, "fields": {"state_transition": 1948, "node_type": "S", "subcondition": 11, "parent": 7979}}, {"model": "template.logicnode", "pk": 7978, "fields": {"state_transition": 1948, "node_type": "S", "subcondition": 25, "parent": 7979}}, {"model": "template.logicnode", "pk": 7979, "fields": {"state_transition": 1948, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7980, "fields": {"state_transition": 1949, "node_type": "N", "subcondition": null, "parent": 7983}}, {"model": "template.logicnode", "pk": 7981, "fields": {"state_transition": 1949, "node_type": "S", "subcondition": 23, "parent": 7980}}, {"model": "template.logicnode", "pk": 7982, "fields": {"state_transition": 1949, "node_type": "S", "subcondition": 11, "parent": 7983}}, {"model": "template.logicnode", "pk": 7983, "fields": {"state_transition": 1949, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7984, "fields": {"state_transition": 1950, "node_type": "N", "subcondition": null, "parent": 7989}}, {"model": "template.logicnode", "pk": 7985, "fields": {"state_transition": 1950, "node_type": "S", "subcondition": 23, "parent": 7984}}, {"model": "template.logicnode", "pk": 7986, "fields": {"state_transition": 1950, "node_type": "S", "subcondition": 13, "parent": 7989}}, {"model": "template.logicnode", "pk": 7987, "fields": {"state_transition": 1950, "node_type": "S", "subcondition": 17, "parent": 7989}}, {"model": "template.logicnode", "pk": 7988, "fields": {"state_transition": 1950, "node_type": "S", "subcondition": 25, "parent": 7989}}, {"model": "template.logicnode", "pk": 7989, "fields": {"state_transition": 1950, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7990, "fields": {"state_transition": 1951, "node_type": "N", "subcondition": null, "parent": 7994}}, {"model": "template.logicnode", "pk": 7991, "fields": {"state_transition": 1951, "node_type": "S", "subcondition": 23, "parent": 7990}}, {"model": "template.logicnode", "pk": 7992, "fields": {"state_transition": 1951, "node_type": "S", "subcondition": 13, "parent": 7994}}, {"model": "template.logicnode", "pk": 7993, "fields": {"state_transition": 1951, "node_type": "S", "subcondition": 17, "parent": 7994}}, {"model": "template.logicnode", "pk": 7994, "fields": {"state_transition": 1951, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 7995, "fields": {"state_transition": 1952, "node_type": "N", "subcondition": null, "parent": 7999}}, {"model": "template.logicnode", "pk": 7996, "fields": {"state_transition": 1952, "node_type": "S", "subcondition": 23, "parent": 7995}}, {"model": "template.logicnode", "pk": 7997, "fields": {"state_transition": 1952, "node_type": "S", "subcondition": 13, "parent": 7999}}, {"model": "template.logicnode", "pk": 7998, "fields": {"state_transition": 1952, "node_type": "S", "subcondition": 25, "parent": 7999}}, {"model": "template.logicnode", "pk": 7999, "fields": {"state_transition": 1952, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8000, "fields": {"state_transition": 1953, "node_type": "N", "subcondition": null, "parent": 8003}}, {"model": "template.logicnode", "pk": 8001, "fields": {"state_transition": 1953, "node_type": "S", "subcondition": 23, "parent": 8000}}, {"model": "template.logicnode", "pk": 8002, "fields": {"state_transition": 1953, "node_type": "S", "subcondition": 13, "parent": 8003}}, {"model": "template.logicnode", "pk": 8003, "fields": {"state_transition": 1953, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8004, "fields": {"state_transition": 1954, "node_type": "N", "subcondition": null, "parent": 8008}}, {"model": "template.logicnode", "pk": 8005, "fields": {"state_transition": 1954, "node_type": "S", "subcondition": 23, "parent": 8004}}, {"model": "template.logicnode", "pk": 8006, "fields": {"state_transition": 1954, "node_type": "S", "subcondition": 17, "parent": 8008}}, {"model": "template.logicnode", "pk": 8007, "fields": {"state_transition": 1954, "node_type": "S", "subcondition": 25, "parent": 8008}}, {"model": "template.logicnode", "pk": 8008, "fields": {"state_transition": 1954, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8009, "fields": {"state_transition": 1955, "node_type": "N", "subcondition": null, "parent": 8012}}, {"model": "template.logicnode", "pk": 8010, "fields": {"state_transition": 1955, "node_type": "S", "subcondition": 23, "parent": 8009}}, {"model": "template.logicnode", "pk": 8011, "fields": {"state_transition": 1955, "node_type": "S", "subcondition": 17, "parent": 8012}}, {"model": "template.logicnode", "pk": 8012, "fields": {"state_transition": 1955, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8013, "fields": {"state_transition": 1956, "node_type": "N", "subcondition": null, "parent": 8016}}, {"model": "template.logicnode", "pk": 8014, "fields": {"state_transition": 1956, "node_type": "S", "subcondition": 23, "parent": 8013}}, {"model": "template.logicnode", "pk": 8015, "fields": {"state_transition": 1956, "node_type": "S", "subcondition": 25, "parent": 8016}}, {"model": "template.logicnode", "pk": 8016, "fields": {"state_transition": 1956, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8017, "fields": {"state_transition": 1957, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8018, "fields": {"state_transition": 1957, "node_type": "S", "subcondition": 23, "parent": 8017}}, {"model": "template.logicnode", "pk": 8019, "fields": {"state_transition": 1958, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8020, "fields": {"state_transition": 1959, "node_type": "N", "subcondition": null, "parent": 8026}}, {"model": "template.logicnode", "pk": 8021, "fields": {"state_transition": 1959, "node_type": "S", "subcondition": 23, "parent": 8020}}, {"model": "template.logicnode", "pk": 8022, "fields": {"state_transition": 1959, "node_type": "S", "subcondition": 11, "parent": 8026}}, {"model": "template.logicnode", "pk": 8023, "fields": {"state_transition": 1959, "node_type": "S", "subcondition": 13, "parent": 8026}}, {"model": "template.logicnode", "pk": 8024, "fields": {"state_transition": 1959, "node_type": "S", "subcondition": 17, "parent": 8026}}, {"model": "template.logicnode", "pk": 8025, "fields": {"state_transition": 1959, "node_type": "S", "subcondition": 25, "parent": 8026}}, {"model": "template.logicnode", "pk": 8026, "fields": {"state_transition": 1959, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8027, "fields": {"state_transition": 1960, "node_type": "N", "subcondition": null, "parent": 8032}}, {"model": "template.logicnode", "pk": 8028, "fields": {"state_transition": 1960, "node_type": "S", "subcondition": 23, "parent": 8027}}, {"model": "template.logicnode", "pk": 8029, "fields": {"state_transition": 1960, "node_type": "S", "subcondition": 11, "parent": 8032}}, {"model": "template.logicnode", "pk": 8030, "fields": {"state_transition": 1960, "node_type": "S", "subcondition": 13, "parent": 8032}}, {"model": "template.logicnode", "pk": 8031, "fields": {"state_transition": 1960, "node_type": "S", "subcondition": 17, "parent": 8032}}, {"model": "template.logicnode", "pk": 8032, "fields": {"state_transition": 1960, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8033, "fields": {"state_transition": 1961, "node_type": "N", "subcondition": null, "parent": 8038}}, {"model": "template.logicnode", "pk": 8034, "fields": {"state_transition": 1961, "node_type": "S", "subcondition": 23, "parent": 8033}}, {"model": "template.logicnode", "pk": 8035, "fields": {"state_transition": 1961, "node_type": "S", "subcondition": 11, "parent": 8038}}, {"model": "template.logicnode", "pk": 8036, "fields": {"state_transition": 1961, "node_type": "S", "subcondition": 13, "parent": 8038}}, {"model": "template.logicnode", "pk": 8037, "fields": {"state_transition": 1961, "node_type": "S", "subcondition": 25, "parent": 8038}}, {"model": "template.logicnode", "pk": 8038, "fields": {"state_transition": 1961, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8039, "fields": {"state_transition": 1962, "node_type": "N", "subcondition": null, "parent": 8043}}, {"model": "template.logicnode", "pk": 8040, "fields": {"state_transition": 1962, "node_type": "S", "subcondition": 23, "parent": 8039}}, {"model": "template.logicnode", "pk": 8041, "fields": {"state_transition": 1962, "node_type": "S", "subcondition": 11, "parent": 8043}}, {"model": "template.logicnode", "pk": 8042, "fields": {"state_transition": 1962, "node_type": "S", "subcondition": 13, "parent": 8043}}, {"model": "template.logicnode", "pk": 8043, "fields": {"state_transition": 1962, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8044, "fields": {"state_transition": 1963, "node_type": "N", "subcondition": null, "parent": 8049}}, {"model": "template.logicnode", "pk": 8045, "fields": {"state_transition": 1963, "node_type": "S", "subcondition": 23, "parent": 8044}}, {"model": "template.logicnode", "pk": 8046, "fields": {"state_transition": 1963, "node_type": "S", "subcondition": 11, "parent": 8049}}, {"model": "template.logicnode", "pk": 8047, "fields": {"state_transition": 1963, "node_type": "S", "subcondition": 17, "parent": 8049}}, {"model": "template.logicnode", "pk": 8048, "fields": {"state_transition": 1963, "node_type": "S", "subcondition": 25, "parent": 8049}}, {"model": "template.logicnode", "pk": 8049, "fields": {"state_transition": 1963, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8050, "fields": {"state_transition": 1964, "node_type": "N", "subcondition": null, "parent": 8054}}, {"model": "template.logicnode", "pk": 8051, "fields": {"state_transition": 1964, "node_type": "S", "subcondition": 23, "parent": 8050}}, {"model": "template.logicnode", "pk": 8052, "fields": {"state_transition": 1964, "node_type": "S", "subcondition": 11, "parent": 8054}}, {"model": "template.logicnode", "pk": 8053, "fields": {"state_transition": 1964, "node_type": "S", "subcondition": 17, "parent": 8054}}, {"model": "template.logicnode", "pk": 8054, "fields": {"state_transition": 1964, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8055, "fields": {"state_transition": 1965, "node_type": "N", "subcondition": null, "parent": 8059}}, {"model": "template.logicnode", "pk": 8056, "fields": {"state_transition": 1965, "node_type": "S", "subcondition": 23, "parent": 8055}}, {"model": "template.logicnode", "pk": 8057, "fields": {"state_transition": 1965, "node_type": "S", "subcondition": 11, "parent": 8059}}, {"model": "template.logicnode", "pk": 8058, "fields": {"state_transition": 1965, "node_type": "S", "subcondition": 25, "parent": 8059}}, {"model": "template.logicnode", "pk": 8059, "fields": {"state_transition": 1965, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8060, "fields": {"state_transition": 1966, "node_type": "N", "subcondition": null, "parent": 8063}}, {"model": "template.logicnode", "pk": 8061, "fields": {"state_transition": 1966, "node_type": "S", "subcondition": 23, "parent": 8060}}, {"model": "template.logicnode", "pk": 8062, "fields": {"state_transition": 1966, "node_type": "S", "subcondition": 11, "parent": 8063}}, {"model": "template.logicnode", "pk": 8063, "fields": {"state_transition": 1966, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8064, "fields": {"state_transition": 1967, "node_type": "N", "subcondition": null, "parent": 8069}}, {"model": "template.logicnode", "pk": 8065, "fields": {"state_transition": 1967, "node_type": "S", "subcondition": 23, "parent": 8064}}, {"model": "template.logicnode", "pk": 8066, "fields": {"state_transition": 1967, "node_type": "S", "subcondition": 13, "parent": 8069}}, {"model": "template.logicnode", "pk": 8067, "fields": {"state_transition": 1967, "node_type": "S", "subcondition": 17, "parent": 8069}}, {"model": "template.logicnode", "pk": 8068, "fields": {"state_transition": 1967, "node_type": "S", "subcondition": 25, "parent": 8069}}, {"model": "template.logicnode", "pk": 8069, "fields": {"state_transition": 1967, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8070, "fields": {"state_transition": 1968, "node_type": "N", "subcondition": null, "parent": 8074}}, {"model": "template.logicnode", "pk": 8071, "fields": {"state_transition": 1968, "node_type": "S", "subcondition": 23, "parent": 8070}}, {"model": "template.logicnode", "pk": 8072, "fields": {"state_transition": 1968, "node_type": "S", "subcondition": 13, "parent": 8074}}, {"model": "template.logicnode", "pk": 8073, "fields": {"state_transition": 1968, "node_type": "S", "subcondition": 17, "parent": 8074}}, {"model": "template.logicnode", "pk": 8074, "fields": {"state_transition": 1968, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8075, "fields": {"state_transition": 1969, "node_type": "N", "subcondition": null, "parent": 8079}}, {"model": "template.logicnode", "pk": 8076, "fields": {"state_transition": 1969, "node_type": "S", "subcondition": 23, "parent": 8075}}, {"model": "template.logicnode", "pk": 8077, "fields": {"state_transition": 1969, "node_type": "S", "subcondition": 13, "parent": 8079}}, {"model": "template.logicnode", "pk": 8078, "fields": {"state_transition": 1969, "node_type": "S", "subcondition": 25, "parent": 8079}}, {"model": "template.logicnode", "pk": 8079, "fields": {"state_transition": 1969, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8080, "fields": {"state_transition": 1970, "node_type": "N", "subcondition": null, "parent": 8083}}, {"model": "template.logicnode", "pk": 8081, "fields": {"state_transition": 1970, "node_type": "S", "subcondition": 23, "parent": 8080}}, {"model": "template.logicnode", "pk": 8082, "fields": {"state_transition": 1970, "node_type": "S", "subcondition": 13, "parent": 8083}}, {"model": "template.logicnode", "pk": 8083, "fields": {"state_transition": 1970, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8084, "fields": {"state_transition": 1971, "node_type": "N", "subcondition": null, "parent": 8088}}, {"model": "template.logicnode", "pk": 8085, "fields": {"state_transition": 1971, "node_type": "S", "subcondition": 23, "parent": 8084}}, {"model": "template.logicnode", "pk": 8086, "fields": {"state_transition": 1971, "node_type": "S", "subcondition": 17, "parent": 8088}}, {"model": "template.logicnode", "pk": 8087, "fields": {"state_transition": 1971, "node_type": "S", "subcondition": 25, "parent": 8088}}, {"model": "template.logicnode", "pk": 8088, "fields": {"state_transition": 1971, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8089, "fields": {"state_transition": 1972, "node_type": "N", "subcondition": null, "parent": 8092}}, {"model": "template.logicnode", "pk": 8090, "fields": {"state_transition": 1972, "node_type": "S", "subcondition": 23, "parent": 8089}}, {"model": "template.logicnode", "pk": 8091, "fields": {"state_transition": 1972, "node_type": "S", "subcondition": 17, "parent": 8092}}, {"model": "template.logicnode", "pk": 8092, "fields": {"state_transition": 1972, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8093, "fields": {"state_transition": 1973, "node_type": "N", "subcondition": null, "parent": 8096}}, {"model": "template.logicnode", "pk": 8094, "fields": {"state_transition": 1973, "node_type": "S", "subcondition": 23, "parent": 8093}}, {"model": "template.logicnode", "pk": 8095, "fields": {"state_transition": 1973, "node_type": "S", "subcondition": 25, "parent": 8096}}, {"model": "template.logicnode", "pk": 8096, "fields": {"state_transition": 1973, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8097, "fields": {"state_transition": 1974, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8098, "fields": {"state_transition": 1974, "node_type": "S", "subcondition": 23, "parent": 8097}}, {"model": "template.logicnode", "pk": 8099, "fields": {"state_transition": 1975, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8100, "fields": {"state_transition": 1976, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8101, "fields": {"state_transition": 1977, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8102, "fields": {"state_transition": 1978, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8103, "fields": {"state_transition": 1979, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8104, "fields": {"state_transition": 1980, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8105, "fields": {"state_transition": 1981, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8106, "fields": {"state_transition": 1982, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8107, "fields": {"state_transition": 1983, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8108, "fields": {"state_transition": 1984, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8109, "fields": {"state_transition": 1985, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8110, "fields": {"state_transition": 1986, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8111, "fields": {"state_transition": 1987, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8112, "fields": {"state_transition": 1988, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8113, "fields": {"state_transition": 1989, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8114, "fields": {"state_transition": 1990, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8115, "fields": {"state_transition": 1990, "node_type": "S", "subcondition": 23, "parent": 8114}}, {"model": "template.logicnode", "pk": 8116, "fields": {"state_transition": 1991, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8117, "fields": {"state_transition": 1992, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8118, "fields": {"state_transition": 1992, "node_type": "S", "subcondition": 23, "parent": 8117}}, {"model": "template.logicnode", "pk": 8119, "fields": {"state_transition": 1993, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8120, "fields": {"state_transition": 1994, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8121, "fields": {"state_transition": 1994, "node_type": "S", "subcondition": 23, "parent": 8120}}, {"model": "template.logicnode", "pk": 8122, "fields": {"state_transition": 1995, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8123, "fields": {"state_transition": 1996, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8124, "fields": {"state_transition": 1996, "node_type": "S", "subcondition": 23, "parent": 8123}}, {"model": "template.logicnode", "pk": 8125, "fields": {"state_transition": 1997, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8126, "fields": {"state_transition": 1998, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8127, "fields": {"state_transition": 1998, "node_type": "S", "subcondition": 23, "parent": 8126}}, {"model": "template.logicnode", "pk": 8128, "fields": {"state_transition": 1999, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8129, "fields": {"state_transition": 2000, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8130, "fields": {"state_transition": 2000, "node_type": "S", "subcondition": 23, "parent": 8129}}, {"model": "template.logicnode", "pk": 8131, "fields": {"state_transition": 2001, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8132, "fields": {"state_transition": 2002, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8133, "fields": {"state_transition": 2002, "node_type": "S", "subcondition": 23, "parent": 8132}}, {"model": "template.logicnode", "pk": 8134, "fields": {"state_transition": 2003, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8135, "fields": {"state_transition": 2004, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8136, "fields": {"state_transition": 2004, "node_type": "S", "subcondition": 23, "parent": 8135}}, {"model": "template.logicnode", "pk": 8137, "fields": {"state_transition": 2005, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8138, "fields": {"state_transition": 2006, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8139, "fields": {"state_transition": 2006, "node_type": "S", "subcondition": 23, "parent": 8138}}, {"model": "template.logicnode", "pk": 8140, "fields": {"state_transition": 2007, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8141, "fields": {"state_transition": 2008, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8142, "fields": {"state_transition": 2008, "node_type": "S", "subcondition": 23, "parent": 8141}}, {"model": "template.logicnode", "pk": 8143, "fields": {"state_transition": 2009, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8144, "fields": {"state_transition": 2010, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8145, "fields": {"state_transition": 2010, "node_type": "S", "subcondition": 23, "parent": 8144}}, {"model": "template.logicnode", "pk": 8146, "fields": {"state_transition": 2011, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8147, "fields": {"state_transition": 2012, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8148, "fields": {"state_transition": 2012, "node_type": "S", "subcondition": 23, "parent": 8147}}, {"model": "template.logicnode", "pk": 8149, "fields": {"state_transition": 2013, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8150, "fields": {"state_transition": 2014, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8151, "fields": {"state_transition": 2014, "node_type": "S", "subcondition": 23, "parent": 8150}}, {"model": "template.logicnode", "pk": 8152, "fields": {"state_transition": 2015, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8153, "fields": {"state_transition": 2016, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8154, "fields": {"state_transition": 2016, "node_type": "S", "subcondition": 23, "parent": 8153}}, {"model": "template.logicnode", "pk": 8155, "fields": {"state_transition": 2017, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8156, "fields": {"state_transition": 2018, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8157, "fields": {"state_transition": 2018, "node_type": "S", "subcondition": 23, "parent": 8156}}, {"model": "template.logicnode", "pk": 8158, "fields": {"state_transition": 2019, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8159, "fields": {"state_transition": 2020, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8160, "fields": {"state_transition": 2020, "node_type": "S", "subcondition": 23, "parent": 8159}}, {"model": "template.logicnode", "pk": 8161, "fields": {"state_transition": 2021, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8162, "fields": {"state_transition": 2022, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8163, "fields": {"state_transition": 2022, "node_type": "S", "subcondition": 23, "parent": 8162}}, {"model": "template.logicnode", "pk": 8164, "fields": {"state_transition": 2023, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8165, "fields": {"state_transition": 2024, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8166, "fields": {"state_transition": 2024, "node_type": "S", "subcondition": 23, "parent": 8165}}, {"model": "template.logicnode", "pk": 8167, "fields": {"state_transition": 2025, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8168, "fields": {"state_transition": 2026, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8169, "fields": {"state_transition": 2026, "node_type": "S", "subcondition": 23, "parent": 8168}}, {"model": "template.logicnode", "pk": 8170, "fields": {"state_transition": 2027, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8171, "fields": {"state_transition": 2028, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8172, "fields": {"state_transition": 2028, "node_type": "S", "subcondition": 23, "parent": 8171}}, {"model": "template.logicnode", "pk": 8173, "fields": {"state_transition": 2029, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8174, "fields": {"state_transition": 2030, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8175, "fields": {"state_transition": 2030, "node_type": "S", "subcondition": 23, "parent": 8174}}, {"model": "template.logicnode", "pk": 8176, "fields": {"state_transition": 2031, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8177, "fields": {"state_transition": 2032, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8178, "fields": {"state_transition": 2032, "node_type": "S", "subcondition": 23, "parent": 8177}}, {"model": "template.logicnode", "pk": 8179, "fields": {"state_transition": 2033, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8180, "fields": {"state_transition": 2034, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8181, "fields": {"state_transition": 2034, "node_type": "S", "subcondition": 23, "parent": 8180}}, {"model": "template.logicnode", "pk": 8182, "fields": {"state_transition": 2035, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8183, "fields": {"state_transition": 2036, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8184, "fields": {"state_transition": 2036, "node_type": "S", "subcondition": 23, "parent": 8183}}, {"model": "template.logicnode", "pk": 8185, "fields": {"state_transition": 2037, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8186, "fields": {"state_transition": 2038, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8187, "fields": {"state_transition": 2038, "node_type": "S", "subcondition": 23, "parent": 8186}}, {"model": "template.logicnode", "pk": 8188, "fields": {"state_transition": 2039, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8189, "fields": {"state_transition": 2040, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8190, "fields": {"state_transition": 2040, "node_type": "S", "subcondition": 23, "parent": 8189}}, {"model": "template.logicnode", "pk": 8191, "fields": {"state_transition": 2041, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8192, "fields": {"state_transition": 2042, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8193, "fields": {"state_transition": 2042, "node_type": "S", "subcondition": 23, "parent": 8192}}, {"model": "template.logicnode", "pk": 8194, "fields": {"state_transition": 2043, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8195, "fields": {"state_transition": 2044, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8196, "fields": {"state_transition": 2044, "node_type": "S", "subcondition": 23, "parent": 8195}}, {"model": "template.logicnode", "pk": 8197, "fields": {"state_transition": 2045, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8198, "fields": {"state_transition": 2046, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8199, "fields": {"state_transition": 2046, "node_type": "S", "subcondition": 23, "parent": 8198}}, {"model": "template.logicnode", "pk": 8200, "fields": {"state_transition": 2047, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8201, "fields": {"state_transition": 2048, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8202, "fields": {"state_transition": 2048, "node_type": "S", "subcondition": 23, "parent": 8201}}, {"model": "template.logicnode", "pk": 8203, "fields": {"state_transition": 2049, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8204, "fields": {"state_transition": 2050, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8205, "fields": {"state_transition": 2050, "node_type": "S", "subcondition": 23, "parent": 8204}}, {"model": "template.logicnode", "pk": 8206, "fields": {"state_transition": 2051, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8207, "fields": {"state_transition": 2052, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8208, "fields": {"state_transition": 2052, "node_type": "S", "subcondition": 23, "parent": 8207}}, {"model": "template.logicnode", "pk": 8209, "fields": {"state_transition": 2053, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8210, "fields": {"state_transition": 2054, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8211, "fields": {"state_transition": 2054, "node_type": "S", "subcondition": 23, "parent": 8210}}, {"model": "template.logicnode", "pk": 8212, "fields": {"state_transition": 2055, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8213, "fields": {"state_transition": 2056, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8214, "fields": {"state_transition": 2056, "node_type": "S", "subcondition": 23, "parent": 8213}}, {"model": "template.logicnode", "pk": 8215, "fields": {"state_transition": 2057, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8216, "fields": {"state_transition": 2058, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8217, "fields": {"state_transition": 2058, "node_type": "S", "subcondition": 23, "parent": 8216}}, {"model": "template.logicnode", "pk": 8218, "fields": {"state_transition": 2059, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8219, "fields": {"state_transition": 2060, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8220, "fields": {"state_transition": 2060, "node_type": "S", "subcondition": 23, "parent": 8219}}, {"model": "template.logicnode", "pk": 8221, "fields": {"state_transition": 2061, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8222, "fields": {"state_transition": 2062, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8223, "fields": {"state_transition": 2062, "node_type": "S", "subcondition": 23, "parent": 8222}}, {"model": "template.logicnode", "pk": 8224, "fields": {"state_transition": 2063, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8225, "fields": {"state_transition": 2064, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8226, "fields": {"state_transition": 2064, "node_type": "S", "subcondition": 23, "parent": 8225}}, {"model": "template.logicnode", "pk": 8227, "fields": {"state_transition": 2065, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8228, "fields": {"state_transition": 2066, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8229, "fields": {"state_transition": 2066, "node_type": "S", "subcondition": 23, "parent": 8228}}, {"model": "template.logicnode", "pk": 8230, "fields": {"state_transition": 2067, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8231, "fields": {"state_transition": 2068, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8232, "fields": {"state_transition": 2068, "node_type": "S", "subcondition": 23, "parent": 8231}}, {"model": "template.logicnode", "pk": 8233, "fields": {"state_transition": 2069, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8234, "fields": {"state_transition": 2070, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8235, "fields": {"state_transition": 2070, "node_type": "S", "subcondition": 23, "parent": 8234}}, {"model": "template.logicnode", "pk": 8236, "fields": {"state_transition": 2071, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8237, "fields": {"state_transition": 2072, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8238, "fields": {"state_transition": 2072, "node_type": "S", "subcondition": 23, "parent": 8237}}, {"model": "template.logicnode", "pk": 8239, "fields": {"state_transition": 2073, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8240, "fields": {"state_transition": 2074, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8241, "fields": {"state_transition": 2074, "node_type": "S", "subcondition": 23, "parent": 8240}}, {"model": "template.logicnode", "pk": 8242, "fields": {"state_transition": 2075, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8243, "fields": {"state_transition": 2076, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8244, "fields": {"state_transition": 2076, "node_type": "S", "subcondition": 23, "parent": 8243}}, {"model": "template.logicnode", "pk": 8245, "fields": {"state_transition": 2077, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8246, "fields": {"state_transition": 2078, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8247, "fields": {"state_transition": 2078, "node_type": "S", "subcondition": 23, "parent": 8246}}, {"model": "template.logicnode", "pk": 8248, "fields": {"state_transition": 2079, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8249, "fields": {"state_transition": 2080, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8250, "fields": {"state_transition": 2080, "node_type": "S", "subcondition": 23, "parent": 8249}}, {"model": "template.logicnode", "pk": 8251, "fields": {"state_transition": 2081, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8252, "fields": {"state_transition": 2082, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8253, "fields": {"state_transition": 2082, "node_type": "S", "subcondition": 23, "parent": 8252}}, {"model": "template.logicnode", "pk": 8254, "fields": {"state_transition": 2083, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8255, "fields": {"state_transition": 2084, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8256, "fields": {"state_transition": 2084, "node_type": "S", "subcondition": 23, "parent": 8255}}, {"model": "template.logicnode", "pk": 8257, "fields": {"state_transition": 2085, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8258, "fields": {"state_transition": 2086, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8259, "fields": {"state_transition": 2086, "node_type": "S", "subcondition": 23, "parent": 8258}}, {"model": "template.logicnode", "pk": 8260, "fields": {"state_transition": 2087, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8261, "fields": {"state_transition": 2088, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8262, "fields": {"state_transition": 2088, "node_type": "S", "subcondition": 23, "parent": 8261}}, {"model": "template.logicnode", "pk": 8263, "fields": {"state_transition": 2089, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8264, "fields": {"state_transition": 2090, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8265, "fields": {"state_transition": 2090, "node_type": "S", "subcondition": 23, "parent": 8264}}, {"model": "template.logicnode", "pk": 8266, "fields": {"state_transition": 2091, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8267, "fields": {"state_transition": 2092, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8268, "fields": {"state_transition": 2092, "node_type": "S", "subcondition": 23, "parent": 8267}}, {"model": "template.logicnode", "pk": 8269, "fields": {"state_transition": 2093, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8270, "fields": {"state_transition": 2094, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8271, "fields": {"state_transition": 2094, "node_type": "S", "subcondition": 23, "parent": 8270}}, {"model": "template.logicnode", "pk": 8272, "fields": {"state_transition": 2095, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8273, "fields": {"state_transition": 2096, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8274, "fields": {"state_transition": 2096, "node_type": "S", "subcondition": 23, "parent": 8273}}, {"model": "template.logicnode", "pk": 8275, "fields": {"state_transition": 2097, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8276, "fields": {"state_transition": 2098, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8277, "fields": {"state_transition": 2098, "node_type": "S", "subcondition": 23, "parent": 8276}}, {"model": "template.logicnode", "pk": 8278, "fields": {"state_transition": 2099, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8279, "fields": {"state_transition": 2100, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8280, "fields": {"state_transition": 2100, "node_type": "S", "subcondition": 23, "parent": 8279}}, {"model": "template.logicnode", "pk": 8281, "fields": {"state_transition": 2101, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8282, "fields": {"state_transition": 2102, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8283, "fields": {"state_transition": 2102, "node_type": "S", "subcondition": 23, "parent": 8282}}, {"model": "template.logicnode", "pk": 8284, "fields": {"state_transition": 2103, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8285, "fields": {"state_transition": 2104, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8286, "fields": {"state_transition": 2104, "node_type": "S", "subcondition": 23, "parent": 8285}}, {"model": "template.logicnode", "pk": 8287, "fields": {"state_transition": 2105, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8288, "fields": {"state_transition": 2106, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8289, "fields": {"state_transition": 2106, "node_type": "S", "subcondition": 23, "parent": 8288}}, {"model": "template.logicnode", "pk": 8290, "fields": {"state_transition": 2107, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8291, "fields": {"state_transition": 2108, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8292, "fields": {"state_transition": 2108, "node_type": "S", "subcondition": 23, "parent": 8291}}, {"model": "template.logicnode", "pk": 8293, "fields": {"state_transition": 2109, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8294, "fields": {"state_transition": 2110, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8295, "fields": {"state_transition": 2110, "node_type": "S", "subcondition": 23, "parent": 8294}}, {"model": "template.logicnode", "pk": 8296, "fields": {"state_transition": 2111, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8297, "fields": {"state_transition": 2112, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8298, "fields": {"state_transition": 2112, "node_type": "S", "subcondition": 23, "parent": 8297}}, {"model": "template.logicnode", "pk": 8299, "fields": {"state_transition": 2113, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8300, "fields": {"state_transition": 2114, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8301, "fields": {"state_transition": 2114, "node_type": "S", "subcondition": 23, "parent": 8300}}, {"model": "template.logicnode", "pk": 8302, "fields": {"state_transition": 2115, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8303, "fields": {"state_transition": 2116, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8304, "fields": {"state_transition": 2116, "node_type": "S", "subcondition": 23, "parent": 8303}}, {"model": "template.logicnode", "pk": 8305, "fields": {"state_transition": 2117, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8306, "fields": {"state_transition": 2118, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8307, "fields": {"state_transition": 2118, "node_type": "S", "subcondition": 23, "parent": 8306}}, {"model": "template.logicnode", "pk": 8308, "fields": {"state_transition": 2119, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8309, "fields": {"state_transition": 2120, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8310, "fields": {"state_transition": 2120, "node_type": "S", "subcondition": 23, "parent": 8309}}, {"model": "template.logicnode", "pk": 8311, "fields": {"state_transition": 2121, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8312, "fields": {"state_transition": 2122, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8313, "fields": {"state_transition": 2122, "node_type": "S", "subcondition": 23, "parent": 8312}}, {"model": "template.logicnode", "pk": 8314, "fields": {"state_transition": 2123, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8315, "fields": {"state_transition": 2124, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8316, "fields": {"state_transition": 2124, "node_type": "S", "subcondition": 23, "parent": 8315}}, {"model": "template.logicnode", "pk": 8317, "fields": {"state_transition": 2125, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8318, "fields": {"state_transition": 2126, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8319, "fields": {"state_transition": 2126, "node_type": "S", "subcondition": 23, "parent": 8318}}, {"model": "template.logicnode", "pk": 8320, "fields": {"state_transition": 2127, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8321, "fields": {"state_transition": 2128, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8322, "fields": {"state_transition": 2128, "node_type": "S", "subcondition": 23, "parent": 8321}}, {"model": "template.logicnode", "pk": 8323, "fields": {"state_transition": 2129, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8324, "fields": {"state_transition": 2130, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8325, "fields": {"state_transition": 2130, "node_type": "S", "subcondition": 23, "parent": 8324}}, {"model": "template.logicnode", "pk": 8326, "fields": {"state_transition": 2131, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8327, "fields": {"state_transition": 2132, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8328, "fields": {"state_transition": 2132, "node_type": "S", "subcondition": 23, "parent": 8327}}, {"model": "template.logicnode", "pk": 8329, "fields": {"state_transition": 2133, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8330, "fields": {"state_transition": 2134, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8331, "fields": {"state_transition": 2134, "node_type": "S", "subcondition": 23, "parent": 8330}}, {"model": "template.logicnode", "pk": 8332, "fields": {"state_transition": 2135, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8333, "fields": {"state_transition": 2136, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8334, "fields": {"state_transition": 2136, "node_type": "S", "subcondition": 23, "parent": 8333}}, {"model": "template.logicnode", "pk": 8335, "fields": {"state_transition": 2137, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8336, "fields": {"state_transition": 2138, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8337, "fields": {"state_transition": 2138, "node_type": "S", "subcondition": 23, "parent": 8336}}, {"model": "template.logicnode", "pk": 8338, "fields": {"state_transition": 2139, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8339, "fields": {"state_transition": 2140, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8340, "fields": {"state_transition": 2140, "node_type": "S", "subcondition": 23, "parent": 8339}}, {"model": "template.logicnode", "pk": 8341, "fields": {"state_transition": 2141, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8342, "fields": {"state_transition": 2142, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8343, "fields": {"state_transition": 2143, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8344, "fields": {"state_transition": 2144, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8345, "fields": {"state_transition": 2145, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8346, "fields": {"state_transition": 2146, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8347, "fields": {"state_transition": 2147, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8348, "fields": {"state_transition": 2148, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8349, "fields": {"state_transition": 2149, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8350, "fields": {"state_transition": 2150, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8351, "fields": {"state_transition": 2151, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8352, "fields": {"state_transition": 2152, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8353, "fields": {"state_transition": 2152, "node_type": "S", "subcondition": 23, "parent": 8352}}, {"model": "template.logicnode", "pk": 8354, "fields": {"state_transition": 2153, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8355, "fields": {"state_transition": 2154, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8356, "fields": {"state_transition": 2154, "node_type": "S", "subcondition": 23, "parent": 8355}}, {"model": "template.logicnode", "pk": 8357, "fields": {"state_transition": 2155, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8358, "fields": {"state_transition": 2156, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8359, "fields": {"state_transition": 2157, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8360, "fields": {"state_transition": 2158, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8361, "fields": {"state_transition": 2159, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8362, "fields": {"state_transition": 2160, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8363, "fields": {"state_transition": 2161, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8364, "fields": {"state_transition": 2162, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8365, "fields": {"state_transition": 2163, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8366, "fields": {"state_transition": 2164, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8367, "fields": {"state_transition": 2165, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8368, "fields": {"state_transition": 2166, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8369, "fields": {"state_transition": 2167, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8370, "fields": {"state_transition": 2168, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8371, "fields": {"state_transition": 2169, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8372, "fields": {"state_transition": 2170, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8373, "fields": {"state_transition": 2170, "node_type": "S", "subcondition": 23, "parent": 8372}}, {"model": "template.logicnode", "pk": 8374, "fields": {"state_transition": 2171, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8375, "fields": {"state_transition": 2172, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8376, "fields": {"state_transition": 2172, "node_type": "S", "subcondition": 23, "parent": 8375}}, {"model": "template.logicnode", "pk": 8377, "fields": {"state_transition": 2173, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8378, "fields": {"state_transition": 2174, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8379, "fields": {"state_transition": 2174, "node_type": "S", "subcondition": 23, "parent": 8378}}, {"model": "template.logicnode", "pk": 8380, "fields": {"state_transition": 2175, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8381, "fields": {"state_transition": 2176, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8382, "fields": {"state_transition": 2176, "node_type": "S", "subcondition": 23, "parent": 8381}}, {"model": "template.logicnode", "pk": 8383, "fields": {"state_transition": 2177, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8384, "fields": {"state_transition": 2178, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8385, "fields": {"state_transition": 2178, "node_type": "S", "subcondition": 23, "parent": 8384}}, {"model": "template.logicnode", "pk": 8386, "fields": {"state_transition": 2179, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8387, "fields": {"state_transition": 2180, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8388, "fields": {"state_transition": 2180, "node_type": "S", "subcondition": 23, "parent": 8387}}, {"model": "template.logicnode", "pk": 8389, "fields": {"state_transition": 2181, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8390, "fields": {"state_transition": 2182, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8391, "fields": {"state_transition": 2182, "node_type": "S", "subcondition": 23, "parent": 8390}}, {"model": "template.logicnode", "pk": 8392, "fields": {"state_transition": 2183, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8393, "fields": {"state_transition": 2184, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8394, "fields": {"state_transition": 2184, "node_type": "S", "subcondition": 23, "parent": 8393}}, {"model": "template.logicnode", "pk": 8395, "fields": {"state_transition": 2185, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8396, "fields": {"state_transition": 2186, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8397, "fields": {"state_transition": 2186, "node_type": "S", "subcondition": 23, "parent": 8396}}, {"model": "template.logicnode", "pk": 8398, "fields": {"state_transition": 2187, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8399, "fields": {"state_transition": 2188, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8400, "fields": {"state_transition": 2188, "node_type": "S", "subcondition": 23, "parent": 8399}}, {"model": "template.logicnode", "pk": 8401, "fields": {"state_transition": 2189, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8402, "fields": {"state_transition": 2190, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8403, "fields": {"state_transition": 2190, "node_type": "S", "subcondition": 23, "parent": 8402}}, {"model": "template.logicnode", "pk": 8404, "fields": {"state_transition": 2191, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8405, "fields": {"state_transition": 2192, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8406, "fields": {"state_transition": 2192, "node_type": "S", "subcondition": 23, "parent": 8405}}, {"model": "template.logicnode", "pk": 8407, "fields": {"state_transition": 2193, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8408, "fields": {"state_transition": 2194, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8409, "fields": {"state_transition": 2194, "node_type": "S", "subcondition": 23, "parent": 8408}}, {"model": "template.logicnode", "pk": 8410, "fields": {"state_transition": 2195, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8411, "fields": {"state_transition": 2196, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8412, "fields": {"state_transition": 2196, "node_type": "S", "subcondition": 23, "parent": 8411}}, {"model": "template.logicnode", "pk": 8413, "fields": {"state_transition": 2197, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8414, "fields": {"state_transition": 2198, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8415, "fields": {"state_transition": 2198, "node_type": "S", "subcondition": 23, "parent": 8414}}, {"model": "template.logicnode", "pk": 8416, "fields": {"state_transition": 2199, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8417, "fields": {"state_transition": 2200, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8418, "fields": {"state_transition": 2200, "node_type": "S", "subcondition": 23, "parent": 8417}}, {"model": "template.logicnode", "pk": 8419, "fields": {"state_transition": 2201, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8420, "fields": {"state_transition": 2202, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8421, "fields": {"state_transition": 2202, "node_type": "S", "subcondition": 23, "parent": 8420}}, {"model": "template.logicnode", "pk": 8422, "fields": {"state_transition": 2203, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8423, "fields": {"state_transition": 2204, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8424, "fields": {"state_transition": 2204, "node_type": "S", "subcondition": 23, "parent": 8423}}, {"model": "template.logicnode", "pk": 8425, "fields": {"state_transition": 2205, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8426, "fields": {"state_transition": 2206, "node_type": "N", "subcondition": null, "parent": 8430}}, {"model": "template.logicnode", "pk": 8427, "fields": {"state_transition": 2206, "node_type": "S", "subcondition": 23, "parent": 8426}}, {"model": "template.logicnode", "pk": 8428, "fields": {"state_transition": 2206, "node_type": "S", "subcondition": 11, "parent": 8430}}, {"model": "template.logicnode", "pk": 8429, "fields": {"state_transition": 2206, "node_type": "S", "subcondition": 17, "parent": 8430}}, {"model": "template.logicnode", "pk": 8430, "fields": {"state_transition": 2206, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8431, "fields": {"state_transition": 2207, "node_type": "N", "subcondition": null, "parent": 8434}}, {"model": "template.logicnode", "pk": 8432, "fields": {"state_transition": 2207, "node_type": "S", "subcondition": 23, "parent": 8431}}, {"model": "template.logicnode", "pk": 8433, "fields": {"state_transition": 2207, "node_type": "S", "subcondition": 11, "parent": 8434}}, {"model": "template.logicnode", "pk": 8434, "fields": {"state_transition": 2207, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8435, "fields": {"state_transition": 2208, "node_type": "N", "subcondition": null, "parent": 8438}}, {"model": "template.logicnode", "pk": 8436, "fields": {"state_transition": 2208, "node_type": "S", "subcondition": 23, "parent": 8435}}, {"model": "template.logicnode", "pk": 8437, "fields": {"state_transition": 2208, "node_type": "S", "subcondition": 17, "parent": 8438}}, {"model": "template.logicnode", "pk": 8438, "fields": {"state_transition": 2208, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8439, "fields": {"state_transition": 2209, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8440, "fields": {"state_transition": 2209, "node_type": "S", "subcondition": 23, "parent": 8439}}, {"model": "template.logicnode", "pk": 8441, "fields": {"state_transition": 2210, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8442, "fields": {"state_transition": 2211, "node_type": "N", "subcondition": null, "parent": 8446}}, {"model": "template.logicnode", "pk": 8443, "fields": {"state_transition": 2211, "node_type": "S", "subcondition": 23, "parent": 8442}}, {"model": "template.logicnode", "pk": 8444, "fields": {"state_transition": 2211, "node_type": "S", "subcondition": 11, "parent": 8446}}, {"model": "template.logicnode", "pk": 8445, "fields": {"state_transition": 2211, "node_type": "S", "subcondition": 17, "parent": 8446}}, {"model": "template.logicnode", "pk": 8446, "fields": {"state_transition": 2211, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8447, "fields": {"state_transition": 2212, "node_type": "N", "subcondition": null, "parent": 8450}}, {"model": "template.logicnode", "pk": 8448, "fields": {"state_transition": 2212, "node_type": "S", "subcondition": 23, "parent": 8447}}, {"model": "template.logicnode", "pk": 8449, "fields": {"state_transition": 2212, "node_type": "S", "subcondition": 11, "parent": 8450}}, {"model": "template.logicnode", "pk": 8450, "fields": {"state_transition": 2212, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8451, "fields": {"state_transition": 2213, "node_type": "N", "subcondition": null, "parent": 8454}}, {"model": "template.logicnode", "pk": 8452, "fields": {"state_transition": 2213, "node_type": "S", "subcondition": 23, "parent": 8451}}, {"model": "template.logicnode", "pk": 8453, "fields": {"state_transition": 2213, "node_type": "S", "subcondition": 17, "parent": 8454}}, {"model": "template.logicnode", "pk": 8454, "fields": {"state_transition": 2213, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8455, "fields": {"state_transition": 2214, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8456, "fields": {"state_transition": 2214, "node_type": "S", "subcondition": 23, "parent": 8455}}, {"model": "template.logicnode", "pk": 8457, "fields": {"state_transition": 2215, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8458, "fields": {"state_transition": 2216, "node_type": "N", "subcondition": null, "parent": 8462}}, {"model": "template.logicnode", "pk": 8459, "fields": {"state_transition": 2216, "node_type": "S", "subcondition": 23, "parent": 8458}}, {"model": "template.logicnode", "pk": 8460, "fields": {"state_transition": 2216, "node_type": "S", "subcondition": 11, "parent": 8462}}, {"model": "template.logicnode", "pk": 8461, "fields": {"state_transition": 2216, "node_type": "S", "subcondition": 17, "parent": 8462}}, {"model": "template.logicnode", "pk": 8462, "fields": {"state_transition": 2216, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8463, "fields": {"state_transition": 2217, "node_type": "N", "subcondition": null, "parent": 8466}}, {"model": "template.logicnode", "pk": 8464, "fields": {"state_transition": 2217, "node_type": "S", "subcondition": 23, "parent": 8463}}, {"model": "template.logicnode", "pk": 8465, "fields": {"state_transition": 2217, "node_type": "S", "subcondition": 11, "parent": 8466}}, {"model": "template.logicnode", "pk": 8466, "fields": {"state_transition": 2217, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8467, "fields": {"state_transition": 2218, "node_type": "N", "subcondition": null, "parent": 8470}}, {"model": "template.logicnode", "pk": 8468, "fields": {"state_transition": 2218, "node_type": "S", "subcondition": 23, "parent": 8467}}, {"model": "template.logicnode", "pk": 8469, "fields": {"state_transition": 2218, "node_type": "S", "subcondition": 17, "parent": 8470}}, {"model": "template.logicnode", "pk": 8470, "fields": {"state_transition": 2218, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8471, "fields": {"state_transition": 2219, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8472, "fields": {"state_transition": 2219, "node_type": "S", "subcondition": 23, "parent": 8471}}, {"model": "template.logicnode", "pk": 8473, "fields": {"state_transition": 2220, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8474, "fields": {"state_transition": 2221, "node_type": "N", "subcondition": null, "parent": 8478}}, {"model": "template.logicnode", "pk": 8475, "fields": {"state_transition": 2221, "node_type": "S", "subcondition": 23, "parent": 8474}}, {"model": "template.logicnode", "pk": 8476, "fields": {"state_transition": 2221, "node_type": "S", "subcondition": 11, "parent": 8478}}, {"model": "template.logicnode", "pk": 8477, "fields": {"state_transition": 2221, "node_type": "S", "subcondition": 17, "parent": 8478}}, {"model": "template.logicnode", "pk": 8478, "fields": {"state_transition": 2221, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8479, "fields": {"state_transition": 2222, "node_type": "N", "subcondition": null, "parent": 8482}}, {"model": "template.logicnode", "pk": 8480, "fields": {"state_transition": 2222, "node_type": "S", "subcondition": 23, "parent": 8479}}, {"model": "template.logicnode", "pk": 8481, "fields": {"state_transition": 2222, "node_type": "S", "subcondition": 11, "parent": 8482}}, {"model": "template.logicnode", "pk": 8482, "fields": {"state_transition": 2222, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8483, "fields": {"state_transition": 2223, "node_type": "N", "subcondition": null, "parent": 8486}}, {"model": "template.logicnode", "pk": 8484, "fields": {"state_transition": 2223, "node_type": "S", "subcondition": 23, "parent": 8483}}, {"model": "template.logicnode", "pk": 8485, "fields": {"state_transition": 2223, "node_type": "S", "subcondition": 17, "parent": 8486}}, {"model": "template.logicnode", "pk": 8486, "fields": {"state_transition": 2223, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8487, "fields": {"state_transition": 2224, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8488, "fields": {"state_transition": 2224, "node_type": "S", "subcondition": 23, "parent": 8487}}, {"model": "template.logicnode", "pk": 8489, "fields": {"state_transition": 2225, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8490, "fields": {"state_transition": 2226, "node_type": "N", "subcondition": null, "parent": 8494}}, {"model": "template.logicnode", "pk": 8491, "fields": {"state_transition": 2226, "node_type": "S", "subcondition": 23, "parent": 8490}}, {"model": "template.logicnode", "pk": 8492, "fields": {"state_transition": 2226, "node_type": "S", "subcondition": 11, "parent": 8494}}, {"model": "template.logicnode", "pk": 8493, "fields": {"state_transition": 2226, "node_type": "S", "subcondition": 17, "parent": 8494}}, {"model": "template.logicnode", "pk": 8494, "fields": {"state_transition": 2226, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8495, "fields": {"state_transition": 2227, "node_type": "N", "subcondition": null, "parent": 8498}}, {"model": "template.logicnode", "pk": 8496, "fields": {"state_transition": 2227, "node_type": "S", "subcondition": 23, "parent": 8495}}, {"model": "template.logicnode", "pk": 8497, "fields": {"state_transition": 2227, "node_type": "S", "subcondition": 11, "parent": 8498}}, {"model": "template.logicnode", "pk": 8498, "fields": {"state_transition": 2227, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8499, "fields": {"state_transition": 2228, "node_type": "N", "subcondition": null, "parent": 8502}}, {"model": "template.logicnode", "pk": 8500, "fields": {"state_transition": 2228, "node_type": "S", "subcondition": 23, "parent": 8499}}, {"model": "template.logicnode", "pk": 8501, "fields": {"state_transition": 2228, "node_type": "S", "subcondition": 17, "parent": 8502}}, {"model": "template.logicnode", "pk": 8502, "fields": {"state_transition": 2228, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8503, "fields": {"state_transition": 2229, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8504, "fields": {"state_transition": 2229, "node_type": "S", "subcondition": 23, "parent": 8503}}, {"model": "template.logicnode", "pk": 8505, "fields": {"state_transition": 2230, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8506, "fields": {"state_transition": 2231, "node_type": "N", "subcondition": null, "parent": 8510}}, {"model": "template.logicnode", "pk": 8507, "fields": {"state_transition": 2231, "node_type": "S", "subcondition": 23, "parent": 8506}}, {"model": "template.logicnode", "pk": 8508, "fields": {"state_transition": 2231, "node_type": "S", "subcondition": 11, "parent": 8510}}, {"model": "template.logicnode", "pk": 8509, "fields": {"state_transition": 2231, "node_type": "S", "subcondition": 17, "parent": 8510}}, {"model": "template.logicnode", "pk": 8510, "fields": {"state_transition": 2231, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8511, "fields": {"state_transition": 2232, "node_type": "N", "subcondition": null, "parent": 8514}}, {"model": "template.logicnode", "pk": 8512, "fields": {"state_transition": 2232, "node_type": "S", "subcondition": 23, "parent": 8511}}, {"model": "template.logicnode", "pk": 8513, "fields": {"state_transition": 2232, "node_type": "S", "subcondition": 11, "parent": 8514}}, {"model": "template.logicnode", "pk": 8514, "fields": {"state_transition": 2232, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8515, "fields": {"state_transition": 2233, "node_type": "N", "subcondition": null, "parent": 8518}}, {"model": "template.logicnode", "pk": 8516, "fields": {"state_transition": 2233, "node_type": "S", "subcondition": 23, "parent": 8515}}, {"model": "template.logicnode", "pk": 8517, "fields": {"state_transition": 2233, "node_type": "S", "subcondition": 17, "parent": 8518}}, {"model": "template.logicnode", "pk": 8518, "fields": {"state_transition": 2233, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8519, "fields": {"state_transition": 2234, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8520, "fields": {"state_transition": 2234, "node_type": "S", "subcondition": 23, "parent": 8519}}, {"model": "template.logicnode", "pk": 8521, "fields": {"state_transition": 2235, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8522, "fields": {"state_transition": 2236, "node_type": "N", "subcondition": null, "parent": 8526}}, {"model": "template.logicnode", "pk": 8523, "fields": {"state_transition": 2236, "node_type": "S", "subcondition": 23, "parent": 8522}}, {"model": "template.logicnode", "pk": 8524, "fields": {"state_transition": 2236, "node_type": "S", "subcondition": 11, "parent": 8526}}, {"model": "template.logicnode", "pk": 8525, "fields": {"state_transition": 2236, "node_type": "S", "subcondition": 17, "parent": 8526}}, {"model": "template.logicnode", "pk": 8526, "fields": {"state_transition": 2236, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8527, "fields": {"state_transition": 2237, "node_type": "N", "subcondition": null, "parent": 8530}}, {"model": "template.logicnode", "pk": 8528, "fields": {"state_transition": 2237, "node_type": "S", "subcondition": 23, "parent": 8527}}, {"model": "template.logicnode", "pk": 8529, "fields": {"state_transition": 2237, "node_type": "S", "subcondition": 11, "parent": 8530}}, {"model": "template.logicnode", "pk": 8530, "fields": {"state_transition": 2237, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8531, "fields": {"state_transition": 2238, "node_type": "N", "subcondition": null, "parent": 8534}}, {"model": "template.logicnode", "pk": 8532, "fields": {"state_transition": 2238, "node_type": "S", "subcondition": 23, "parent": 8531}}, {"model": "template.logicnode", "pk": 8533, "fields": {"state_transition": 2238, "node_type": "S", "subcondition": 17, "parent": 8534}}, {"model": "template.logicnode", "pk": 8534, "fields": {"state_transition": 2238, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8535, "fields": {"state_transition": 2239, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8536, "fields": {"state_transition": 2239, "node_type": "S", "subcondition": 23, "parent": 8535}}, {"model": "template.logicnode", "pk": 8537, "fields": {"state_transition": 2240, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8538, "fields": {"state_transition": 2241, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8539, "fields": {"state_transition": 2242, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8540, "fields": {"state_transition": 2243, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8541, "fields": {"state_transition": 2244, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8542, "fields": {"state_transition": 2245, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8543, "fields": {"state_transition": 2245, "node_type": "S", "subcondition": 23, "parent": 8542}}, {"model": "template.logicnode", "pk": 8544, "fields": {"state_transition": 2246, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8545, "fields": {"state_transition": 2247, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8546, "fields": {"state_transition": 2247, "node_type": "S", "subcondition": 23, "parent": 8545}}, {"model": "template.logicnode", "pk": 8547, "fields": {"state_transition": 2248, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8548, "fields": {"state_transition": 2249, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8549, "fields": {"state_transition": 2249, "node_type": "S", "subcondition": 23, "parent": 8548}}, {"model": "template.logicnode", "pk": 8550, "fields": {"state_transition": 2250, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8551, "fields": {"state_transition": 2251, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8552, "fields": {"state_transition": 2251, "node_type": "S", "subcondition": 23, "parent": 8551}}, {"model": "template.logicnode", "pk": 8553, "fields": {"state_transition": 2252, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8554, "fields": {"state_transition": 2253, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8555, "fields": {"state_transition": 2253, "node_type": "S", "subcondition": 23, "parent": 8554}}, {"model": "template.logicnode", "pk": 8556, "fields": {"state_transition": 2254, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8557, "fields": {"state_transition": 2255, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8558, "fields": {"state_transition": 2255, "node_type": "S", "subcondition": 23, "parent": 8557}}, {"model": "template.logicnode", "pk": 8559, "fields": {"state_transition": 2256, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8560, "fields": {"state_transition": 2257, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8561, "fields": {"state_transition": 2257, "node_type": "S", "subcondition": 23, "parent": 8560}}, {"model": "template.logicnode", "pk": 8562, "fields": {"state_transition": 2258, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8563, "fields": {"state_transition": 2259, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8564, "fields": {"state_transition": 2259, "node_type": "S", "subcondition": 23, "parent": 8563}}, {"model": "template.logicnode", "pk": 8565, "fields": {"state_transition": 2260, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8566, "fields": {"state_transition": 2261, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8567, "fields": {"state_transition": 2261, "node_type": "S", "subcondition": 23, "parent": 8566}}, {"model": "template.logicnode", "pk": 8568, "fields": {"state_transition": 2262, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8569, "fields": {"state_transition": 2263, "node_type": "N", "subcondition": null, "parent": 8573}}, {"model": "template.logicnode", "pk": 8570, "fields": {"state_transition": 2263, "node_type": "S", "subcondition": 23, "parent": 8569}}, {"model": "template.logicnode", "pk": 8571, "fields": {"state_transition": 2263, "node_type": "S", "subcondition": 14, "parent": 8573}}, {"model": "template.logicnode", "pk": 8572, "fields": {"state_transition": 2263, "node_type": "S", "subcondition": 16, "parent": 8573}}, {"model": "template.logicnode", "pk": 8573, "fields": {"state_transition": 2263, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8574, "fields": {"state_transition": 2264, "node_type": "N", "subcondition": null, "parent": 8577}}, {"model": "template.logicnode", "pk": 8575, "fields": {"state_transition": 2264, "node_type": "S", "subcondition": 23, "parent": 8574}}, {"model": "template.logicnode", "pk": 8576, "fields": {"state_transition": 2264, "node_type": "S", "subcondition": 14, "parent": 8577}}, {"model": "template.logicnode", "pk": 8577, "fields": {"state_transition": 2264, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8578, "fields": {"state_transition": 2265, "node_type": "N", "subcondition": null, "parent": 8582}}, {"model": "template.logicnode", "pk": 8579, "fields": {"state_transition": 2265, "node_type": "S", "subcondition": 23, "parent": 8578}}, {"model": "template.logicnode", "pk": 8580, "fields": {"state_transition": 2265, "node_type": "S", "subcondition": 15, "parent": 8582}}, {"model": "template.logicnode", "pk": 8581, "fields": {"state_transition": 2265, "node_type": "S", "subcondition": 16, "parent": 8582}}, {"model": "template.logicnode", "pk": 8582, "fields": {"state_transition": 2265, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8583, "fields": {"state_transition": 2266, "node_type": "N", "subcondition": null, "parent": 8586}}, {"model": "template.logicnode", "pk": 8584, "fields": {"state_transition": 2266, "node_type": "S", "subcondition": 23, "parent": 8583}}, {"model": "template.logicnode", "pk": 8585, "fields": {"state_transition": 2266, "node_type": "S", "subcondition": 15, "parent": 8586}}, {"model": "template.logicnode", "pk": 8586, "fields": {"state_transition": 2266, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8587, "fields": {"state_transition": 2267, "node_type": "N", "subcondition": null, "parent": 8590}}, {"model": "template.logicnode", "pk": 8588, "fields": {"state_transition": 2267, "node_type": "S", "subcondition": 23, "parent": 8587}}, {"model": "template.logicnode", "pk": 8589, "fields": {"state_transition": 2267, "node_type": "S", "subcondition": 16, "parent": 8590}}, {"model": "template.logicnode", "pk": 8590, "fields": {"state_transition": 2267, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8591, "fields": {"state_transition": 2268, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8592, "fields": {"state_transition": 2268, "node_type": "S", "subcondition": 23, "parent": 8591}}, {"model": "template.logicnode", "pk": 8593, "fields": {"state_transition": 2269, "node_type": "S", "subcondition": 23, "parent": 8595}}, {"model": "template.logicnode", "pk": 8594, "fields": {"state_transition": 2269, "node_type": "S", "subcondition": 16, "parent": 8595}}, {"model": "template.logicnode", "pk": 8595, "fields": {"state_transition": 2269, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8596, "fields": {"state_transition": 2270, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8597, "fields": {"state_transition": 2271, "node_type": "N", "subcondition": null, "parent": 8601}}, {"model": "template.logicnode", "pk": 8598, "fields": {"state_transition": 2271, "node_type": "S", "subcondition": 23, "parent": 8597}}, {"model": "template.logicnode", "pk": 8599, "fields": {"state_transition": 2271, "node_type": "S", "subcondition": 14, "parent": 8601}}, {"model": "template.logicnode", "pk": 8600, "fields": {"state_transition": 2271, "node_type": "S", "subcondition": 16, "parent": 8601}}, {"model": "template.logicnode", "pk": 8601, "fields": {"state_transition": 2271, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8602, "fields": {"state_transition": 2272, "node_type": "N", "subcondition": null, "parent": 8605}}, {"model": "template.logicnode", "pk": 8603, "fields": {"state_transition": 2272, "node_type": "S", "subcondition": 23, "parent": 8602}}, {"model": "template.logicnode", "pk": 8604, "fields": {"state_transition": 2272, "node_type": "S", "subcondition": 14, "parent": 8605}}, {"model": "template.logicnode", "pk": 8605, "fields": {"state_transition": 2272, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8606, "fields": {"state_transition": 2273, "node_type": "N", "subcondition": null, "parent": 8610}}, {"model": "template.logicnode", "pk": 8607, "fields": {"state_transition": 2273, "node_type": "S", "subcondition": 23, "parent": 8606}}, {"model": "template.logicnode", "pk": 8608, "fields": {"state_transition": 2273, "node_type": "S", "subcondition": 15, "parent": 8610}}, {"model": "template.logicnode", "pk": 8609, "fields": {"state_transition": 2273, "node_type": "S", "subcondition": 16, "parent": 8610}}, {"model": "template.logicnode", "pk": 8610, "fields": {"state_transition": 2273, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8611, "fields": {"state_transition": 2274, "node_type": "N", "subcondition": null, "parent": 8614}}, {"model": "template.logicnode", "pk": 8612, "fields": {"state_transition": 2274, "node_type": "S", "subcondition": 23, "parent": 8611}}, {"model": "template.logicnode", "pk": 8613, "fields": {"state_transition": 2274, "node_type": "S", "subcondition": 15, "parent": 8614}}, {"model": "template.logicnode", "pk": 8614, "fields": {"state_transition": 2274, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8615, "fields": {"state_transition": 2275, "node_type": "N", "subcondition": null, "parent": 8618}}, {"model": "template.logicnode", "pk": 8616, "fields": {"state_transition": 2275, "node_type": "S", "subcondition": 23, "parent": 8615}}, {"model": "template.logicnode", "pk": 8617, "fields": {"state_transition": 2275, "node_type": "S", "subcondition": 16, "parent": 8618}}, {"model": "template.logicnode", "pk": 8618, "fields": {"state_transition": 2275, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8619, "fields": {"state_transition": 2276, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8620, "fields": {"state_transition": 2276, "node_type": "S", "subcondition": 23, "parent": 8619}}, {"model": "template.logicnode", "pk": 8621, "fields": {"state_transition": 2277, "node_type": "S", "subcondition": 23, "parent": 8623}}, {"model": "template.logicnode", "pk": 8622, "fields": {"state_transition": 2277, "node_type": "S", "subcondition": 16, "parent": 8623}}, {"model": "template.logicnode", "pk": 8623, "fields": {"state_transition": 2277, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8624, "fields": {"state_transition": 2278, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8625, "fields": {"state_transition": 2279, "node_type": "N", "subcondition": null, "parent": 8629}}, {"model": "template.logicnode", "pk": 8626, "fields": {"state_transition": 2279, "node_type": "S", "subcondition": 23, "parent": 8625}}, {"model": "template.logicnode", "pk": 8627, "fields": {"state_transition": 2279, "node_type": "S", "subcondition": 14, "parent": 8629}}, {"model": "template.logicnode", "pk": 8628, "fields": {"state_transition": 2279, "node_type": "S", "subcondition": 16, "parent": 8629}}, {"model": "template.logicnode", "pk": 8629, "fields": {"state_transition": 2279, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8630, "fields": {"state_transition": 2280, "node_type": "N", "subcondition": null, "parent": 8633}}, {"model": "template.logicnode", "pk": 8631, "fields": {"state_transition": 2280, "node_type": "S", "subcondition": 23, "parent": 8630}}, {"model": "template.logicnode", "pk": 8632, "fields": {"state_transition": 2280, "node_type": "S", "subcondition": 14, "parent": 8633}}, {"model": "template.logicnode", "pk": 8633, "fields": {"state_transition": 2280, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8634, "fields": {"state_transition": 2281, "node_type": "N", "subcondition": null, "parent": 8638}}, {"model": "template.logicnode", "pk": 8635, "fields": {"state_transition": 2281, "node_type": "S", "subcondition": 23, "parent": 8634}}, {"model": "template.logicnode", "pk": 8636, "fields": {"state_transition": 2281, "node_type": "S", "subcondition": 15, "parent": 8638}}, {"model": "template.logicnode", "pk": 8637, "fields": {"state_transition": 2281, "node_type": "S", "subcondition": 16, "parent": 8638}}, {"model": "template.logicnode", "pk": 8638, "fields": {"state_transition": 2281, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8639, "fields": {"state_transition": 2282, "node_type": "N", "subcondition": null, "parent": 8642}}, {"model": "template.logicnode", "pk": 8640, "fields": {"state_transition": 2282, "node_type": "S", "subcondition": 23, "parent": 8639}}, {"model": "template.logicnode", "pk": 8641, "fields": {"state_transition": 2282, "node_type": "S", "subcondition": 15, "parent": 8642}}, {"model": "template.logicnode", "pk": 8642, "fields": {"state_transition": 2282, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8643, "fields": {"state_transition": 2283, "node_type": "N", "subcondition": null, "parent": 8646}}, {"model": "template.logicnode", "pk": 8644, "fields": {"state_transition": 2283, "node_type": "S", "subcondition": 23, "parent": 8643}}, {"model": "template.logicnode", "pk": 8645, "fields": {"state_transition": 2283, "node_type": "S", "subcondition": 16, "parent": 8646}}, {"model": "template.logicnode", "pk": 8646, "fields": {"state_transition": 2283, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8647, "fields": {"state_transition": 2284, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8648, "fields": {"state_transition": 2284, "node_type": "S", "subcondition": 23, "parent": 8647}}, {"model": "template.logicnode", "pk": 8649, "fields": {"state_transition": 2285, "node_type": "S", "subcondition": 23, "parent": 8651}}, {"model": "template.logicnode", "pk": 8650, "fields": {"state_transition": 2285, "node_type": "S", "subcondition": 16, "parent": 8651}}, {"model": "template.logicnode", "pk": 8651, "fields": {"state_transition": 2285, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8652, "fields": {"state_transition": 2286, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8653, "fields": {"state_transition": 2287, "node_type": "N", "subcondition": null, "parent": 8657}}, {"model": "template.logicnode", "pk": 8654, "fields": {"state_transition": 2287, "node_type": "S", "subcondition": 23, "parent": 8653}}, {"model": "template.logicnode", "pk": 8655, "fields": {"state_transition": 2287, "node_type": "S", "subcondition": 14, "parent": 8657}}, {"model": "template.logicnode", "pk": 8656, "fields": {"state_transition": 2287, "node_type": "S", "subcondition": 16, "parent": 8657}}, {"model": "template.logicnode", "pk": 8657, "fields": {"state_transition": 2287, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8658, "fields": {"state_transition": 2288, "node_type": "N", "subcondition": null, "parent": 8661}}, {"model": "template.logicnode", "pk": 8659, "fields": {"state_transition": 2288, "node_type": "S", "subcondition": 23, "parent": 8658}}, {"model": "template.logicnode", "pk": 8660, "fields": {"state_transition": 2288, "node_type": "S", "subcondition": 14, "parent": 8661}}, {"model": "template.logicnode", "pk": 8661, "fields": {"state_transition": 2288, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8662, "fields": {"state_transition": 2289, "node_type": "N", "subcondition": null, "parent": 8666}}, {"model": "template.logicnode", "pk": 8663, "fields": {"state_transition": 2289, "node_type": "S", "subcondition": 23, "parent": 8662}}, {"model": "template.logicnode", "pk": 8664, "fields": {"state_transition": 2289, "node_type": "S", "subcondition": 15, "parent": 8666}}, {"model": "template.logicnode", "pk": 8665, "fields": {"state_transition": 2289, "node_type": "S", "subcondition": 16, "parent": 8666}}, {"model": "template.logicnode", "pk": 8666, "fields": {"state_transition": 2289, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8667, "fields": {"state_transition": 2290, "node_type": "N", "subcondition": null, "parent": 8670}}, {"model": "template.logicnode", "pk": 8668, "fields": {"state_transition": 2290, "node_type": "S", "subcondition": 23, "parent": 8667}}, {"model": "template.logicnode", "pk": 8669, "fields": {"state_transition": 2290, "node_type": "S", "subcondition": 15, "parent": 8670}}, {"model": "template.logicnode", "pk": 8670, "fields": {"state_transition": 2290, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8671, "fields": {"state_transition": 2291, "node_type": "N", "subcondition": null, "parent": 8674}}, {"model": "template.logicnode", "pk": 8672, "fields": {"state_transition": 2291, "node_type": "S", "subcondition": 23, "parent": 8671}}, {"model": "template.logicnode", "pk": 8673, "fields": {"state_transition": 2291, "node_type": "S", "subcondition": 16, "parent": 8674}}, {"model": "template.logicnode", "pk": 8674, "fields": {"state_transition": 2291, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8675, "fields": {"state_transition": 2292, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8676, "fields": {"state_transition": 2292, "node_type": "S", "subcondition": 23, "parent": 8675}}, {"model": "template.logicnode", "pk": 8677, "fields": {"state_transition": 2293, "node_type": "S", "subcondition": 23, "parent": 8679}}, {"model": "template.logicnode", "pk": 8678, "fields": {"state_transition": 2293, "node_type": "S", "subcondition": 16, "parent": 8679}}, {"model": "template.logicnode", "pk": 8679, "fields": {"state_transition": 2293, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8680, "fields": {"state_transition": 2294, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8681, "fields": {"state_transition": 2295, "node_type": "N", "subcondition": null, "parent": 8685}}, {"model": "template.logicnode", "pk": 8682, "fields": {"state_transition": 2295, "node_type": "S", "subcondition": 23, "parent": 8681}}, {"model": "template.logicnode", "pk": 8683, "fields": {"state_transition": 2295, "node_type": "S", "subcondition": 14, "parent": 8685}}, {"model": "template.logicnode", "pk": 8684, "fields": {"state_transition": 2295, "node_type": "S", "subcondition": 16, "parent": 8685}}, {"model": "template.logicnode", "pk": 8685, "fields": {"state_transition": 2295, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8686, "fields": {"state_transition": 2296, "node_type": "N", "subcondition": null, "parent": 8689}}, {"model": "template.logicnode", "pk": 8687, "fields": {"state_transition": 2296, "node_type": "S", "subcondition": 23, "parent": 8686}}, {"model": "template.logicnode", "pk": 8688, "fields": {"state_transition": 2296, "node_type": "S", "subcondition": 14, "parent": 8689}}, {"model": "template.logicnode", "pk": 8689, "fields": {"state_transition": 2296, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8690, "fields": {"state_transition": 2297, "node_type": "N", "subcondition": null, "parent": 8694}}, {"model": "template.logicnode", "pk": 8691, "fields": {"state_transition": 2297, "node_type": "S", "subcondition": 23, "parent": 8690}}, {"model": "template.logicnode", "pk": 8692, "fields": {"state_transition": 2297, "node_type": "S", "subcondition": 15, "parent": 8694}}, {"model": "template.logicnode", "pk": 8693, "fields": {"state_transition": 2297, "node_type": "S", "subcondition": 16, "parent": 8694}}, {"model": "template.logicnode", "pk": 8694, "fields": {"state_transition": 2297, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8695, "fields": {"state_transition": 2298, "node_type": "N", "subcondition": null, "parent": 8698}}, {"model": "template.logicnode", "pk": 8696, "fields": {"state_transition": 2298, "node_type": "S", "subcondition": 23, "parent": 8695}}, {"model": "template.logicnode", "pk": 8697, "fields": {"state_transition": 2298, "node_type": "S", "subcondition": 15, "parent": 8698}}, {"model": "template.logicnode", "pk": 8698, "fields": {"state_transition": 2298, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8699, "fields": {"state_transition": 2299, "node_type": "N", "subcondition": null, "parent": 8702}}, {"model": "template.logicnode", "pk": 8700, "fields": {"state_transition": 2299, "node_type": "S", "subcondition": 23, "parent": 8699}}, {"model": "template.logicnode", "pk": 8701, "fields": {"state_transition": 2299, "node_type": "S", "subcondition": 16, "parent": 8702}}, {"model": "template.logicnode", "pk": 8702, "fields": {"state_transition": 2299, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8703, "fields": {"state_transition": 2300, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8704, "fields": {"state_transition": 2300, "node_type": "S", "subcondition": 23, "parent": 8703}}, {"model": "template.logicnode", "pk": 8705, "fields": {"state_transition": 2301, "node_type": "S", "subcondition": 23, "parent": 8707}}, {"model": "template.logicnode", "pk": 8706, "fields": {"state_transition": 2301, "node_type": "S", "subcondition": 16, "parent": 8707}}, {"model": "template.logicnode", "pk": 8707, "fields": {"state_transition": 2301, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8708, "fields": {"state_transition": 2302, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8709, "fields": {"state_transition": 2303, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8710, "fields": {"state_transition": 2304, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8711, "fields": {"state_transition": 2305, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8712, "fields": {"state_transition": 2306, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8713, "fields": {"state_transition": 2307, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8714, "fields": {"state_transition": 2308, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8715, "fields": {"state_transition": 2309, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8716, "fields": {"state_transition": 2310, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8717, "fields": {"state_transition": 2311, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8718, "fields": {"state_transition": 2311, "node_type": "S", "subcondition": 23, "parent": 8717}}, {"model": "template.logicnode", "pk": 8719, "fields": {"state_transition": 2312, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8720, "fields": {"state_transition": 2313, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8721, "fields": {"state_transition": 2313, "node_type": "S", "subcondition": 23, "parent": 8720}}, {"model": "template.logicnode", "pk": 8722, "fields": {"state_transition": 2314, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8723, "fields": {"state_transition": 2315, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8724, "fields": {"state_transition": 2315, "node_type": "S", "subcondition": 23, "parent": 8723}}, {"model": "template.logicnode", "pk": 8725, "fields": {"state_transition": 2316, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8726, "fields": {"state_transition": 2317, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8727, "fields": {"state_transition": 2317, "node_type": "S", "subcondition": 23, "parent": 8726}}, {"model": "template.logicnode", "pk": 8728, "fields": {"state_transition": 2318, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8729, "fields": {"state_transition": 2319, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8730, "fields": {"state_transition": 2319, "node_type": "S", "subcondition": 23, "parent": 8729}}, {"model": "template.logicnode", "pk": 8731, "fields": {"state_transition": 2320, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8732, "fields": {"state_transition": 2321, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8733, "fields": {"state_transition": 2321, "node_type": "S", "subcondition": 23, "parent": 8732}}, {"model": "template.logicnode", "pk": 8734, "fields": {"state_transition": 2322, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8735, "fields": {"state_transition": 2323, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8736, "fields": {"state_transition": 2323, "node_type": "S", "subcondition": 23, "parent": 8735}}, {"model": "template.logicnode", "pk": 8737, "fields": {"state_transition": 2324, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8738, "fields": {"state_transition": 2325, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8739, "fields": {"state_transition": 2325, "node_type": "S", "subcondition": 23, "parent": 8738}}, {"model": "template.logicnode", "pk": 8740, "fields": {"state_transition": 2326, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8741, "fields": {"state_transition": 2327, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8742, "fields": {"state_transition": 2327, "node_type": "S", "subcondition": 23, "parent": 8741}}, {"model": "template.logicnode", "pk": 8743, "fields": {"state_transition": 2328, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8744, "fields": {"state_transition": 2329, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8745, "fields": {"state_transition": 2329, "node_type": "S", "subcondition": 23, "parent": 8744}}, {"model": "template.logicnode", "pk": 8746, "fields": {"state_transition": 2330, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8747, "fields": {"state_transition": 2331, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8748, "fields": {"state_transition": 2331, "node_type": "S", "subcondition": 23, "parent": 8747}}, {"model": "template.logicnode", "pk": 8749, "fields": {"state_transition": 2332, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8750, "fields": {"state_transition": 2333, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8751, "fields": {"state_transition": 2333, "node_type": "S", "subcondition": 23, "parent": 8750}}, {"model": "template.logicnode", "pk": 8752, "fields": {"state_transition": 2334, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8753, "fields": {"state_transition": 2335, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8754, "fields": {"state_transition": 2335, "node_type": "S", "subcondition": 23, "parent": 8753}}, {"model": "template.logicnode", "pk": 8755, "fields": {"state_transition": 2336, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8756, "fields": {"state_transition": 2337, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8757, "fields": {"state_transition": 2337, "node_type": "S", "subcondition": 23, "parent": 8756}}, {"model": "template.logicnode", "pk": 8758, "fields": {"state_transition": 2338, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8759, "fields": {"state_transition": 2339, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8760, "fields": {"state_transition": 2339, "node_type": "S", "subcondition": 23, "parent": 8759}}, {"model": "template.logicnode", "pk": 8761, "fields": {"state_transition": 2340, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8762, "fields": {"state_transition": 2341, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8763, "fields": {"state_transition": 2341, "node_type": "S", "subcondition": 23, "parent": 8762}}, {"model": "template.logicnode", "pk": 8764, "fields": {"state_transition": 2342, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8765, "fields": {"state_transition": 2343, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8766, "fields": {"state_transition": 2343, "node_type": "S", "subcondition": 23, "parent": 8765}}, {"model": "template.logicnode", "pk": 8767, "fields": {"state_transition": 2344, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8768, "fields": {"state_transition": 2345, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8769, "fields": {"state_transition": 2345, "node_type": "S", "subcondition": 23, "parent": 8768}}, {"model": "template.logicnode", "pk": 8770, "fields": {"state_transition": 2346, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8771, "fields": {"state_transition": 2347, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8772, "fields": {"state_transition": 2347, "node_type": "S", "subcondition": 23, "parent": 8771}}, {"model": "template.logicnode", "pk": 8773, "fields": {"state_transition": 2348, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8774, "fields": {"state_transition": 2349, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8775, "fields": {"state_transition": 2349, "node_type": "S", "subcondition": 23, "parent": 8774}}, {"model": "template.logicnode", "pk": 8776, "fields": {"state_transition": 2350, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8777, "fields": {"state_transition": 2351, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8778, "fields": {"state_transition": 2351, "node_type": "S", "subcondition": 23, "parent": 8777}}, {"model": "template.logicnode", "pk": 8779, "fields": {"state_transition": 2352, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8780, "fields": {"state_transition": 2353, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8781, "fields": {"state_transition": 2353, "node_type": "S", "subcondition": 23, "parent": 8780}}, {"model": "template.logicnode", "pk": 8782, "fields": {"state_transition": 2354, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8783, "fields": {"state_transition": 2355, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8784, "fields": {"state_transition": 2355, "node_type": "S", "subcondition": 23, "parent": 8783}}, {"model": "template.logicnode", "pk": 8785, "fields": {"state_transition": 2356, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8786, "fields": {"state_transition": 2357, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8787, "fields": {"state_transition": 2357, "node_type": "S", "subcondition": 23, "parent": 8786}}, {"model": "template.logicnode", "pk": 8788, "fields": {"state_transition": 2358, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8789, "fields": {"state_transition": 2359, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8790, "fields": {"state_transition": 2359, "node_type": "S", "subcondition": 23, "parent": 8789}}, {"model": "template.logicnode", "pk": 8791, "fields": {"state_transition": 2360, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8792, "fields": {"state_transition": 2361, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8793, "fields": {"state_transition": 2361, "node_type": "S", "subcondition": 23, "parent": 8792}}, {"model": "template.logicnode", "pk": 8794, "fields": {"state_transition": 2362, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8795, "fields": {"state_transition": 2363, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8796, "fields": {"state_transition": 2363, "node_type": "S", "subcondition": 23, "parent": 8795}}, {"model": "template.logicnode", "pk": 8797, "fields": {"state_transition": 2364, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8798, "fields": {"state_transition": 2365, "node_type": "N", "subcondition": null, "parent": 8802}}, {"model": "template.logicnode", "pk": 8799, "fields": {"state_transition": 2365, "node_type": "S", "subcondition": 23, "parent": 8798}}, {"model": "template.logicnode", "pk": 8800, "fields": {"state_transition": 2365, "node_type": "S", "subcondition": 11, "parent": 8802}}, {"model": "template.logicnode", "pk": 8801, "fields": {"state_transition": 2365, "node_type": "S", "subcondition": 9, "parent": 8802}}, {"model": "template.logicnode", "pk": 8802, "fields": {"state_transition": 2365, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8803, "fields": {"state_transition": 2366, "node_type": "N", "subcondition": null, "parent": 8806}}, {"model": "template.logicnode", "pk": 8804, "fields": {"state_transition": 2366, "node_type": "S", "subcondition": 23, "parent": 8803}}, {"model": "template.logicnode", "pk": 8805, "fields": {"state_transition": 2366, "node_type": "S", "subcondition": 11, "parent": 8806}}, {"model": "template.logicnode", "pk": 8806, "fields": {"state_transition": 2366, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8807, "fields": {"state_transition": 2367, "node_type": "N", "subcondition": null, "parent": 8810}}, {"model": "template.logicnode", "pk": 8808, "fields": {"state_transition": 2367, "node_type": "S", "subcondition": 23, "parent": 8807}}, {"model": "template.logicnode", "pk": 8809, "fields": {"state_transition": 2367, "node_type": "S", "subcondition": 9, "parent": 8810}}, {"model": "template.logicnode", "pk": 8810, "fields": {"state_transition": 2367, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8811, "fields": {"state_transition": 2368, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8812, "fields": {"state_transition": 2368, "node_type": "S", "subcondition": 23, "parent": 8811}}, {"model": "template.logicnode", "pk": 8813, "fields": {"state_transition": 2369, "node_type": "S", "subcondition": 23, "parent": 8815}}, {"model": "template.logicnode", "pk": 8814, "fields": {"state_transition": 2369, "node_type": "S", "subcondition": 9, "parent": 8815}}, {"model": "template.logicnode", "pk": 8815, "fields": {"state_transition": 2369, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8816, "fields": {"state_transition": 2370, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8817, "fields": {"state_transition": 2371, "node_type": "N", "subcondition": null, "parent": 8821}}, {"model": "template.logicnode", "pk": 8818, "fields": {"state_transition": 2371, "node_type": "S", "subcondition": 23, "parent": 8817}}, {"model": "template.logicnode", "pk": 8819, "fields": {"state_transition": 2371, "node_type": "S", "subcondition": 11, "parent": 8821}}, {"model": "template.logicnode", "pk": 8820, "fields": {"state_transition": 2371, "node_type": "S", "subcondition": 9, "parent": 8821}}, {"model": "template.logicnode", "pk": 8821, "fields": {"state_transition": 2371, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8822, "fields": {"state_transition": 2372, "node_type": "N", "subcondition": null, "parent": 8825}}, {"model": "template.logicnode", "pk": 8823, "fields": {"state_transition": 2372, "node_type": "S", "subcondition": 23, "parent": 8822}}, {"model": "template.logicnode", "pk": 8824, "fields": {"state_transition": 2372, "node_type": "S", "subcondition": 11, "parent": 8825}}, {"model": "template.logicnode", "pk": 8825, "fields": {"state_transition": 2372, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8826, "fields": {"state_transition": 2373, "node_type": "N", "subcondition": null, "parent": 8829}}, {"model": "template.logicnode", "pk": 8827, "fields": {"state_transition": 2373, "node_type": "S", "subcondition": 23, "parent": 8826}}, {"model": "template.logicnode", "pk": 8828, "fields": {"state_transition": 2373, "node_type": "S", "subcondition": 9, "parent": 8829}}, {"model": "template.logicnode", "pk": 8829, "fields": {"state_transition": 2373, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8830, "fields": {"state_transition": 2374, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8831, "fields": {"state_transition": 2374, "node_type": "S", "subcondition": 23, "parent": 8830}}, {"model": "template.logicnode", "pk": 8832, "fields": {"state_transition": 2375, "node_type": "S", "subcondition": 23, "parent": 8834}}, {"model": "template.logicnode", "pk": 8833, "fields": {"state_transition": 2375, "node_type": "S", "subcondition": 9, "parent": 8834}}, {"model": "template.logicnode", "pk": 8834, "fields": {"state_transition": 2375, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8835, "fields": {"state_transition": 2376, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8836, "fields": {"state_transition": 2377, "node_type": "N", "subcondition": null, "parent": 8840}}, {"model": "template.logicnode", "pk": 8837, "fields": {"state_transition": 2377, "node_type": "S", "subcondition": 23, "parent": 8836}}, {"model": "template.logicnode", "pk": 8838, "fields": {"state_transition": 2377, "node_type": "S", "subcondition": 11, "parent": 8840}}, {"model": "template.logicnode", "pk": 8839, "fields": {"state_transition": 2377, "node_type": "S", "subcondition": 9, "parent": 8840}}, {"model": "template.logicnode", "pk": 8840, "fields": {"state_transition": 2377, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8841, "fields": {"state_transition": 2378, "node_type": "N", "subcondition": null, "parent": 8844}}, {"model": "template.logicnode", "pk": 8842, "fields": {"state_transition": 2378, "node_type": "S", "subcondition": 23, "parent": 8841}}, {"model": "template.logicnode", "pk": 8843, "fields": {"state_transition": 2378, "node_type": "S", "subcondition": 11, "parent": 8844}}, {"model": "template.logicnode", "pk": 8844, "fields": {"state_transition": 2378, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8845, "fields": {"state_transition": 2379, "node_type": "N", "subcondition": null, "parent": 8848}}, {"model": "template.logicnode", "pk": 8846, "fields": {"state_transition": 2379, "node_type": "S", "subcondition": 23, "parent": 8845}}, {"model": "template.logicnode", "pk": 8847, "fields": {"state_transition": 2379, "node_type": "S", "subcondition": 9, "parent": 8848}}, {"model": "template.logicnode", "pk": 8848, "fields": {"state_transition": 2379, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8849, "fields": {"state_transition": 2380, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8850, "fields": {"state_transition": 2380, "node_type": "S", "subcondition": 23, "parent": 8849}}, {"model": "template.logicnode", "pk": 8851, "fields": {"state_transition": 2381, "node_type": "S", "subcondition": 23, "parent": 8853}}, {"model": "template.logicnode", "pk": 8852, "fields": {"state_transition": 2381, "node_type": "S", "subcondition": 9, "parent": 8853}}, {"model": "template.logicnode", "pk": 8853, "fields": {"state_transition": 2381, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8854, "fields": {"state_transition": 2382, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8855, "fields": {"state_transition": 2383, "node_type": "N", "subcondition": null, "parent": 8859}}, {"model": "template.logicnode", "pk": 8856, "fields": {"state_transition": 2383, "node_type": "S", "subcondition": 23, "parent": 8855}}, {"model": "template.logicnode", "pk": 8857, "fields": {"state_transition": 2383, "node_type": "S", "subcondition": 11, "parent": 8859}}, {"model": "template.logicnode", "pk": 8858, "fields": {"state_transition": 2383, "node_type": "S", "subcondition": 9, "parent": 8859}}, {"model": "template.logicnode", "pk": 8859, "fields": {"state_transition": 2383, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8860, "fields": {"state_transition": 2384, "node_type": "N", "subcondition": null, "parent": 8863}}, {"model": "template.logicnode", "pk": 8861, "fields": {"state_transition": 2384, "node_type": "S", "subcondition": 23, "parent": 8860}}, {"model": "template.logicnode", "pk": 8862, "fields": {"state_transition": 2384, "node_type": "S", "subcondition": 11, "parent": 8863}}, {"model": "template.logicnode", "pk": 8863, "fields": {"state_transition": 2384, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8864, "fields": {"state_transition": 2385, "node_type": "N", "subcondition": null, "parent": 8867}}, {"model": "template.logicnode", "pk": 8865, "fields": {"state_transition": 2385, "node_type": "S", "subcondition": 23, "parent": 8864}}, {"model": "template.logicnode", "pk": 8866, "fields": {"state_transition": 2385, "node_type": "S", "subcondition": 9, "parent": 8867}}, {"model": "template.logicnode", "pk": 8867, "fields": {"state_transition": 2385, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8868, "fields": {"state_transition": 2386, "node_type": "N", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8869, "fields": {"state_transition": 2386, "node_type": "S", "subcondition": 23, "parent": 8868}}, {"model": "template.logicnode", "pk": 8870, "fields": {"state_transition": 2387, "node_type": "S", "subcondition": 23, "parent": 8872}}, {"model": "template.logicnode", "pk": 8871, "fields": {"state_transition": 2387, "node_type": "S", "subcondition": 9, "parent": 8872}}, {"model": "template.logicnode", "pk": 8872, "fields": {"state_transition": 2387, "node_type": "A", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8873, "fields": {"state_transition": 2388, "node_type": "S", "subcondition": 23, "parent": null}}, {"model": "template.logicnode", "pk": 8874, "fields": {"state_transition": 2389, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8875, "fields": {"state_transition": 2390, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8876, "fields": {"state_transition": 2391, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8877, "fields": {"state_transition": 2392, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8878, "fields": {"state_transition": 2393, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8879, "fields": {"state_transition": 2394, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8880, "fields": {"state_transition": 2395, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8881, "fields": {"state_transition": 2396, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8882, "fields": {"state_transition": 2397, "node_type": "T", "subcondition": null, "parent": null}}, {"model": "template.logicnode", "pk": 8883, "fields": {"state_transition": 2398, "node_type": "T", "subcondition": null, "parent": null}}] \ No newline at end of file