endoreg-db 0.8.8.0__py3-none-any.whl → 0.8.8.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of endoreg-db might be problematic. Click here for more details.
- endoreg_db/data/__init__.py +22 -8
- endoreg_db/data/ai_model_meta/default_multilabel_classification.yaml +0 -1
- endoreg_db/data/examination/examinations/data.yaml +114 -14
- endoreg_db/data/examination/time-type/data.yaml +0 -3
- endoreg_db/data/examination_indication/endoscopy.yaml +108 -173
- endoreg_db/data/examination_indication_classification/endoscopy.yaml +0 -70
- endoreg_db/data/examination_indication_classification_choice/endoscopy.yaml +33 -37
- endoreg_db/data/finding/00_generic.yaml +35 -0
- endoreg_db/data/finding/00_generic_complication.yaml +9 -0
- endoreg_db/data/finding/01_gastroscopy_baseline.yaml +88 -0
- endoreg_db/data/finding/01_gastroscopy_observation.yaml +113 -0
- endoreg_db/data/finding/02_colonoscopy_baseline.yaml +53 -0
- endoreg_db/data/finding/02_colonoscopy_hidden.yaml +119 -0
- endoreg_db/data/finding/02_colonoscopy_observation.yaml +152 -0
- endoreg_db/data/finding_classification/00_generic.yaml +44 -0
- endoreg_db/data/finding_classification/00_generic_histology.yaml +28 -0
- endoreg_db/data/finding_classification/00_generic_lesion.yaml +52 -0
- endoreg_db/data/finding_classification/{colonoscopy_bowel_preparation.yaml → 02_colonoscopy_baseline.yaml} +35 -20
- endoreg_db/data/finding_classification/02_colonoscopy_histology.yaml +13 -0
- endoreg_db/data/finding_classification/02_colonoscopy_other.yaml +12 -0
- endoreg_db/data/finding_classification/02_colonoscopy_polyp.yaml +101 -0
- endoreg_db/data/finding_classification_choice/{yes_no_na.yaml → 00_generic.yaml} +5 -1
- endoreg_db/data/finding_classification_choice/{examination_setting_generic_types.yaml → 00_generic_baseline.yaml} +10 -2
- endoreg_db/data/finding_classification_choice/{complication_generic_types.yaml → 00_generic_complication.yaml} +1 -1
- endoreg_db/data/finding_classification_choice/{histology.yaml → 00_generic_histology.yaml} +1 -4
- endoreg_db/data/finding_classification_choice/00_generic_lesion.yaml +158 -0
- endoreg_db/data/finding_classification_choice/{bowel_preparation.yaml → 02_colonoscopy_bowel_preparation.yaml} +1 -30
- endoreg_db/data/{_examples/finding_classification_choice/colonoscopy_not_complete_reason.yaml → finding_classification_choice/02_colonoscopy_generic.yaml} +1 -1
- endoreg_db/data/finding_classification_choice/{histology_polyp.yaml → 02_colonoscopy_histology.yaml} +1 -1
- endoreg_db/data/{_examples/finding_classification_choice/colonoscopy_location.yaml → finding_classification_choice/02_colonoscopy_location.yaml} +23 -4
- endoreg_db/data/finding_classification_choice/02_colonoscopy_other.yaml +34 -0
- endoreg_db/data/finding_classification_choice/02_colonoscopy_polyp_advanced_imaging.yaml +76 -0
- endoreg_db/data/{_examples/finding_classification_choice/colon_lesion_paris.yaml → finding_classification_choice/02_colonoscopy_polyp_morphology.yaml} +26 -8
- endoreg_db/data/finding_classification_choice/02_colonoscopy_size.yaml +27 -0
- endoreg_db/data/finding_classification_type/{colonoscopy_basic.yaml → 00_generic.yaml} +18 -13
- endoreg_db/data/finding_classification_type/02_colonoscopy.yaml +9 -0
- endoreg_db/data/finding_intervention/00_generic_endoscopy.yaml +59 -0
- endoreg_db/data/finding_intervention/00_generic_endoscopy_ablation.yaml +44 -0
- endoreg_db/data/finding_intervention/00_generic_endoscopy_bleeding.yaml +55 -0
- endoreg_db/data/finding_intervention/00_generic_endoscopy_resection.yaml +85 -0
- endoreg_db/data/finding_intervention/00_generic_endoscopy_stenosis.yaml +17 -0
- endoreg_db/data/finding_intervention/00_generic_endoscopy_stent.yaml +9 -0
- endoreg_db/data/finding_intervention/01_gastroscopy.yaml +19 -0
- endoreg_db/data/finding_intervention/04_eus.yaml +39 -0
- endoreg_db/data/finding_intervention/05_ercp.yaml +3 -0
- endoreg_db/data/finding_type/data.yaml +8 -12
- endoreg_db/data/requirement/01_patient_data.yaml +93 -0
- endoreg_db/data/requirement_operator/new_operators.yaml +36 -0
- endoreg_db/data/requirement_set/01_endoscopy_generic.yaml +0 -2
- endoreg_db/data/requirement_set/90_coloreg.yaml +20 -8
- endoreg_db/exceptions.py +0 -1
- endoreg_db/forms/examination_form.py +1 -1
- endoreg_db/helpers/data_loader.py +124 -52
- endoreg_db/helpers/default_objects.py +116 -81
- endoreg_db/import_files/__init__.py +27 -0
- endoreg_db/import_files/context/__init__.py +7 -0
- endoreg_db/import_files/context/default_sensitive_meta.py +81 -0
- endoreg_db/import_files/context/ensure_center.py +17 -0
- endoreg_db/import_files/context/file_lock.py +66 -0
- endoreg_db/import_files/context/import_context.py +43 -0
- endoreg_db/import_files/context/validate_directories.py +56 -0
- endoreg_db/import_files/file_storage/__init__.py +15 -0
- endoreg_db/import_files/file_storage/create_report_file.py +76 -0
- endoreg_db/import_files/file_storage/create_video_file.py +75 -0
- endoreg_db/import_files/file_storage/sensitive_meta_storage.py +39 -0
- endoreg_db/import_files/file_storage/state_management.py +400 -0
- endoreg_db/import_files/file_storage/storage.py +36 -0
- endoreg_db/import_files/import_service.md +26 -0
- endoreg_db/import_files/processing/__init__.py +11 -0
- endoreg_db/import_files/processing/report_processing/report_anonymization.py +94 -0
- endoreg_db/import_files/processing/sensitive_meta_adapter.py +51 -0
- endoreg_db/import_files/processing/video_processing/video_anonymization.py +107 -0
- endoreg_db/import_files/processing/video_processing/video_cleanup_on_error.py +119 -0
- endoreg_db/import_files/pseudonymization/fake.py +52 -0
- endoreg_db/import_files/pseudonymization/k_anonymity.py +182 -0
- endoreg_db/import_files/pseudonymization/k_pseudonymity.py +128 -0
- endoreg_db/import_files/report_import_service.py +141 -0
- endoreg_db/import_files/video_import_service.py +150 -0
- endoreg_db/management/commands/import_report.py +130 -65
- endoreg_db/management/commands/import_video_with_classification.py +1 -1
- endoreg_db/management/commands/load_ai_model_data.py +5 -5
- endoreg_db/management/commands/load_ai_model_label_data.py +9 -7
- endoreg_db/management/commands/load_base_db_data.py +5 -134
- endoreg_db/management/commands/load_contraindication_data.py +14 -16
- endoreg_db/management/commands/load_disease_classification_choices_data.py +15 -18
- endoreg_db/management/commands/load_disease_classification_data.py +15 -18
- endoreg_db/management/commands/load_disease_data.py +25 -28
- endoreg_db/management/commands/load_endoscope_data.py +20 -27
- endoreg_db/management/commands/load_event_data.py +14 -16
- endoreg_db/management/commands/load_examination_data.py +31 -44
- endoreg_db/management/commands/load_examination_indication_data.py +20 -21
- endoreg_db/management/commands/load_finding_data.py +52 -80
- endoreg_db/management/commands/load_information_source.py +21 -23
- endoreg_db/management/commands/load_lab_value_data.py +17 -26
- endoreg_db/management/commands/load_medication_data.py +13 -12
- endoreg_db/management/commands/load_organ_data.py +15 -19
- endoreg_db/management/commands/load_pdf_type_data.py +19 -18
- endoreg_db/management/commands/load_profession_data.py +14 -17
- endoreg_db/management/commands/load_qualification_data.py +20 -23
- endoreg_db/management/commands/load_report_reader_flag_data.py +17 -19
- endoreg_db/management/commands/load_requirement_data.py +14 -20
- endoreg_db/management/commands/load_risk_data.py +7 -6
- endoreg_db/management/commands/load_shift_data.py +20 -23
- endoreg_db/management/commands/load_tag_data.py +8 -11
- endoreg_db/management/commands/load_unit_data.py +17 -19
- endoreg_db/management/commands/start_filewatcher.py +46 -37
- endoreg_db/management/commands/validate_video_files.py +1 -5
- endoreg_db/migrations/0001_initial.py +1360 -1812
- endoreg_db/models/administration/person/patient/patient.py +72 -46
- endoreg_db/models/label/__init__.py +2 -2
- endoreg_db/models/label/annotation/video_segmentation_annotation.py +18 -26
- endoreg_db/models/label/label_video_segment/label_video_segment.py +23 -1
- endoreg_db/models/media/pdf/raw_pdf.py +136 -64
- endoreg_db/models/media/pdf/report_reader/report_reader_config.py +34 -10
- endoreg_db/models/media/processing_history/__init__.py +5 -0
- endoreg_db/models/media/processing_history/processing_history.py +96 -0
- endoreg_db/models/media/video/create_from_file.py +101 -31
- endoreg_db/models/media/video/video_file.py +125 -105
- endoreg_db/models/media/video/video_file_io.py +31 -26
- endoreg_db/models/medical/contraindication/README.md +1 -0
- endoreg_db/models/medical/examination/examination.py +28 -8
- endoreg_db/models/medical/examination/examination_indication.py +13 -79
- endoreg_db/models/medical/examination/examination_time.py +8 -3
- endoreg_db/models/medical/finding/finding.py +5 -12
- endoreg_db/models/medical/finding/finding_classification.py +18 -37
- endoreg_db/models/medical/finding/finding_intervention.py +7 -9
- endoreg_db/models/medical/hardware/endoscope.py +6 -0
- endoreg_db/models/medical/patient/medication_examples.py +5 -1
- endoreg_db/models/medical/patient/patient_finding.py +1 -1
- endoreg_db/models/metadata/pdf_meta.py +22 -10
- endoreg_db/models/metadata/sensitive_meta.py +3 -0
- endoreg_db/models/metadata/sensitive_meta_logic.py +200 -124
- endoreg_db/models/other/information_source.py +27 -6
- endoreg_db/models/report/__init__.py +0 -0
- endoreg_db/models/report/images.py +0 -0
- endoreg_db/models/report/report.py +6 -0
- endoreg_db/models/requirement/requirement.py +59 -399
- endoreg_db/models/requirement/requirement_operator.py +86 -98
- endoreg_db/models/state/audit_ledger.py +4 -5
- endoreg_db/models/state/raw_pdf.py +69 -30
- endoreg_db/models/state/video.py +64 -49
- endoreg_db/models/upload_job.py +33 -9
- endoreg_db/models/utils.py +27 -23
- endoreg_db/queries/__init__.py +3 -1
- endoreg_db/schemas/examination_evaluation.py +1 -1
- endoreg_db/serializers/__init__.py +2 -8
- endoreg_db/serializers/label_video_segment/label_video_segment.py +2 -29
- endoreg_db/serializers/meta/__init__.py +1 -6
- endoreg_db/serializers/misc/sensitive_patient_data.py +50 -26
- endoreg_db/serializers/patient_examination/patient_examination.py +3 -3
- endoreg_db/serializers/pdf/anony_text_validation.py +39 -23
- endoreg_db/serializers/video/video_file_list.py +65 -34
- endoreg_db/services/__old/pdf_import.py +1487 -0
- endoreg_db/services/__old/video_import.py +1306 -0
- endoreg_db/services/anonymization.py +63 -26
- endoreg_db/services/lookup_service.py +28 -28
- endoreg_db/services/lookup_store.py +2 -2
- endoreg_db/services/pdf_import.py +0 -1480
- endoreg_db/services/report_import.py +10 -0
- endoreg_db/services/video_import.py +6 -1165
- endoreg_db/tasks/upload_tasks.py +79 -70
- endoreg_db/tasks/video_ingest.py +8 -4
- endoreg_db/urls/__init__.py +0 -14
- endoreg_db/urls/ai.py +32 -0
- endoreg_db/urls/media.py +21 -24
- endoreg_db/utils/dataloader.py +87 -57
- endoreg_db/utils/paths.py +110 -46
- endoreg_db/utils/pipelines/Readme.md +1 -1
- endoreg_db/utils/requirement_operator_logic/new_operator_logic.py +97 -0
- endoreg_db/views/__init__.py +85 -173
- endoreg_db/views/ai/__init__.py +8 -0
- endoreg_db/views/ai/label.py +155 -0
- endoreg_db/views/anonymization/media_management.py +8 -7
- endoreg_db/views/anonymization/overview.py +97 -68
- endoreg_db/views/anonymization/validate.py +25 -21
- endoreg_db/views/media/__init__.py +5 -20
- endoreg_db/views/media/pdf_media.py +109 -65
- endoreg_db/views/media/sensitive_metadata.py +163 -148
- endoreg_db/views/meta/__init__.py +0 -8
- endoreg_db/views/misc/__init__.py +1 -7
- endoreg_db/views/misc/upload_views.py +94 -93
- endoreg_db/views/report/__init__.py +7 -0
- endoreg_db/views/{pdf → report}/reimport.py +45 -24
- endoreg_db/views/{pdf/pdf_stream.py → report/report_stream.py} +40 -32
- endoreg_db/views/requirement/lookup_store.py +22 -90
- endoreg_db/views/video/__init__.py +23 -22
- endoreg_db/views/video/correction.py +201 -172
- endoreg_db/views/video/reimport.py +1 -1
- endoreg_db/views/{media/video_segments.py → video/segments_crud.py} +75 -37
- endoreg_db/views/video/{video_meta.py → video_meta_stats.py} +2 -2
- endoreg_db/views/video/video_stream.py +7 -8
- {endoreg_db-0.8.8.0.dist-info → endoreg_db-0.8.8.9.dist-info}/METADATA +2 -2
- {endoreg_db-0.8.8.0.dist-info → endoreg_db-0.8.8.9.dist-info}/RECORD +217 -335
- {endoreg_db-0.8.8.0.dist-info → endoreg_db-0.8.8.9.dist-info}/WHEEL +1 -1
- endoreg_db/data/_examples/disease.yaml +0 -55
- endoreg_db/data/_examples/disease_classification.yaml +0 -13
- endoreg_db/data/_examples/disease_classification_choice.yaml +0 -62
- endoreg_db/data/_examples/event.yaml +0 -64
- endoreg_db/data/_examples/examination.yaml +0 -72
- endoreg_db/data/_examples/finding/anatomy_colon.yaml +0 -128
- endoreg_db/data/_examples/finding/colonoscopy.yaml +0 -40
- endoreg_db/data/_examples/finding/colonoscopy_bowel_prep.yaml +0 -56
- endoreg_db/data/_examples/finding/complication.yaml +0 -16
- endoreg_db/data/_examples/finding/data.yaml +0 -105
- endoreg_db/data/_examples/finding/examination_setting.yaml +0 -16
- endoreg_db/data/_examples/finding/medication_related.yaml +0 -18
- endoreg_db/data/_examples/finding/outcome.yaml +0 -12
- endoreg_db/data/_examples/finding_classification/colonoscopy_bowel_preparation.yaml +0 -68
- endoreg_db/data/_examples/finding_classification/colonoscopy_jnet.yaml +0 -22
- endoreg_db/data/_examples/finding_classification/colonoscopy_kudo.yaml +0 -25
- endoreg_db/data/_examples/finding_classification/colonoscopy_lesion_circularity.yaml +0 -20
- endoreg_db/data/_examples/finding_classification/colonoscopy_lesion_planarity.yaml +0 -24
- endoreg_db/data/_examples/finding_classification/colonoscopy_lesion_size.yaml +0 -68
- endoreg_db/data/_examples/finding_classification/colonoscopy_lesion_surface.yaml +0 -20
- endoreg_db/data/_examples/finding_classification/colonoscopy_location.yaml +0 -80
- endoreg_db/data/_examples/finding_classification/colonoscopy_lst.yaml +0 -21
- endoreg_db/data/_examples/finding_classification/colonoscopy_nice.yaml +0 -20
- endoreg_db/data/_examples/finding_classification/colonoscopy_paris.yaml +0 -26
- endoreg_db/data/_examples/finding_classification/colonoscopy_sano.yaml +0 -22
- endoreg_db/data/_examples/finding_classification/colonoscopy_summary.yaml +0 -53
- endoreg_db/data/_examples/finding_classification/complication_generic.yaml +0 -25
- endoreg_db/data/_examples/finding_classification/examination_setting_generic.yaml +0 -40
- endoreg_db/data/_examples/finding_classification/histology_colo.yaml +0 -51
- endoreg_db/data/_examples/finding_classification/intervention_required.yaml +0 -26
- endoreg_db/data/_examples/finding_classification/medication_related.yaml +0 -23
- endoreg_db/data/_examples/finding_classification/visualized.yaml +0 -33
- endoreg_db/data/_examples/finding_classification_choice/bowel_preparation.yaml +0 -78
- endoreg_db/data/_examples/finding_classification_choice/colon_lesion_circularity_default.yaml +0 -32
- endoreg_db/data/_examples/finding_classification_choice/colon_lesion_jnet.yaml +0 -15
- endoreg_db/data/_examples/finding_classification_choice/colon_lesion_kudo.yaml +0 -23
- endoreg_db/data/_examples/finding_classification_choice/colon_lesion_lst.yaml +0 -15
- endoreg_db/data/_examples/finding_classification_choice/colon_lesion_nice.yaml +0 -17
- endoreg_db/data/_examples/finding_classification_choice/colon_lesion_planarity_default.yaml +0 -49
- endoreg_db/data/_examples/finding_classification_choice/colon_lesion_sano.yaml +0 -14
- endoreg_db/data/_examples/finding_classification_choice/colon_lesion_surface_intact_default.yaml +0 -36
- endoreg_db/data/_examples/finding_classification_choice/colonoscopy_size.yaml +0 -82
- endoreg_db/data/_examples/finding_classification_choice/colonoscopy_summary_worst_finding.yaml +0 -15
- endoreg_db/data/_examples/finding_classification_choice/complication_generic_types.yaml +0 -15
- endoreg_db/data/_examples/finding_classification_choice/examination_setting_generic_types.yaml +0 -15
- endoreg_db/data/_examples/finding_classification_choice/histology.yaml +0 -24
- endoreg_db/data/_examples/finding_classification_choice/histology_polyp.yaml +0 -20
- endoreg_db/data/_examples/finding_classification_choice/outcome.yaml +0 -19
- endoreg_db/data/_examples/finding_classification_choice/yes_no_na.yaml +0 -11
- endoreg_db/data/_examples/finding_classification_type/colonoscopy_basic.yaml +0 -48
- endoreg_db/data/_examples/finding_intervention/endoscopy.yaml +0 -43
- endoreg_db/data/_examples/finding_intervention/endoscopy_colonoscopy.yaml +0 -168
- endoreg_db/data/_examples/finding_intervention/endoscopy_egd.yaml +0 -128
- endoreg_db/data/_examples/finding_intervention/endoscopy_ercp.yaml +0 -32
- endoreg_db/data/_examples/finding_intervention/endoscopy_eus_lower.yaml +0 -9
- endoreg_db/data/_examples/finding_intervention/endoscopy_eus_upper.yaml +0 -36
- endoreg_db/data/_examples/finding_intervention_type/endoscopy.yaml +0 -15
- endoreg_db/data/_examples/finding_type/data.yaml +0 -43
- endoreg_db/data/_examples/requirement/age.yaml +0 -26
- endoreg_db/data/_examples/requirement/gender.yaml +0 -25
- endoreg_db/data/_examples/requirement_set/01_endoscopy_generic.yaml +0 -48
- endoreg_db/data/_examples/requirement_set/colonoscopy_austria_screening.yaml +0 -57
- endoreg_db/data/_examples/requirement_set/endoscopy_bleeding_risk.yaml +0 -52
- endoreg_db/data/_examples/yaml_examples.xlsx +0 -0
- endoreg_db/data/finding/anatomy_colon.yaml +0 -128
- endoreg_db/data/finding/colonoscopy.yaml +0 -40
- endoreg_db/data/finding/colonoscopy_bowel_prep.yaml +0 -56
- endoreg_db/data/finding/complication.yaml +0 -16
- endoreg_db/data/finding/data.yaml +0 -105
- endoreg_db/data/finding/examination_setting.yaml +0 -16
- endoreg_db/data/finding/medication_related.yaml +0 -18
- endoreg_db/data/finding/outcome.yaml +0 -12
- endoreg_db/data/finding_classification/colonoscopy_jnet.yaml +0 -22
- endoreg_db/data/finding_classification/colonoscopy_kudo.yaml +0 -25
- endoreg_db/data/finding_classification/colonoscopy_lesion_circularity.yaml +0 -20
- endoreg_db/data/finding_classification/colonoscopy_lesion_planarity.yaml +0 -24
- endoreg_db/data/finding_classification/colonoscopy_lesion_size.yaml +0 -38
- endoreg_db/data/finding_classification/colonoscopy_lesion_surface.yaml +0 -20
- endoreg_db/data/finding_classification/colonoscopy_location.yaml +0 -49
- endoreg_db/data/finding_classification/colonoscopy_lst.yaml +0 -21
- endoreg_db/data/finding_classification/colonoscopy_nice.yaml +0 -20
- endoreg_db/data/finding_classification/colonoscopy_paris.yaml +0 -26
- endoreg_db/data/finding_classification/colonoscopy_sano.yaml +0 -22
- endoreg_db/data/finding_classification/colonoscopy_summary.yaml +0 -53
- endoreg_db/data/finding_classification/complication_generic.yaml +0 -25
- endoreg_db/data/finding_classification/examination_setting_generic.yaml +0 -40
- endoreg_db/data/finding_classification/histology_colo.yaml +0 -43
- endoreg_db/data/finding_classification/intervention_required.yaml +0 -26
- endoreg_db/data/finding_classification/medication_related.yaml +0 -23
- endoreg_db/data/finding_classification/visualized.yaml +0 -33
- endoreg_db/data/finding_classification_choice/colon_lesion_circularity_default.yaml +0 -32
- endoreg_db/data/finding_classification_choice/colon_lesion_jnet.yaml +0 -15
- endoreg_db/data/finding_classification_choice/colon_lesion_kudo.yaml +0 -23
- endoreg_db/data/finding_classification_choice/colon_lesion_lst.yaml +0 -15
- endoreg_db/data/finding_classification_choice/colon_lesion_nice.yaml +0 -17
- endoreg_db/data/finding_classification_choice/colon_lesion_paris.yaml +0 -57
- endoreg_db/data/finding_classification_choice/colon_lesion_planarity_default.yaml +0 -49
- endoreg_db/data/finding_classification_choice/colon_lesion_sano.yaml +0 -14
- endoreg_db/data/finding_classification_choice/colon_lesion_surface_intact_default.yaml +0 -36
- endoreg_db/data/finding_classification_choice/colonoscopy_location.yaml +0 -229
- endoreg_db/data/finding_classification_choice/colonoscopy_not_complete_reason.yaml +0 -19
- endoreg_db/data/finding_classification_choice/colonoscopy_size.yaml +0 -82
- endoreg_db/data/finding_classification_choice/colonoscopy_summary_worst_finding.yaml +0 -15
- endoreg_db/data/finding_classification_choice/outcome.yaml +0 -19
- endoreg_db/data/finding_intervention/endoscopy.yaml +0 -43
- endoreg_db/data/finding_intervention/endoscopy_colonoscopy.yaml +0 -168
- endoreg_db/data/finding_intervention/endoscopy_egd.yaml +0 -128
- endoreg_db/data/finding_intervention/endoscopy_ercp.yaml +0 -32
- endoreg_db/data/finding_intervention/endoscopy_eus_lower.yaml +0 -9
- endoreg_db/data/finding_intervention/endoscopy_eus_upper.yaml +0 -36
- endoreg_db/data/finding_morphology_classification_type/colonoscopy.yaml +0 -79
- endoreg_db/data/requirement/age.yaml +0 -26
- endoreg_db/data/requirement/colonoscopy_baseline_austria.yaml +0 -45
- endoreg_db/data/requirement/disease_cardiovascular.yaml +0 -79
- endoreg_db/data/requirement/disease_classification_choice_cardiovascular.yaml +0 -41
- endoreg_db/data/requirement/disease_hepatology.yaml +0 -12
- endoreg_db/data/requirement/disease_misc.yaml +0 -12
- endoreg_db/data/requirement/disease_renal.yaml +0 -96
- endoreg_db/data/requirement/endoscopy_bleeding_risk.yaml +0 -59
- endoreg_db/data/requirement/event_cardiology.yaml +0 -251
- endoreg_db/data/requirement/event_requirements.yaml +0 -145
- endoreg_db/data/requirement/finding_colon_polyp.yaml +0 -50
- endoreg_db/data/requirement/gender.yaml +0 -25
- endoreg_db/data/requirement/lab_value.yaml +0 -441
- endoreg_db/data/requirement/medication.yaml +0 -93
- endoreg_db/data/requirement_operator/age.yaml +0 -13
- endoreg_db/data/requirement_operator/lab_operators.yaml +0 -129
- endoreg_db/data/requirement_operator/model_operators.yaml +0 -96
- endoreg_db/management/commands/init_default_ai_model.py +0 -112
- endoreg_db/management/commands/reset_celery_schedule.py +0 -9
- endoreg_db/management/commands/validate_video.py +0 -204
- endoreg_db/migrations/0002_requirementset_depends_on.py +0 -18
- endoreg_db/migrations/_old/0001_initial.py +0 -1857
- endoreg_db/migrations/_old/0002_add_video_correction_models.py +0 -52
- endoreg_db/migrations/_old/0003_add_center_display_name.py +0 -30
- endoreg_db/migrations/_old/0004_employee_city_employee_post_code_employee_street_and_more.py +0 -68
- endoreg_db/migrations/_old/0004_remove_casetemplate_rules_and_more.py +0 -77
- endoreg_db/migrations/_old/0005_merge_20251111_1003.py +0 -14
- endoreg_db/migrations/_old/0006_sensitivemeta_anonymized_text_and_more.py +0 -68
- endoreg_db/migrations/_old/0007_remove_rule_attribute_dtype_remove_rule_rule_type_and_more.py +0 -89
- endoreg_db/migrations/_old/0008_remove_event_event_classification_and_more.py +0 -27
- endoreg_db/migrations/_old/0009_alter_modelmeta_options_and_more.py +0 -21
- endoreg_db/renames.yml +0 -8
- endoreg_db/serializers/_old/raw_pdf_meta_validation.py +0 -223
- endoreg_db/serializers/_old/raw_video_meta_validation.py +0 -179
- endoreg_db/serializers/_old/video.py +0 -71
- endoreg_db/serializers/meta/pdf_file_meta_extraction.py +0 -115
- endoreg_db/serializers/meta/report_meta.py +0 -53
- endoreg_db/serializers/report/__init__.py +0 -9
- endoreg_db/serializers/report/mixins.py +0 -45
- endoreg_db/serializers/report/report.py +0 -105
- endoreg_db/serializers/report/report_list.py +0 -22
- endoreg_db/serializers/report/secure_file_url.py +0 -26
- endoreg_db/services/requirements_object.py +0 -147
- endoreg_db/services/storage_aware_video_processor.py +0 -370
- endoreg_db/urls/files.py +0 -6
- endoreg_db/urls/label_video_segment_validate.py +0 -33
- endoreg_db/urls/label_video_segments.py +0 -46
- endoreg_db/views/label/__init__.py +0 -5
- endoreg_db/views/label/label.py +0 -15
- endoreg_db/views/label_video_segment/__init__.py +0 -16
- endoreg_db/views/label_video_segment/create_lvs_from_annotation.py +0 -44
- endoreg_db/views/label_video_segment/get_lvs_by_name_and_video.py +0 -50
- endoreg_db/views/label_video_segment/label_video_segment.py +0 -77
- endoreg_db/views/label_video_segment/label_video_segment_by_label.py +0 -174
- endoreg_db/views/label_video_segment/label_video_segment_detail.py +0 -73
- endoreg_db/views/label_video_segment/update_lvs_from_annotation.py +0 -46
- endoreg_db/views/label_video_segment/validate.py +0 -226
- endoreg_db/views/media/segments.py +0 -71
- endoreg_db/views/meta/available_files_list.py +0 -146
- endoreg_db/views/meta/report_meta.py +0 -53
- endoreg_db/views/meta/sensitive_meta_detail.py +0 -85
- endoreg_db/views/misc/secure_file_serving_view.py +0 -80
- endoreg_db/views/misc/secure_file_url_view.py +0 -84
- endoreg_db/views/misc/secure_url_validate.py +0 -79
- endoreg_db/views/patient_examination/DEPRECATED_video_backup.py +0 -164
- endoreg_db/views/patient_finding_location/__init__.py +0 -5
- endoreg_db/views/patient_finding_location/pfl_create.py +0 -70
- endoreg_db/views/patient_finding_morphology/__init__.py +0 -5
- endoreg_db/views/patient_finding_morphology/pfm_create.py +0 -70
- endoreg_db/views/pdf/__init__.py +0 -8
- endoreg_db/views/video/segmentation.py +0 -274
- endoreg_db/views/video/task_status.py +0 -49
- endoreg_db/views/video/timeline.py +0 -46
- endoreg_db/views/video/video_analyze.py +0 -52
- /endoreg_db/data/requirement/{colon_polyp_intervention.yaml → old/colon_polyp_intervention.yaml} +0 -0
- /endoreg_db/data/{_examples/requirement → requirement/old}/colonoscopy_baseline_austria.yaml +0 -0
- /endoreg_db/data/requirement/{coloreg_colon_polyp.yaml → old/coloreg_colon_polyp.yaml} +0 -0
- /endoreg_db/data/{_examples/requirement → requirement/old}/disease_cardiovascular.yaml +0 -0
- /endoreg_db/data/{_examples/requirement → requirement/old}/disease_classification_choice_cardiovascular.yaml +0 -0
- /endoreg_db/data/{_examples/requirement → requirement/old}/disease_hepatology.yaml +0 -0
- /endoreg_db/data/{_examples/requirement → requirement/old}/disease_misc.yaml +0 -0
- /endoreg_db/data/{_examples/requirement → requirement/old}/disease_renal.yaml +0 -0
- /endoreg_db/data/{_examples/requirement → requirement/old}/endoscopy_bleeding_risk.yaml +0 -0
- /endoreg_db/data/{_examples/requirement → requirement/old}/event_cardiology.yaml +0 -0
- /endoreg_db/data/{_examples/requirement → requirement/old}/event_requirements.yaml +0 -0
- /endoreg_db/data/{_examples/requirement → requirement/old}/finding_colon_polyp.yaml +0 -0
- /endoreg_db/{migrations/__init__.py → data/requirement/old/gender.yaml} +0 -0
- /endoreg_db/data/{_examples/requirement → requirement/old}/lab_value.yaml +0 -0
- /endoreg_db/data/{_examples/requirement → requirement/old}/medication.yaml +0 -0
- /endoreg_db/data/{_examples/requirement_operator → requirement_operator/_old}/age.yaml +0 -0
- /endoreg_db/data/{_examples/requirement_operator → requirement_operator/_old}/lab_operators.yaml +0 -0
- /endoreg_db/data/{_examples/requirement_operator → requirement_operator/_old}/model_operators.yaml +0 -0
- /endoreg_db/{urls/sensitive_meta.py → import_files/pseudonymization/__init__.py} +0 -0
- /endoreg_db/{views/pdf/pdf_stream_views.py → import_files/pseudonymization/pseudonymize.py} +0 -0
- /endoreg_db/utils/requirement_operator_logic/{lab_value_operators.py → _old/lab_value_operators.py} +0 -0
- /endoreg_db/utils/requirement_operator_logic/{model_evaluators.py → _old/model_evaluators.py} +0 -0
- {endoreg_db-0.8.8.0.dist-info → endoreg_db-0.8.8.9.dist-info}/licenses/LICENSE +0 -0
|
@@ -2,9 +2,8 @@ endoreg_db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
2
2
|
endoreg_db/admin.py,sha256=QAqwli6WPIAu9VGteHAOx0ndvFH6ofgapVyVXC1dUXw,3719
|
|
3
3
|
endoreg_db/api_urls.py,sha256=k-JjENY5Rghz-xCXEp2fTcmVzoWUzuKRmdPK1B_LPLY,183
|
|
4
4
|
endoreg_db/apps.py,sha256=LXJ-CksxHy2ecMPjBOprhuJdFtEwU-t4X7LyaR36tAs,577
|
|
5
|
-
endoreg_db/exceptions.py,sha256=
|
|
5
|
+
endoreg_db/exceptions.py,sha256=bf5tJsZ2FMQmUEiPSkJkKWpmkiXdHCVcAr6lQ1mlr_k,575
|
|
6
6
|
endoreg_db/logger_conf.py,sha256=RDFq8WoHxkKDXPC4Q5zlRyCvBR1VQ5Hm9r2B7os9MuI,5618
|
|
7
|
-
endoreg_db/renames.yml,sha256=28v7v5W6hcN1xYdjDSJjeW-6-rJEK6w9GeD-eXoqJQ0,193
|
|
8
7
|
endoreg_db/root_urls.py,sha256=vjoEGj7nMh6_EcxObXVhJrguCQdP4Wau0xyMCaNAANU,1037
|
|
9
8
|
endoreg_db/urls.py,sha256=Bog2gEOtMKPiHruNKH7aOC7ggfg-E28dl94qhEDE7jg,300
|
|
10
9
|
endoreg_db/api/serializers/finding_descriptions.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -21,99 +20,17 @@ endoreg_db/codemods/readme.md,sha256=mVOAevESOuN0WSTMI3tJPbuuGE3ROASp9s21bpf-LOs
|
|
|
21
20
|
endoreg_db/codemods/rename_datetime_fields.py,sha256=ulLfte1erPrde2ovOHXT9qubitPceu_JT9uCkxLlKc4,2900
|
|
22
21
|
endoreg_db/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
22
|
endoreg_db/config/env.py,sha256=9uMRrD9BWZnlKeUqqidVx0JRuD5SdxwGpRf0kv0uaA4,2690
|
|
24
|
-
endoreg_db/data/__init__.py,sha256=
|
|
23
|
+
endoreg_db/data/__init__.py,sha256=wjJs6ISilF5AE6qWIhecREIJQrTWGQzVaq7m7cnJk2w,5443
|
|
25
24
|
endoreg_db/data/db_summary.csv,sha256=K4PcufVHQ64H1i2MbCShMxReEa96I8cL6IfwCVpqF2M,1225
|
|
26
25
|
endoreg_db/data/db_summary.xlsx,sha256=pwsc_IcxNETNrYjDXjpSW83b8f-WsSunRDiJLZXENZ0,5829
|
|
27
26
|
endoreg_db/data/setup_config.yaml,sha256=OavnU5KtaL2oIvysFTbi_sJvpPoVnDexw6MFH-lpg8o,1329
|
|
28
|
-
endoreg_db/data/_examples/disease.yaml,sha256=oRUcwM8lgVtxZZkf0JDEuKjwDeghndZMqQqQV8BrnmA,1416
|
|
29
|
-
endoreg_db/data/_examples/disease_classification.yaml,sha256=c2KLmQfvV7TFNE3qBmvk0_jlUaQTKTqZMIo_KMPfl4c,501
|
|
30
|
-
endoreg_db/data/_examples/disease_classification_choice.yaml,sha256=pJ_PhmLTbQ4eidRTCDuJOV9yYiO7fjNIHgroJMOWa20,2420
|
|
31
|
-
endoreg_db/data/_examples/event.yaml,sha256=zdRJpPnxBDs05rLfAVqA1iU0dxO8aiOt2hyZ-feEzOM,1738
|
|
32
|
-
endoreg_db/data/_examples/examination.yaml,sha256=eHH5uJb194Q3XHJdWeGL7NkzH9uHETG2uHBqNFzPXTE,2018
|
|
33
|
-
endoreg_db/data/_examples/yaml_examples.xlsx,sha256=S21eXBZDGlDHSkLD2gQkqq1G1X2FVagEHzDwl0QNabU,41561
|
|
34
|
-
endoreg_db/data/_examples/finding/anatomy_colon.yaml,sha256=f-bP7lKv-xtus3MuvlKLwqCLPqYflAiWKuwVY1QaeUw,3046
|
|
35
|
-
endoreg_db/data/_examples/finding/colonoscopy.yaml,sha256=tikMC8hqdSnCLZU2byrxVvDpieuRk3gTjzTlNGeKlpY,991
|
|
36
|
-
endoreg_db/data/_examples/finding/colonoscopy_bowel_prep.yaml,sha256=TD7wcLS8fXV4M7G-kHwC7H9sgwe1-_Nbm_1P-Cza5wM,1241
|
|
37
|
-
endoreg_db/data/_examples/finding/complication.yaml,sha256=7Yne6T1BsBfzzq1gl0gEbIo9VkM3gg2Zc9Yoh_Nwp-I,397
|
|
38
|
-
endoreg_db/data/_examples/finding/data.yaml,sha256=IKlshK4yatKXbvLOdCXZz38Nk4_vgtRwix8dR4ZZxds,2288
|
|
39
|
-
endoreg_db/data/_examples/finding/examination_setting.yaml,sha256=1dEBlPcd4SK5Epbac9jGqLSwtj8jVZw71okl3b3VvgM,399
|
|
40
|
-
endoreg_db/data/_examples/finding/medication_related.yaml,sha256=OctG4dPoh3bEro-NkfxR5zatkiV0JcC9vPSq1jQmibg,474
|
|
41
|
-
endoreg_db/data/_examples/finding/outcome.yaml,sha256=CvVnrZpQuSe3OPVGDVNGAarBNevL7I9A2dhyns4MQYY,277
|
|
42
|
-
endoreg_db/data/_examples/finding_classification/colonoscopy_bowel_preparation.yaml,sha256=8CEjw7GTgB07NN9gVT8duvDsPICeojkrn9NsaOY_60Q,2025
|
|
43
|
-
endoreg_db/data/_examples/finding_classification/colonoscopy_jnet.yaml,sha256=KQsZd-sh-mq-9F9YPboethMra-RUaJWNEs9w8YTirtA,478
|
|
44
|
-
endoreg_db/data/_examples/finding_classification/colonoscopy_kudo.yaml,sha256=tUat3iMjxsmnVYgZWYQZUr0zGP-LbHEoxq3AZ6t6X-k,599
|
|
45
|
-
endoreg_db/data/_examples/finding_classification/colonoscopy_lesion_circularity.yaml,sha256=o5V1rzYZDgQ6x1kaCDI715SxgWcJUf4Y9dtcTI3hiAs,463
|
|
46
|
-
endoreg_db/data/_examples/finding_classification/colonoscopy_lesion_planarity.yaml,sha256=mCYLYa1rSvA9Vo5ZG4azuoe4-ZMt_iDVn2FVHN6mdMU,650
|
|
47
|
-
endoreg_db/data/_examples/finding_classification/colonoscopy_lesion_size.yaml,sha256=mjJP9--OpwbHAF3SzyAyNJcqfzc1rIORfOe_fOZ5I7o,1668
|
|
48
|
-
endoreg_db/data/_examples/finding_classification/colonoscopy_lesion_surface.yaml,sha256=nCdncYjeQbdDEHuL6waOEXY_zJa-VCkTz30vpDhGE9w,520
|
|
49
|
-
endoreg_db/data/_examples/finding_classification/colonoscopy_location.yaml,sha256=pUqE9tFL1PPihoSaROKqtn-DRRm3vVEnBfgm_rGILvY,1601
|
|
50
|
-
endoreg_db/data/_examples/finding_classification/colonoscopy_lst.yaml,sha256=ER87WKIB0eb18VCSsuqZtIGbF1IFMFKC1bF5AjliTlw,582
|
|
51
|
-
endoreg_db/data/_examples/finding_classification/colonoscopy_nice.yaml,sha256=DTQXCBJ7xoDLi11Wlqb9Ukokm0uxMt3gkf_HE4vplcM,455
|
|
52
|
-
endoreg_db/data/_examples/finding_classification/colonoscopy_paris.yaml,sha256=7Ez19HVbiHUjTppgt2GmfjJTnm3jGhUsW5ETfSRkMvg,656
|
|
53
|
-
endoreg_db/data/_examples/finding_classification/colonoscopy_sano.yaml,sha256=Ad5mlffKIpDtHME40eLmOiNMofmZc1qvBzUgSSNa-0I,511
|
|
54
|
-
endoreg_db/data/_examples/finding_classification/colonoscopy_summary.yaml,sha256=qr8-YnE_5YkG1iPGIISxHGetbm2Z8uugSVG6Nvk8-yI,1406
|
|
55
|
-
endoreg_db/data/_examples/finding_classification/complication_generic.yaml,sha256=ekb0LeFZDE-kzQk8E6HqYLv_rfjSn0GFmYDqKcllrUw,668
|
|
56
|
-
endoreg_db/data/_examples/finding_classification/examination_setting_generic.yaml,sha256=8WbeRWdTwT56hoyw3KU5qhNMsTvJWssW_wAFI_07dCo,1057
|
|
57
|
-
endoreg_db/data/_examples/finding_classification/histology_colo.yaml,sha256=eAF0KETxNqRTLfPEKe9qUO2Fzlny3bgjy9JS8Qbsw5Y,1232
|
|
58
|
-
endoreg_db/data/_examples/finding_classification/intervention_required.yaml,sha256=dC5CggE2pqUbMVMsBujmSU4qkm8NZrTCD0FdGJBv-jc,552
|
|
59
|
-
endoreg_db/data/_examples/finding_classification/medication_related.yaml,sha256=TUF8VxO467VVfGhu6LOzajbRNoQ5WwOkll-1NVes6lA,497
|
|
60
|
-
endoreg_db/data/_examples/finding_classification/visualized.yaml,sha256=ROEEmHYbXYqGW-h34iI0p_EWHbSCCO_TG67TO4hS1ko,717
|
|
61
|
-
endoreg_db/data/_examples/finding_classification_choice/bowel_preparation.yaml,sha256=o6w-e3E4XtYPZ1qWrAZafCmlmiHWERDJDyIfOZgVvFE,2037
|
|
62
|
-
endoreg_db/data/_examples/finding_classification_choice/colon_lesion_circularity_default.yaml,sha256=EPwPMa5iqVCmqHpbSoDLB4L1XvuHaa8VfSLfBdu_HOE,970
|
|
63
|
-
endoreg_db/data/_examples/finding_classification_choice/colon_lesion_jnet.yaml,sha256=ipWK3v_5FLyYxH_tEUds6TmNN8Rkgq4CIWAPW08HbHw,372
|
|
64
|
-
endoreg_db/data/_examples/finding_classification_choice/colon_lesion_kudo.yaml,sha256=BT7l4JK8tAEWpl3SO-HsZOeVzV0U5l-G3Odha6gcbHg,649
|
|
65
|
-
endoreg_db/data/_examples/finding_classification_choice/colon_lesion_lst.yaml,sha256=BJl_Q2SXYKsMUePJSucyVVX3h81NDU5ODVkJmx85sOQ,458
|
|
66
|
-
endoreg_db/data/_examples/finding_classification_choice/colon_lesion_nice.yaml,sha256=vM-v65h7ErdvQvHYepCQrnzIYv0vxlLmGpwj6MbWWno,541
|
|
67
|
-
endoreg_db/data/_examples/finding_classification_choice/colon_lesion_paris.yaml,sha256=9sntCRaxwjo_Synm32KO3IRHFQfzMjeE90GEpwGiK94,2371
|
|
68
|
-
endoreg_db/data/_examples/finding_classification_choice/colon_lesion_planarity_default.yaml,sha256=2sqI2g30ZnZrgORxeGQGAr1I00GvgE3gRDAsI4lH8T4,1793
|
|
69
|
-
endoreg_db/data/_examples/finding_classification_choice/colon_lesion_sano.yaml,sha256=eLUH9Wd9weYpmdAur8BMNqz099FBrQ494Sgg8rZf_M0,372
|
|
70
|
-
endoreg_db/data/_examples/finding_classification_choice/colon_lesion_surface_intact_default.yaml,sha256=EGIObwxMtofVGKSba5HiTX54mmBTix-l4ztmBOZ5TWw,1150
|
|
71
|
-
endoreg_db/data/_examples/finding_classification_choice/colonoscopy_location.yaml,sha256=u-JpKRBZhetN2h9UxTguQ0LnIeElmynEFV37hoC8saE,6275
|
|
72
|
-
endoreg_db/data/_examples/finding_classification_choice/colonoscopy_not_complete_reason.yaml,sha256=dMwS6d1BrDFEgTE3U0AZh0n5L92HF38jCoxlBGmkc4Y,536
|
|
73
|
-
endoreg_db/data/_examples/finding_classification_choice/colonoscopy_size.yaml,sha256=qu74XvHjjEHUiTmoA-df_WlQYZct8lCSIVCRXajuldc,3095
|
|
74
|
-
endoreg_db/data/_examples/finding_classification_choice/colonoscopy_summary_worst_finding.yaml,sha256=7x45Fd4r4IPMgs9Wz_vO84SLfOqxEmJhEusBF24IAZ4,434
|
|
75
|
-
endoreg_db/data/_examples/finding_classification_choice/complication_generic_types.yaml,sha256=cdDSlTzXcdYABVkERXzju3_pbZjKOaljCRJdeC6mAzI,439
|
|
76
|
-
endoreg_db/data/_examples/finding_classification_choice/examination_setting_generic_types.yaml,sha256=QLrW33AJ14Dfm72ouZFDdLMhLhIs4DhyUS2MS8K0C2U,448
|
|
77
|
-
endoreg_db/data/_examples/finding_classification_choice/histology.yaml,sha256=c728BW0rmT_DFoPqgG5SNYS0q3PkmLj0eoPUQq8gr5k,815
|
|
78
|
-
endoreg_db/data/_examples/finding_classification_choice/histology_polyp.yaml,sha256=1rDjHj3Ia9RSooa04SYQ--7f8zcQGhWtgMqGH0q8cMM,777
|
|
79
|
-
endoreg_db/data/_examples/finding_classification_choice/outcome.yaml,sha256=QYdaDLqldxEGMekvx2IgBY2_BNhC1bpARtl-lsgXwdw,546
|
|
80
|
-
endoreg_db/data/_examples/finding_classification_choice/yes_no_na.yaml,sha256=1JNZa_QVeR9R6T35xNzOvRsZtdhbCM_v8pfE97Dx7V8,227
|
|
81
|
-
endoreg_db/data/_examples/finding_classification_type/colonoscopy_basic.yaml,sha256=SYLFHfsBtnI5dqbCprPn9CD-fo-mZeok-cGMBifDQjY,1106
|
|
82
|
-
endoreg_db/data/_examples/finding_intervention/endoscopy.yaml,sha256=DqRBNvNzjvLI1DbfqjDAoGfDpgHtR2zLf_Sqoy7V0KQ,1390
|
|
83
|
-
endoreg_db/data/_examples/finding_intervention/endoscopy_colonoscopy.yaml,sha256=QCNwossX_G6-DUX3Z7b6MUpOugSoBmcVwlifP0McowU,6474
|
|
84
|
-
endoreg_db/data/_examples/finding_intervention/endoscopy_egd.yaml,sha256=DaE7OmKJ0um6WRYHSCOTLPVm80zaYloFovKxeLksle0,3535
|
|
85
|
-
endoreg_db/data/_examples/finding_intervention/endoscopy_ercp.yaml,sha256=PBBKpjiLM-7Wt8VtSrGesmZ7YSJt3iXDmE2QNYLu5og,797
|
|
86
|
-
endoreg_db/data/_examples/finding_intervention/endoscopy_eus_lower.yaml,sha256=bRnTKc2DdVX2aw-gRXe5bQhppkigO6SIHdqbRygeTtQ,275
|
|
87
|
-
endoreg_db/data/_examples/finding_intervention/endoscopy_eus_upper.yaml,sha256=U2i1-XarQR6dTm5fEs0o2AWRtrtJpRSgcMjHiS_Jtxw,1163
|
|
88
|
-
endoreg_db/data/_examples/finding_intervention_type/endoscopy.yaml,sha256=EnxIpRys8noMik2rUGQQG2zO0juZn75-k-4rVhD18ZY,319
|
|
89
|
-
endoreg_db/data/_examples/finding_type/data.yaml,sha256=ROGsNXtwc1Qq3SdRWww-t-TXVrZSoH9I5xrUzXXDedE,787
|
|
90
|
-
endoreg_db/data/_examples/requirement/age.yaml,sha256=NA9ltWnuz12fXY16irNZ6gLayrpKYfQePYO-h84n4FQ,735
|
|
91
|
-
endoreg_db/data/_examples/requirement/colonoscopy_baseline_austria.yaml,sha256=n_5hP9xoDr7jFWLE5M53r1ar5g5Rc6WI8mm4aK11_T8,1133
|
|
92
|
-
endoreg_db/data/_examples/requirement/disease_cardiovascular.yaml,sha256=5DsBiGQjcnVyEhRRqyZkjnJBqRaCUfXVW3OfkLOMLsw,2059
|
|
93
|
-
endoreg_db/data/_examples/requirement/disease_classification_choice_cardiovascular.yaml,sha256=10ejrlmzr53eGmTGRD2wrikuEfK3yPwxKFOgx3VshLk,1403
|
|
94
|
-
endoreg_db/data/_examples/requirement/disease_hepatology.yaml,sha256=DS6azOT3H-bSwghmv8fyPylHKkxN0gJ1BbVlchT2hWU,324
|
|
95
|
-
endoreg_db/data/_examples/requirement/disease_misc.yaml,sha256=qMvKSE1J8CPNlzCae5liQWNxDYxpERzlzHBKB6YQSp0,354
|
|
96
|
-
endoreg_db/data/_examples/requirement/disease_renal.yaml,sha256=1eiIMZQVt5i0dAvOEP1_1i5jvITRfeavZr62zwTPvVI,3472
|
|
97
|
-
endoreg_db/data/_examples/requirement/endoscopy_bleeding_risk.yaml,sha256=dhc0zqrnR6xkqrfZlb_fe-lYne2MNXaCmmagiAZhpkY,2054
|
|
98
|
-
endoreg_db/data/_examples/requirement/event_cardiology.yaml,sha256=7ss8PILhYtxQztmM7U61fd41tzCE7INqCE5bdDxgGXI,8574
|
|
99
|
-
endoreg_db/data/_examples/requirement/event_requirements.yaml,sha256=xDnJFKlQifDP0fLb3N5kbcOPocMcYUHQ_UjfRyXNDwA,5083
|
|
100
|
-
endoreg_db/data/_examples/requirement/finding_colon_polyp.yaml,sha256=I2rKRUij7tui6O-0dj_l-P54vYLD81V1tOdDMBJqLBU,1387
|
|
101
|
-
endoreg_db/data/_examples/requirement/gender.yaml,sha256=UMJG01PRRJOCQn7DjAxX3280ZDAsiioFGN1Vs1Q8t7c,615
|
|
102
|
-
endoreg_db/data/_examples/requirement/lab_value.yaml,sha256=sCLQ-VR6bYVFp_9q1_lH6vkIDIKMj6RapNvW-eWEEl4,15081
|
|
103
|
-
endoreg_db/data/_examples/requirement/medication.yaml,sha256=kJLiAkiRDgSWzU7AU1BFxtkQ5-gVEdinsGLqj07Eb3Y,3500
|
|
104
|
-
endoreg_db/data/_examples/requirement_operator/age.yaml,sha256=RHQ2o3RNnSrgDKKLL1wdbwhjV0iI03sD99B-5BEePks,535
|
|
105
|
-
endoreg_db/data/_examples/requirement_operator/lab_operators.yaml,sha256=0-XFEn0y_D-46f-6p6i21I2jUQFVFhsUaKA-03ORLTU,8105
|
|
106
|
-
endoreg_db/data/_examples/requirement_operator/model_operators.yaml,sha256=DjePXlQ8WV974-WqjTyX4B2lLSXdo0oNUX-_22G5yH4,5368
|
|
107
|
-
endoreg_db/data/_examples/requirement_set/01_endoscopy_generic.yaml,sha256=7IiXjD7NjrAqufXZxEmN7S0o7oxDcY9N08KTBVHG4nw,1509
|
|
108
|
-
endoreg_db/data/_examples/requirement_set/colonoscopy_austria_screening.yaml,sha256=p2KcbSgWJUVh2ZxDt_VD1Z3Tlep2xxgmiTGYvAhT1c4,2057
|
|
109
|
-
endoreg_db/data/_examples/requirement_set/endoscopy_bleeding_risk.yaml,sha256=htzOhSOBlLQKFJdf8HQBqiZ2diDuyYCT-omNiiMoY4Q,1878
|
|
110
27
|
endoreg_db/data/ai_model/data.yaml,sha256=9XIRMS_meioGu-vYY6zUvz4RUXhRLdalaHhCTdaq4nA,306
|
|
111
28
|
endoreg_db/data/ai_model_label/label/data.yaml,sha256=qkt0FfrLvPrcW_N0GUzu3q9TpiXrvZU047xAIOk_33A,1737
|
|
112
29
|
endoreg_db/data/ai_model_label/label/polyp_classification.yaml,sha256=lHx2VwwVgKzOM_3PcuHuSIStgvMK6rHVi3WP67Qjv70,936
|
|
113
30
|
endoreg_db/data/ai_model_label/label-set/data.yaml,sha256=ocaxnkqiZgwi4sY561TbP_DEQWkPG1hBZ3olwPOqiXQ,789
|
|
114
31
|
endoreg_db/data/ai_model_label/label-set/polyp_classifications.yaml,sha256=GVmctJCgnr2lPUMttgPThNXoLcUl4XpliiuSjvE6h_Q,443
|
|
115
32
|
endoreg_db/data/ai_model_label/label-type/data.yaml,sha256=vffKYpTae_gu63_wza6LONs5ys4pna1EbrUUO6CafQs,136
|
|
116
|
-
endoreg_db/data/ai_model_meta/default_multilabel_classification.yaml,sha256=
|
|
33
|
+
endoreg_db/data/ai_model_meta/default_multilabel_classification.yaml,sha256=H2YzFLNl0vVAwFY0Oc0cEyqQwy1H0-inoS3WHoPOmeA,1162
|
|
117
34
|
endoreg_db/data/ai_model_type/data.yaml,sha256=vCMMo8wiI5uL2zrQROmgsHq1GrC8IdagGIgNdQunUeQ,149
|
|
118
35
|
endoreg_db/data/ai_model_video_segmentation_label/base_segmentation.yaml,sha256=EZ83vq02Cf2KfflWQ4HEe1NHmuzSCsmKtWW5Bv8jet0,4060
|
|
119
36
|
endoreg_db/data/ai_model_video_segmentation_labelset/data.yaml,sha256=07uB1ousJVNpp8B9enJ_YIdZf3y4sBPlME4bZwDv6ho,404
|
|
@@ -160,71 +77,54 @@ endoreg_db/data/event/surgery.yaml,sha256=hyZWxg8LUNOwf3iybVj0Muta7pUdWhZXmLuuOh
|
|
|
160
77
|
endoreg_db/data/event/thrombembolism.yaml,sha256=TvpllrcpTV-kOxsttcPIxeRAZ1JKdoN_Nu0LSPatOZc,556
|
|
161
78
|
endoreg_db/data/event_classification/data.yaml,sha256=YejHg13_RWf1l18TxlVr0cdcQdCBv8Lls-_fuHMpXFY,112
|
|
162
79
|
endoreg_db/data/event_classification_choice/data.yaml,sha256=M2zPviPSW0R2KM-zC1tbUpVZ8dak_tPe52JqAAlvXGw,290
|
|
163
|
-
endoreg_db/data/examination/examinations/data.yaml,sha256=
|
|
80
|
+
endoreg_db/data/examination/examinations/data.yaml,sha256=NmbHNhbtfF7fzFyBcEzdAqhbHSGIAatYjSVoXyZl9I4,5102
|
|
164
81
|
endoreg_db/data/examination/time/data.yaml,sha256=YQ2VFpmNoUwDf4cCSx35hj46YG2_JeRm_t86RTodVsI,1010
|
|
165
|
-
endoreg_db/data/examination/time-type/data.yaml,sha256
|
|
82
|
+
endoreg_db/data/examination/time-type/data.yaml,sha256=EPFHoEX_H1m-u0beRaPcjQYv071rxfD-1VCk1YKKBWI,111
|
|
166
83
|
endoreg_db/data/examination/type/data.yaml,sha256=z5mkiC1-xBoX9s28zI8-rt73DcX4r2gBm0LP5i4CiyI,339
|
|
167
|
-
endoreg_db/data/examination_indication/endoscopy.yaml,sha256=
|
|
168
|
-
endoreg_db/data/examination_indication_classification/endoscopy.yaml,sha256=
|
|
169
|
-
endoreg_db/data/examination_indication_classification_choice/endoscopy.yaml,sha256=
|
|
84
|
+
endoreg_db/data/examination_indication/endoscopy.yaml,sha256=nHcGxjYu-n1wMR9_Vh6fWh_UXQuDup_hdkAfer3J_5g,13312
|
|
85
|
+
endoreg_db/data/examination_indication_classification/endoscopy.yaml,sha256=Ghtn6Yzq98cNGYU4mOmBH0_UhVcwD2OYlnFF_hVmY00,3078
|
|
86
|
+
endoreg_db/data/examination_indication_classification_choice/endoscopy.yaml,sha256=nWUbJkNUqaBQwdGiOxVMRae2IkSJde4dsjgh8nCe6IU,2908
|
|
170
87
|
endoreg_db/data/examination_requirement_set/colonoscopy.yaml,sha256=Mo_EnRSqsPfYfzDq_-pQFJeXvDiNgSzi_AmmrXdXnMQ,323
|
|
171
|
-
endoreg_db/data/finding/
|
|
172
|
-
endoreg_db/data/finding/
|
|
173
|
-
endoreg_db/data/finding/
|
|
174
|
-
endoreg_db/data/finding/
|
|
175
|
-
endoreg_db/data/finding/
|
|
176
|
-
endoreg_db/data/finding/
|
|
177
|
-
endoreg_db/data/finding/
|
|
178
|
-
endoreg_db/data/
|
|
179
|
-
endoreg_db/data/finding_classification/
|
|
180
|
-
endoreg_db/data/finding_classification/
|
|
181
|
-
endoreg_db/data/finding_classification/
|
|
182
|
-
endoreg_db/data/finding_classification/
|
|
183
|
-
endoreg_db/data/finding_classification/
|
|
184
|
-
endoreg_db/data/finding_classification/
|
|
185
|
-
endoreg_db/data/
|
|
186
|
-
endoreg_db/data/
|
|
187
|
-
endoreg_db/data/
|
|
188
|
-
endoreg_db/data/
|
|
189
|
-
endoreg_db/data/
|
|
190
|
-
endoreg_db/data/
|
|
191
|
-
endoreg_db/data/
|
|
192
|
-
endoreg_db/data/
|
|
193
|
-
endoreg_db/data/
|
|
194
|
-
endoreg_db/data/
|
|
195
|
-
endoreg_db/data/
|
|
196
|
-
endoreg_db/data/
|
|
197
|
-
endoreg_db/data/
|
|
198
|
-
endoreg_db/data/
|
|
199
|
-
endoreg_db/data/
|
|
200
|
-
endoreg_db/data/
|
|
201
|
-
endoreg_db/data/
|
|
202
|
-
endoreg_db/data/
|
|
203
|
-
endoreg_db/data/
|
|
204
|
-
endoreg_db/data/
|
|
205
|
-
endoreg_db/data/
|
|
206
|
-
endoreg_db/data/
|
|
207
|
-
endoreg_db/data/
|
|
208
|
-
endoreg_db/data/
|
|
209
|
-
endoreg_db/data/finding_classification_choice/colonoscopy_not_complete_reason.yaml,sha256=dMwS6d1BrDFEgTE3U0AZh0n5L92HF38jCoxlBGmkc4Y,536
|
|
210
|
-
endoreg_db/data/finding_classification_choice/colonoscopy_size.yaml,sha256=qu74XvHjjEHUiTmoA-df_WlQYZct8lCSIVCRXajuldc,3095
|
|
211
|
-
endoreg_db/data/finding_classification_choice/colonoscopy_summary_worst_finding.yaml,sha256=7x45Fd4r4IPMgs9Wz_vO84SLfOqxEmJhEusBF24IAZ4,434
|
|
212
|
-
endoreg_db/data/finding_classification_choice/complication_generic_types.yaml,sha256=cdDSlTzXcdYABVkERXzju3_pbZjKOaljCRJdeC6mAzI,439
|
|
213
|
-
endoreg_db/data/finding_classification_choice/examination_setting_generic_types.yaml,sha256=QLrW33AJ14Dfm72ouZFDdLMhLhIs4DhyUS2MS8K0C2U,448
|
|
214
|
-
endoreg_db/data/finding_classification_choice/histology.yaml,sha256=c728BW0rmT_DFoPqgG5SNYS0q3PkmLj0eoPUQq8gr5k,815
|
|
215
|
-
endoreg_db/data/finding_classification_choice/histology_polyp.yaml,sha256=1rDjHj3Ia9RSooa04SYQ--7f8zcQGhWtgMqGH0q8cMM,777
|
|
216
|
-
endoreg_db/data/finding_classification_choice/outcome.yaml,sha256=QYdaDLqldxEGMekvx2IgBY2_BNhC1bpARtl-lsgXwdw,546
|
|
217
|
-
endoreg_db/data/finding_classification_choice/yes_no_na.yaml,sha256=1JNZa_QVeR9R6T35xNzOvRsZtdhbCM_v8pfE97Dx7V8,227
|
|
218
|
-
endoreg_db/data/finding_classification_type/colonoscopy_basic.yaml,sha256=SYLFHfsBtnI5dqbCprPn9CD-fo-mZeok-cGMBifDQjY,1106
|
|
219
|
-
endoreg_db/data/finding_intervention/endoscopy.yaml,sha256=DqRBNvNzjvLI1DbfqjDAoGfDpgHtR2zLf_Sqoy7V0KQ,1390
|
|
220
|
-
endoreg_db/data/finding_intervention/endoscopy_colonoscopy.yaml,sha256=QCNwossX_G6-DUX3Z7b6MUpOugSoBmcVwlifP0McowU,6474
|
|
221
|
-
endoreg_db/data/finding_intervention/endoscopy_egd.yaml,sha256=DaE7OmKJ0um6WRYHSCOTLPVm80zaYloFovKxeLksle0,3535
|
|
222
|
-
endoreg_db/data/finding_intervention/endoscopy_ercp.yaml,sha256=PBBKpjiLM-7Wt8VtSrGesmZ7YSJt3iXDmE2QNYLu5og,797
|
|
223
|
-
endoreg_db/data/finding_intervention/endoscopy_eus_lower.yaml,sha256=bRnTKc2DdVX2aw-gRXe5bQhppkigO6SIHdqbRygeTtQ,275
|
|
224
|
-
endoreg_db/data/finding_intervention/endoscopy_eus_upper.yaml,sha256=U2i1-XarQR6dTm5fEs0o2AWRtrtJpRSgcMjHiS_Jtxw,1163
|
|
88
|
+
endoreg_db/data/finding/00_generic.yaml,sha256=3VJvfAidV_kr-QoI_Dh0F7TNlTDu0XLnZ8Nrw_int1M,1097
|
|
89
|
+
endoreg_db/data/finding/00_generic_complication.yaml,sha256=y_c1Ed5EIOpkajg10oIAbL9ZkLzL_iSK04_condAeeY,252
|
|
90
|
+
endoreg_db/data/finding/01_gastroscopy_baseline.yaml,sha256=Ar8GtgTVMHYioPzDdXEFL4QZTH24kRsA7848Xr-tuQ0,2217
|
|
91
|
+
endoreg_db/data/finding/01_gastroscopy_observation.yaml,sha256=s4fZneFZ4wkD7ino_wlRrdPr_TjKOb5TCR67i3En0Hk,2499
|
|
92
|
+
endoreg_db/data/finding/02_colonoscopy_baseline.yaml,sha256=pslQDHdtNtMGuAXVgW2sdA51gHCNWf0DLx-ZL1sEpNU,1646
|
|
93
|
+
endoreg_db/data/finding/02_colonoscopy_hidden.yaml,sha256=0O5LCvhp6zzgxy53eJiJtOZdra62K9zLYZsuDSF12yk,2617
|
|
94
|
+
endoreg_db/data/finding/02_colonoscopy_observation.yaml,sha256=mB-de5RPjS5UuBqpxlrnJE8in8EZpKnAaPbjbqvTEoY,3952
|
|
95
|
+
endoreg_db/data/finding_classification/00_generic.yaml,sha256=8HlxMBFykbVXWcckssLxGEWMeUZknfqBGlmSnk_QsNU,1151
|
|
96
|
+
endoreg_db/data/finding_classification/00_generic_histology.yaml,sha256=Qxa11CWG6jYHdQIAo-UyPvyQMWglSRIwBlFgKCsNSqU,678
|
|
97
|
+
endoreg_db/data/finding_classification/00_generic_lesion.yaml,sha256=LD-VTenycBNMUEarTcXssKtHQaGajuBMIvg2echYphQ,1516
|
|
98
|
+
endoreg_db/data/finding_classification/02_colonoscopy_baseline.yaml,sha256=tpxf2B-nZ3OrY_gMRzg1-hrnDEE4Gu6r_KNC9UboJLA,2260
|
|
99
|
+
endoreg_db/data/finding_classification/02_colonoscopy_histology.yaml,sha256=wiJAnMHEZ62e1NATKVB3U1e8qvdCSCmclBELa-PWi-0,405
|
|
100
|
+
endoreg_db/data/finding_classification/02_colonoscopy_other.yaml,sha256=EDsZZ56gaR3eHh2dZYLRDhdaFdpz_oTaWDKEu-qme-M,311
|
|
101
|
+
endoreg_db/data/finding_classification/02_colonoscopy_polyp.yaml,sha256=HTUpaioVX_pBAhtWOOrfEbHxG9ltF29SQevuDa-LY_Y,3292
|
|
102
|
+
endoreg_db/data/finding_classification_choice/00_generic.yaml,sha256=hAsRIvF3nH_9ngejamk7K75QwCZsE3wBJSyQ22OAMus,309
|
|
103
|
+
endoreg_db/data/finding_classification_choice/00_generic_baseline.yaml,sha256=_xxqLR16O9yfCoGd-PJA7o4yqD3Jo2lKEgF5-Fyhh7o,612
|
|
104
|
+
endoreg_db/data/finding_classification_choice/00_generic_complication.yaml,sha256=zd4-zH_4W_xHhgS4FAikEvaTZ4jnM7BLHotDWyWSd_8,440
|
|
105
|
+
endoreg_db/data/finding_classification_choice/00_generic_histology.yaml,sha256=gVtTJu2cr1rQ4qvNB2mx3OnaMhDSYpqo7lEGRJC3nWc,715
|
|
106
|
+
endoreg_db/data/finding_classification_choice/00_generic_lesion.yaml,sha256=rP85msm0JMI0QQGHHE2vmFflor04nW1keK1jWAOMxCk,4641
|
|
107
|
+
endoreg_db/data/finding_classification_choice/02_colonoscopy_bowel_preparation.yaml,sha256=-8Fj44SLKiabQXwhfhFNko1xeBSF2oeaetAbn7NHmHs,1172
|
|
108
|
+
endoreg_db/data/finding_classification_choice/02_colonoscopy_generic.yaml,sha256=vZKsQakhy7VrqDRGvu3yKT0id-Xwf9bDesFpXVAjAJA,537
|
|
109
|
+
endoreg_db/data/finding_classification_choice/02_colonoscopy_histology.yaml,sha256=6fRXcH0R7nEIsn6saYtQAr9zUW658wvGF5qDhTmdtLQ,778
|
|
110
|
+
endoreg_db/data/finding_classification_choice/02_colonoscopy_location.yaml,sha256=EbmHQrf1U2de9Jk1DF7KQ2wQaAAX64MrckbZuF1e5w8,6855
|
|
111
|
+
endoreg_db/data/finding_classification_choice/02_colonoscopy_other.yaml,sha256=RDTLmkMHJzExFs6tDhNAnX7JItJLBtd2ATj_JfqXOck,1044
|
|
112
|
+
endoreg_db/data/finding_classification_choice/02_colonoscopy_polyp_advanced_imaging.yaml,sha256=wqpQf4ga6AIK6kijGc5ymd4zyUzletnZwOfSyNQ_hGM,1968
|
|
113
|
+
endoreg_db/data/finding_classification_choice/02_colonoscopy_polyp_morphology.yaml,sha256=Pyyn5BAKEGY3mYxOtIjgr2czbgrULbyKwqSrj6ON2BE,2901
|
|
114
|
+
endoreg_db/data/finding_classification_choice/02_colonoscopy_size.yaml,sha256=GSfG0ZdU_QHzIqswR-wMr4Lya85s70zI1Zvxfsh1sbs,1098
|
|
115
|
+
endoreg_db/data/finding_classification_type/00_generic.yaml,sha256=WIMpDDFz3vZ2UQfeali9hmfngNBaDQ0NYNnP6TVnBkE,1158
|
|
116
|
+
endoreg_db/data/finding_classification_type/02_colonoscopy.yaml,sha256=LnHu7EF-VmaBKnhD0TJJqCikolrst6nSlTsnjOyBGUQ,258
|
|
117
|
+
endoreg_db/data/finding_intervention/00_generic_endoscopy.yaml,sha256=IyA7fNh2876EQ7KS9vqqfHNXLvZsC_VGIGctW0peNuI,2140
|
|
118
|
+
endoreg_db/data/finding_intervention/00_generic_endoscopy_ablation.yaml,sha256=HlQdFgnDg11m3VuD3czQa98k_eBvuIsDAoSBDlmFf0w,1549
|
|
119
|
+
endoreg_db/data/finding_intervention/00_generic_endoscopy_bleeding.yaml,sha256=zjR0lNiDfhBrhxAx6RzywTcsGF2E4kbfMFczO2h1MMg,1850
|
|
120
|
+
endoreg_db/data/finding_intervention/00_generic_endoscopy_resection.yaml,sha256=kb4RIq3PZMi0DxDygpsFiYSys6USeZBd-3SncW-Bh54,3496
|
|
121
|
+
endoreg_db/data/finding_intervention/00_generic_endoscopy_stenosis.yaml,sha256=7rw-E8_ZX2p7qaTW4-RjjRzVT4WTSV4IuPbaToebulI,495
|
|
122
|
+
endoreg_db/data/finding_intervention/00_generic_endoscopy_stent.yaml,sha256=1yYDdlXlDxdyjUzzNNVWvmVp5LfhfIqiWKrMoVjP0wo,269
|
|
123
|
+
endoreg_db/data/finding_intervention/01_gastroscopy.yaml,sha256=xWnqYvAvME1AKYjimrIrN6zNn7d7Gd-9Lzv5UbJmmJU,432
|
|
124
|
+
endoreg_db/data/finding_intervention/04_eus.yaml,sha256=Asxh4whTaJ8I2hrZGm1m32VH5m1LD9Eta2Z2V_qATKg,948
|
|
125
|
+
endoreg_db/data/finding_intervention/05_ercp.yaml,sha256=dYNB3a3RXwn3jWW9DmFTKthPECi8aD1May5KSSXuT-s,81
|
|
225
126
|
endoreg_db/data/finding_intervention_type/endoscopy.yaml,sha256=EnxIpRys8noMik2rUGQQG2zO0juZn75-k-4rVhD18ZY,319
|
|
226
|
-
endoreg_db/data/
|
|
227
|
-
endoreg_db/data/finding_type/data.yaml,sha256=ROGsNXtwc1Qq3SdRWww-t-TXVrZSoH9I5xrUzXXDedE,787
|
|
127
|
+
endoreg_db/data/finding_type/data.yaml,sha256=fOSR88HU0aW0OaW39qV4GknycUA6Q9lJO3TLAiBFn70,694
|
|
228
128
|
endoreg_db/data/gender/data.yaml,sha256=H4Y4NaPWIie2uFzaQXe-gDQeDTx2z9iB2w1-8-9dHdQ,890
|
|
229
129
|
endoreg_db/data/information_source/annotation.yaml,sha256=oFRCVh0jwsRtk0_pxkj8XEX0yKJLhR2LaPAVu3BsSPE,135
|
|
230
130
|
endoreg_db/data/information_source/data.yaml,sha256=ZJULuYMz7FzkKaC76hor6sCW_P43KoZ_ncEN0grjegk,765
|
|
@@ -277,29 +177,30 @@ endoreg_db/data/reference_product/green_endoscopy_dashboard_ReferenceProduct.yam
|
|
|
277
177
|
endoreg_db/data/report_reader_flag/rkh-histology-generic.yaml,sha256=Y9Zz02Qw-GZn3PY6p6smE_aNRNE8zENbUNUmGUenAVg,251
|
|
278
178
|
endoreg_db/data/report_reader_flag/ukw-examination-generic.yaml,sha256=1a_pvnDg-LztEyT5o13J6ukPCxx4wAQDaP0qowaRTJE,870
|
|
279
179
|
endoreg_db/data/report_reader_flag/ukw-histology-generic.yaml,sha256=q_sRCIjhFBmGMtbT_9Syl3OKXeICFrUyP0iTsFtzXAI,624
|
|
280
|
-
endoreg_db/data/requirement/
|
|
281
|
-
endoreg_db/data/requirement/colon_polyp_intervention.yaml,sha256=ziOMOBi5mrT9xHez0YVoi15jcfFR4WePCTg3MJuHJEw,1413
|
|
282
|
-
endoreg_db/data/requirement/colonoscopy_baseline_austria.yaml,sha256=n_5hP9xoDr7jFWLE5M53r1ar5g5Rc6WI8mm4aK11_T8,1133
|
|
283
|
-
endoreg_db/data/requirement/coloreg_colon_polyp.yaml,sha256=qgl4w6fhbpygNQmCu5WGA-B-H06-MupCMRc65SL0oZQ,1310
|
|
284
|
-
endoreg_db/data/requirement/disease_cardiovascular.yaml,sha256=5DsBiGQjcnVyEhRRqyZkjnJBqRaCUfXVW3OfkLOMLsw,2059
|
|
285
|
-
endoreg_db/data/requirement/disease_classification_choice_cardiovascular.yaml,sha256=10ejrlmzr53eGmTGRD2wrikuEfK3yPwxKFOgx3VshLk,1403
|
|
286
|
-
endoreg_db/data/requirement/disease_hepatology.yaml,sha256=DS6azOT3H-bSwghmv8fyPylHKkxN0gJ1BbVlchT2hWU,324
|
|
287
|
-
endoreg_db/data/requirement/disease_misc.yaml,sha256=qMvKSE1J8CPNlzCae5liQWNxDYxpERzlzHBKB6YQSp0,354
|
|
288
|
-
endoreg_db/data/requirement/disease_renal.yaml,sha256=1eiIMZQVt5i0dAvOEP1_1i5jvITRfeavZr62zwTPvVI,3472
|
|
289
|
-
endoreg_db/data/requirement/endoscopy_bleeding_risk.yaml,sha256=dhc0zqrnR6xkqrfZlb_fe-lYne2MNXaCmmagiAZhpkY,2054
|
|
290
|
-
endoreg_db/data/requirement/event_cardiology.yaml,sha256=7ss8PILhYtxQztmM7U61fd41tzCE7INqCE5bdDxgGXI,8574
|
|
291
|
-
endoreg_db/data/requirement/event_requirements.yaml,sha256=xDnJFKlQifDP0fLb3N5kbcOPocMcYUHQ_UjfRyXNDwA,5083
|
|
292
|
-
endoreg_db/data/requirement/finding_colon_polyp.yaml,sha256=I2rKRUij7tui6O-0dj_l-P54vYLD81V1tOdDMBJqLBU,1387
|
|
293
|
-
endoreg_db/data/requirement/gender.yaml,sha256=
|
|
294
|
-
endoreg_db/data/requirement/lab_value.yaml,sha256=sCLQ-VR6bYVFp_9q1_lH6vkIDIKMj6RapNvW-eWEEl4,15081
|
|
295
|
-
endoreg_db/data/requirement/medication.yaml,sha256=kJLiAkiRDgSWzU7AU1BFxtkQ5-gVEdinsGLqj07Eb3Y,3500
|
|
296
|
-
endoreg_db/data/requirement_operator/
|
|
297
|
-
endoreg_db/data/requirement_operator/
|
|
298
|
-
endoreg_db/data/requirement_operator/
|
|
299
|
-
endoreg_db/data/
|
|
180
|
+
endoreg_db/data/requirement/01_patient_data.yaml,sha256=QFxMiTyUVAXz5qjKm9KbZ9OWPyFNtbDK7w3S4CQZjlQ,3658
|
|
181
|
+
endoreg_db/data/requirement/old/colon_polyp_intervention.yaml,sha256=ziOMOBi5mrT9xHez0YVoi15jcfFR4WePCTg3MJuHJEw,1413
|
|
182
|
+
endoreg_db/data/requirement/old/colonoscopy_baseline_austria.yaml,sha256=n_5hP9xoDr7jFWLE5M53r1ar5g5Rc6WI8mm4aK11_T8,1133
|
|
183
|
+
endoreg_db/data/requirement/old/coloreg_colon_polyp.yaml,sha256=qgl4w6fhbpygNQmCu5WGA-B-H06-MupCMRc65SL0oZQ,1310
|
|
184
|
+
endoreg_db/data/requirement/old/disease_cardiovascular.yaml,sha256=5DsBiGQjcnVyEhRRqyZkjnJBqRaCUfXVW3OfkLOMLsw,2059
|
|
185
|
+
endoreg_db/data/requirement/old/disease_classification_choice_cardiovascular.yaml,sha256=10ejrlmzr53eGmTGRD2wrikuEfK3yPwxKFOgx3VshLk,1403
|
|
186
|
+
endoreg_db/data/requirement/old/disease_hepatology.yaml,sha256=DS6azOT3H-bSwghmv8fyPylHKkxN0gJ1BbVlchT2hWU,324
|
|
187
|
+
endoreg_db/data/requirement/old/disease_misc.yaml,sha256=qMvKSE1J8CPNlzCae5liQWNxDYxpERzlzHBKB6YQSp0,354
|
|
188
|
+
endoreg_db/data/requirement/old/disease_renal.yaml,sha256=1eiIMZQVt5i0dAvOEP1_1i5jvITRfeavZr62zwTPvVI,3472
|
|
189
|
+
endoreg_db/data/requirement/old/endoscopy_bleeding_risk.yaml,sha256=dhc0zqrnR6xkqrfZlb_fe-lYne2MNXaCmmagiAZhpkY,2054
|
|
190
|
+
endoreg_db/data/requirement/old/event_cardiology.yaml,sha256=7ss8PILhYtxQztmM7U61fd41tzCE7INqCE5bdDxgGXI,8574
|
|
191
|
+
endoreg_db/data/requirement/old/event_requirements.yaml,sha256=xDnJFKlQifDP0fLb3N5kbcOPocMcYUHQ_UjfRyXNDwA,5083
|
|
192
|
+
endoreg_db/data/requirement/old/finding_colon_polyp.yaml,sha256=I2rKRUij7tui6O-0dj_l-P54vYLD81V1tOdDMBJqLBU,1387
|
|
193
|
+
endoreg_db/data/requirement/old/gender.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
|
+
endoreg_db/data/requirement/old/lab_value.yaml,sha256=sCLQ-VR6bYVFp_9q1_lH6vkIDIKMj6RapNvW-eWEEl4,15081
|
|
195
|
+
endoreg_db/data/requirement/old/medication.yaml,sha256=kJLiAkiRDgSWzU7AU1BFxtkQ5-gVEdinsGLqj07Eb3Y,3500
|
|
196
|
+
endoreg_db/data/requirement_operator/new_operators.yaml,sha256=-kpo2cL8sEl90p6Ioy53NlOb9nAYMtGi7LNFZNiMVK8,1462
|
|
197
|
+
endoreg_db/data/requirement_operator/_old/age.yaml,sha256=RHQ2o3RNnSrgDKKLL1wdbwhjV0iI03sD99B-5BEePks,535
|
|
198
|
+
endoreg_db/data/requirement_operator/_old/lab_operators.yaml,sha256=0-XFEn0y_D-46f-6p6i21I2jUQFVFhsUaKA-03ORLTU,8105
|
|
199
|
+
endoreg_db/data/requirement_operator/_old/model_operators.yaml,sha256=DjePXlQ8WV974-WqjTyX4B2lLSXdo0oNUX-_22G5yH4,5368
|
|
200
|
+
endoreg_db/data/requirement_set/01_endoscopy_generic.yaml,sha256=sPTaZ9oVx8ls73tjiYpKOdUEgJhqk4JxJqXathr9-ro,2084
|
|
300
201
|
endoreg_db/data/requirement_set/01_laboratory.yaml,sha256=IMO7L2aTMnpXNunnRwyJIlDrZ67M4heMIxRp-3OqMtw,438
|
|
301
202
|
endoreg_db/data/requirement_set/02_endoscopy_bleeding_risk.yaml,sha256=yjkL22wa8_bm08EMYIoMlQ4barfIOaxILz3R8RKdxZc,1864
|
|
302
|
-
endoreg_db/data/requirement_set/90_coloreg.yaml,sha256=
|
|
203
|
+
endoreg_db/data/requirement_set/90_coloreg.yaml,sha256=XoYElKXD5f03Hc_RGnsUsU_2hq0LQp6CPzxWhjhy_ug,7415
|
|
303
204
|
endoreg_db/data/requirement_set/_old_,sha256=WsKGasdo3kUVH_gm3ao9pxRbqjgcjH3dGdfeF7mlsmY,4499
|
|
304
205
|
endoreg_db/data/requirement_set/colonoscopy_austria_screening.yaml,sha256=p2KcbSgWJUVh2ZxDt_VD1Z3Tlep2xxgmiTGYvAhT1c4,2057
|
|
305
206
|
endoreg_db/data/requirement_set_type/data.yaml,sha256=g3IuxMZGfvRhtzT5PJguuOEkD6U9uHrcVdUlg2oPS4k,1028
|
|
@@ -326,7 +227,7 @@ endoreg_db/data/unit/weight.yaml,sha256=o1PvHk-4GhKxstCozhDYQNMMYcTXvwmqx4hlQXO2
|
|
|
326
227
|
endoreg_db/data/waste/data.yaml,sha256=A8dUOdzsxhICHViXmbcLtOmtqkBX_CkZaRNo-ePAyEA,245
|
|
327
228
|
endoreg_db/factories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
328
229
|
endoreg_db/forms/__init__.py,sha256=H2bgLGusm3FLbSTN8cjYcJPaABJL1L5ee9dOTTGRrwU,130
|
|
329
|
-
endoreg_db/forms/examination_form.py,sha256=
|
|
230
|
+
endoreg_db/forms/examination_form.py,sha256=tmAzDSy_s5mun3rfBatEag06_YpOq_MuhDHOmNobH6E,389
|
|
330
231
|
endoreg_db/forms/patient_finding_intervention_form.py,sha256=RztLQpz3-hkON1ppudXuQZHbtq4-_oY_tk-zD9RtoaQ,1083
|
|
331
232
|
endoreg_db/forms/patient_form.py,sha256=auoeGlMWNiIWAdsE9jRzGGcvEtmssXpsVMFte11YsmM,709
|
|
332
233
|
endoreg_db/forms/unit.py,sha256=rywaSXT6E18RwPdGXhDr94Q9_lP-fauY1XAPhj0D7Dc,116
|
|
@@ -335,11 +236,37 @@ endoreg_db/forms/questionnaires/tto_questionnaire.py,sha256=4QVcMONQIKDYRTbMw-9q
|
|
|
335
236
|
endoreg_db/forms/settings/__init__.py,sha256=xKCYyRS1tEAWsm5C9OrG0Btqgitzuh_s31Oa_W6Os0I,259
|
|
336
237
|
endoreg_db/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
337
238
|
endoreg_db/helpers/count_db.py,sha256=IkdgvDPM5xq7DgFn8Bp1rgpXOtmLzPfLpZy-5cFTEPg,1951
|
|
338
|
-
endoreg_db/helpers/data_loader.py,sha256=
|
|
339
|
-
endoreg_db/helpers/default_objects.py,sha256=
|
|
239
|
+
endoreg_db/helpers/data_loader.py,sha256=gAnfAemBrJFWtGFbmB-2P9mhuPmLybIp76vyTZDH8W4,6586
|
|
240
|
+
endoreg_db/helpers/default_objects.py,sha256=pdjexvBrdHGPNj6U2iIzVR738_VDT8NhOb4l8Troyq0,14143
|
|
340
241
|
endoreg_db/helpers/download_segmentation_model.py,sha256=VZ8BU7QkYpZkr8kpkUrnuvDBkirmLhuf2rHC2jRBILM,1053
|
|
341
242
|
endoreg_db/helpers/interact.py,sha256=EAiUP_5CXCauKcYYEoUo-Ot3FqE5n1Rm4UX6mkC06IY,174
|
|
342
243
|
endoreg_db/helpers/test_video_helper.py,sha256=4iIjH3Xe-5krhLffQLJO16XtxKJpM9wplpWUocmwWeg,4695
|
|
244
|
+
endoreg_db/import_files/__init__.py,sha256=UZ258NRGtUIL2kwtr4enrdwjbI0QWBWnEgqZA-hkFAc,849
|
|
245
|
+
endoreg_db/import_files/import_service.md,sha256=TjFL7XfhryOIJbrbCtQSk8-iMUgR5TqcftxDdimvVmU,1769
|
|
246
|
+
endoreg_db/import_files/report_import_service.py,sha256=1VlCdeNzHCwKpAqd-EcnAhSa1qZIWPuCA65AxyiIQ-M,5208
|
|
247
|
+
endoreg_db/import_files/video_import_service.py,sha256=w0jcf41P82k62vwAK3D1fpSRfcJ6C14tHTpFsJ-Ot-A,5521
|
|
248
|
+
endoreg_db/import_files/context/__init__.py,sha256=1bEDek9TGDdK1vRlZ7YeZEhDGa0uybPiiWx4f0eHfvQ,127
|
|
249
|
+
endoreg_db/import_files/context/default_sensitive_meta.py,sha256=5DILDr6l03GlQrnuS_h3gxCqq_Evx2uLMsnCCGnJKds,2835
|
|
250
|
+
endoreg_db/import_files/context/ensure_center.py,sha256=-TktK-QVR4DX6oGl0Y_67NvTwMeUxVMM4bEOj0fd6wI,591
|
|
251
|
+
endoreg_db/import_files/context/file_lock.py,sha256=SR3b1ZvCDR4T59lJgpNDX6wQGRy_ZmUsCrsqScwFIDw,1960
|
|
252
|
+
endoreg_db/import_files/context/import_context.py,sha256=mTSJqRO4ycy9PzZAeKMJohyKq1M5Soq85WUpak3t3Vg,1233
|
|
253
|
+
endoreg_db/import_files/context/validate_directories.py,sha256=vrbscCX8g44YPq1283ioTktlDT6D-cK3Z38_R9WXObQ,1344
|
|
254
|
+
endoreg_db/import_files/file_storage/__init__.py,sha256=3YkOalkE6R5Y84dPOzhjJuGqUkFDA9K0iGa_Pqzjp9I,313
|
|
255
|
+
endoreg_db/import_files/file_storage/create_report_file.py,sha256=u4nq-FrnhEnrnIyHuPk1ShTwSDxcq8vlikqFJCMdYkQ,2666
|
|
256
|
+
endoreg_db/import_files/file_storage/create_video_file.py,sha256=OkSJGGdwlUvuM57EXQb4pNo8CuC8UanK_Y9E9jmJtB0,2562
|
|
257
|
+
endoreg_db/import_files/file_storage/sensitive_meta_storage.py,sha256=1fHENzURgBgqEbAa_xMupS93CbIQj4AC4WUBurzQxjA,1452
|
|
258
|
+
endoreg_db/import_files/file_storage/state_management.py,sha256=kl8j27UuI8v0VL9ywE6EMcAjsdyfnhUiKx5LTfvRJDI,13939
|
|
259
|
+
endoreg_db/import_files/file_storage/storage.py,sha256=ITntL7AyXAovTgE1mtURgZRRBwUTIj2obrho3R-PBxg,1084
|
|
260
|
+
endoreg_db/import_files/processing/__init__.py,sha256=p4R0j6aC28TNFeboyum2R9pF9P98nvMk-CQsy_0yWtA,220
|
|
261
|
+
endoreg_db/import_files/processing/sensitive_meta_adapter.py,sha256=BXoiIxfSqKzze_ss6opEaW_C9TnKzwZkeyS-jJl8e_8,1768
|
|
262
|
+
endoreg_db/import_files/processing/report_processing/report_anonymization.py,sha256=CBJbJ0AEVLuRg27CddN2yhaX53OTZkEBJO2E9lqyukY,3469
|
|
263
|
+
endoreg_db/import_files/processing/video_processing/video_anonymization.py,sha256=POOkFSXD5rDc8eiYXnxSneXrksRVZmvQemPS4PJLF-0,4116
|
|
264
|
+
endoreg_db/import_files/processing/video_processing/video_cleanup_on_error.py,sha256=tUGjGokoM-__gY-qXpTyRgP5ObSmAmdnsyQz9by2KME,4567
|
|
265
|
+
endoreg_db/import_files/pseudonymization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
266
|
+
endoreg_db/import_files/pseudonymization/fake.py,sha256=UAObfuNT4YrUHZX8E53RLp7D3X3bpDs6f0UdoKh-8gE,1347
|
|
267
|
+
endoreg_db/import_files/pseudonymization/k_anonymity.py,sha256=59d82ljv7cUmTVSA0jK0i_yov2l2yaqkpLPhZQnjGXk,5595
|
|
268
|
+
endoreg_db/import_files/pseudonymization/k_pseudonymity.py,sha256=kEkpPCF3TFSvuHj0ZYySB2pDj_svHVzRzjdJWgZLSgg,4171
|
|
269
|
+
endoreg_db/import_files/pseudonymization/pseudonymize.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
343
270
|
endoreg_db/management/__init__.py,sha256=3dsK9Mizq1veuWTcvSOyWMFT9VI8wtyk-P2K9Ri7liY,29
|
|
344
271
|
endoreg_db/management/commands/__init__.py,sha256=Ch0jwQfNpOSr4O5KKMfYJ93dsesk1Afb-JtbRVyFXZs,21
|
|
345
272
|
endoreg_db/management/commands/anonymize_video.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -349,51 +276,48 @@ endoreg_db/management/commands/create_multilabel_model_meta.py,sha256=EsF3ygtdLg
|
|
|
349
276
|
endoreg_db/management/commands/fix_missing_patient_data.py,sha256=5TPUTOQwI2fVh3Zd88o4ne0R8N_V98k0GZsI1gW0kGM,7766
|
|
350
277
|
endoreg_db/management/commands/fix_video_paths.py,sha256=7LLwc38oX3B_tYWbLJA43Li_KBO3m5Lyw0CF6YqN5rU,7145
|
|
351
278
|
endoreg_db/management/commands/import_fallback_video.py,sha256=PhSBqyHevGgOZieZsj3NBfPJ656wqEkdCWrp2NSb538,9590
|
|
352
|
-
endoreg_db/management/commands/import_report.py,sha256=
|
|
279
|
+
endoreg_db/management/commands/import_report.py,sha256=qJjn5roJmOw4-dLfN0Pb-esTwTTC-C2NBLcag8Cxmo0,14450
|
|
353
280
|
endoreg_db/management/commands/import_video.py,sha256=OBwL4xnYATfLz6tJXGpp8FMjhYkjHubGqwvfnX8kO5I,17856
|
|
354
|
-
endoreg_db/management/commands/import_video_with_classification.py,sha256=
|
|
355
|
-
endoreg_db/management/commands/init_default_ai_model.py,sha256=ju_iitDhjjcxWobonNefIpgjXCMzKl5-geZfSXxPgbg,4676
|
|
281
|
+
endoreg_db/management/commands/import_video_with_classification.py,sha256=qPMOZTVFVKFSFBi3Wyc5f7JSYSDDZYWWMcG9RmUN45E,14728
|
|
356
282
|
endoreg_db/management/commands/list_routes.py,sha256=7u1P5CbLZXolRfegSPj3sPt_7IWoQJBf_Sc-pr-IrHs,622
|
|
357
|
-
endoreg_db/management/commands/load_ai_model_data.py,sha256=
|
|
358
|
-
endoreg_db/management/commands/load_ai_model_label_data.py,sha256=
|
|
359
|
-
endoreg_db/management/commands/load_base_db_data.py,sha256=
|
|
283
|
+
endoreg_db/management/commands/load_ai_model_data.py,sha256=9CWiHQ5fs6zWZCIvfRn3qTmvQXBb_IQwEXBln0sN-gc,2806
|
|
284
|
+
endoreg_db/management/commands/load_ai_model_label_data.py,sha256=eBl9xoOhh41CeRtxGxS8jHHh2U8U6mg12i_Domc_wv4,2062
|
|
285
|
+
endoreg_db/management/commands/load_base_db_data.py,sha256=PzVrHQpfm5Fs-nEd1sXNpe-UcOGFODQlXCz_-jVTows,2874
|
|
360
286
|
endoreg_db/management/commands/load_center_data.py,sha256=q3yAQwqTMM8-oEHtLqRpuoYojm6v-el2LMBJVa007Mo,2426
|
|
361
|
-
endoreg_db/management/commands/load_contraindication_data.py,sha256=
|
|
362
|
-
endoreg_db/management/commands/load_disease_classification_choices_data.py,sha256=
|
|
363
|
-
endoreg_db/management/commands/load_disease_classification_data.py,sha256=
|
|
364
|
-
endoreg_db/management/commands/load_disease_data.py,sha256=
|
|
287
|
+
endoreg_db/management/commands/load_contraindication_data.py,sha256=TBmeT4hUTEwx3ArzRl3eik6JM6pvj4j_dGH4Y_BTTE0,1167
|
|
288
|
+
endoreg_db/management/commands/load_disease_classification_choices_data.py,sha256=ZsrLWKbb-M1rQggsGG3EeAwKlc7X7V54afrBx-b4hgY,1271
|
|
289
|
+
endoreg_db/management/commands/load_disease_classification_data.py,sha256=ap41QQsDzd7XON-8y33OAdzo4gZoPbuCsvMTD_YkcYk,1215
|
|
290
|
+
endoreg_db/management/commands/load_disease_data.py,sha256=ymCiRh3HWNcYkc5PcBDG2GFQcNMtAtNjpRHxKtwA7zk,1985
|
|
365
291
|
endoreg_db/management/commands/load_distribution_data.py,sha256=d0KpJF9E519PsJvGJk6Lcxr4ZGMLCtw0WuvTaiJhO7E,2059
|
|
366
|
-
endoreg_db/management/commands/load_endoscope_data.py,sha256=
|
|
367
|
-
endoreg_db/management/commands/load_event_data.py,sha256=
|
|
368
|
-
endoreg_db/management/commands/load_examination_data.py,sha256=
|
|
369
|
-
endoreg_db/management/commands/load_examination_indication_data.py,sha256=
|
|
370
|
-
endoreg_db/management/commands/load_finding_data.py,sha256=
|
|
292
|
+
endoreg_db/management/commands/load_endoscope_data.py,sha256=DuRmUTiwdonQwBvR9tm0wVa3DJKc_3HKEJW9V3nVCys,1858
|
|
293
|
+
endoreg_db/management/commands/load_event_data.py,sha256=J4tzN7v2v0LU3qxjMIyNMYqYxKDFpP0TuOtsnw6oOWw,1134
|
|
294
|
+
endoreg_db/management/commands/load_examination_data.py,sha256=sHqscCjSnikJOzJTrmz0J9yRAnk6T5Tnt_P-QJwk9jU,2023
|
|
295
|
+
endoreg_db/management/commands/load_examination_indication_data.py,sha256=7I25p1_UEeePTVuJYnU_6xgNbP3vXSKPp1uxB9yT7Lk,2904
|
|
296
|
+
endoreg_db/management/commands/load_finding_data.py,sha256=x-95TFDwy2tZQvJOyJlSzvAhd7NM77CFPDh5OvgpNQg,3234
|
|
371
297
|
endoreg_db/management/commands/load_gender_data.py,sha256=skg1EcE5EIYAVDO-jNx8qjmJNaFXaOaqILgmJ6j6CLY,1137
|
|
372
298
|
endoreg_db/management/commands/load_green_endoscopy_wuerzburg_data.py,sha256=o-TmBaR1fpGg3pe3cukrbtZo36cdLKle22WUCn5IcKY,3950
|
|
373
|
-
endoreg_db/management/commands/load_information_source.py,sha256=
|
|
374
|
-
endoreg_db/management/commands/load_lab_value_data.py,sha256=
|
|
375
|
-
endoreg_db/management/commands/load_medication_data.py,sha256=
|
|
299
|
+
endoreg_db/management/commands/load_information_source.py,sha256=3APuqi-ElPMAIXAL0gXUPw_-MZcA-WjRyLsp4jauby8,1684
|
|
300
|
+
endoreg_db/management/commands/load_lab_value_data.py,sha256=mzHZbQSkcT3a75pkDrcMZRUTCK-489gVrAnbQFDbO1s,1546
|
|
301
|
+
endoreg_db/management/commands/load_medication_data.py,sha256=jAQxysM8sKhQmGCVEP7VGm4vrvaxkemeEGQgqGhJpiU,3308
|
|
376
302
|
endoreg_db/management/commands/load_name_data.py,sha256=OxPYEC4uAiyv7iP8KTtTBwUO4qPHn9oq68pE7hs6ppo,1320
|
|
377
|
-
endoreg_db/management/commands/load_organ_data.py,sha256=
|
|
378
|
-
endoreg_db/management/commands/load_pdf_type_data.py,sha256=
|
|
379
|
-
endoreg_db/management/commands/load_profession_data.py,sha256=
|
|
380
|
-
endoreg_db/management/commands/load_qualification_data.py,sha256=
|
|
381
|
-
endoreg_db/management/commands/load_report_reader_flag_data.py,sha256=
|
|
382
|
-
endoreg_db/management/commands/load_requirement_data.py,sha256=
|
|
303
|
+
endoreg_db/management/commands/load_organ_data.py,sha256=Ybrbo3CBh_AMWdR9sooqdqaneH6SdNgBjtXsssNvZSQ,1127
|
|
304
|
+
endoreg_db/management/commands/load_pdf_type_data.py,sha256=YEa4PdmYhq4V8saMDdzhE14nHgxJFhNoJXDWQI_mt3I,1775
|
|
305
|
+
endoreg_db/management/commands/load_profession_data.py,sha256=Wlppyp1R6PH5DyeFv1vdVhPw_zjEhoyh0887ULvP9k4,1232
|
|
306
|
+
endoreg_db/management/commands/load_qualification_data.py,sha256=3E7B2gkDlLWlqYvH37MqbVDQRtC2g7dT11WNQB5qmOU,1922
|
|
307
|
+
endoreg_db/management/commands/load_report_reader_flag_data.py,sha256=385RDOKE4IIdaHQumwpDSsXIBZjEozud_HVJTO2T7mY,1283
|
|
308
|
+
endoreg_db/management/commands/load_requirement_data.py,sha256=lknv1jKyPin1A2OZCsCtpI85LO_Bul46tKUC8JSoknE,6862
|
|
383
309
|
endoreg_db/management/commands/load_requirement_set_tags.py,sha256=zi8GN-zz8lzfzHv5u9u2D6a6HSprZbBZ_vcwAGPuNhI,3318
|
|
384
|
-
endoreg_db/management/commands/load_risk_data.py,sha256=
|
|
385
|
-
endoreg_db/management/commands/load_shift_data.py,sha256=
|
|
386
|
-
endoreg_db/management/commands/load_tag_data.py,sha256=
|
|
387
|
-
endoreg_db/management/commands/load_unit_data.py,sha256=
|
|
310
|
+
endoreg_db/management/commands/load_risk_data.py,sha256=Gy45jchE0DATm_EiQbUdCOR1FKKfs4DbTVwvJ2xKffQ,2045
|
|
311
|
+
endoreg_db/management/commands/load_shift_data.py,sha256=1lda_LKzDMmf7o6JnyYf3sOWSMWrgn5-Drfa9uUnzN4,1951
|
|
312
|
+
endoreg_db/management/commands/load_tag_data.py,sha256=StnPy1oxFXVumckGyUVogZ_eLzdM29_lUvqh2UxD7w0,1877
|
|
313
|
+
endoreg_db/management/commands/load_unit_data.py,sha256=C4R7SiEvjVCrkNbeMjGvwio-KCu1N7K9eaYpL-zAaeY,1231
|
|
388
314
|
endoreg_db/management/commands/load_user_groups.py,sha256=D7SK2FvZEHoE4TIXNGCjDw5_12MH9bpGZvoS7eEv0Os,1031
|
|
389
315
|
endoreg_db/management/commands/register_ai_model.py,sha256=KixTfuQR6TUfRmzB5GOos16BFOz7NL4TzLzBkgtPPgE,2510
|
|
390
|
-
endoreg_db/management/commands/reset_celery_schedule.py,sha256=U-m_FNRTw6LAwJoT9RUE4qrhmQXm7AyFToPcHYyJpIE,386
|
|
391
316
|
endoreg_db/management/commands/setup_endoreg_db.py,sha256=TDrH_2xmE-XLUAeVahxGPtyQtFXZ07eyUWxDE3spEtg,17888
|
|
392
|
-
endoreg_db/management/commands/start_filewatcher.py,sha256=
|
|
317
|
+
endoreg_db/management/commands/start_filewatcher.py,sha256=Qd2s1kRHvLSiO3CoDjYgD2yb16zCPjtDfQd8e63VXXQ,4090
|
|
393
318
|
endoreg_db/management/commands/storage_management.py,sha256=f7d3vEw069TomZhoHgOuydbDyqOHZiRXpx_HdEqjJTc,22337
|
|
394
319
|
endoreg_db/management/commands/summarize_db_content.py,sha256=pOIz3qbY4Ktmh0zV_DKFx971VD0pPx027gCD7a47EL0,10766
|
|
395
|
-
endoreg_db/management/commands/
|
|
396
|
-
endoreg_db/management/commands/validate_video_files.py,sha256=0lvA0Z8BKiibjyqc4ueI646IIc5bKI3sIOxiiF5_bTk,6509
|
|
320
|
+
endoreg_db/management/commands/validate_video_files.py,sha256=zB_PPVXyAqxgFblXMMWJAqc0ghs6BYvr8pB29KohL_M,6397
|
|
397
321
|
endoreg_db/management/commands/video_validation.py,sha256=xnAoCPB44dmnRbn6FqUjqRXQ-ZhDPNX1T5kCpAU8sgc,771
|
|
398
322
|
endoreg_db/mermaid/Overall_flow_patient_finding_intervention.md,sha256=qNOXAn04flFW1m3a4hN3Bb1Vd7121Wo-sZ6MeaR0Lqo,399
|
|
399
323
|
endoreg_db/mermaid/anonymized_image_annotation.md,sha256=F0MIJB2Jsj38M1bu8-0d8wWPpb53rrp28RCGTsH3VJ4,744
|
|
@@ -406,22 +330,10 @@ endoreg_db/mermaid/interventions.md,sha256=jWFB5fHr-bbOplk91VdPrSrS24EUZQKl8gQi_
|
|
|
406
330
|
endoreg_db/mermaid/morphology.md,sha256=9_--hWVwXW1UB1E9od9yddyUFJonm3eCGr986nwpQpY,360
|
|
407
331
|
endoreg_db/mermaid/patient_creation.md,sha256=P0U50Pejxn_AATzHTJ3U9iydoEVSnpRjGEUOTRNJrGs,384
|
|
408
332
|
endoreg_db/mermaid/video_segmentation_annotation.md,sha256=oouo5htDabP8m-W86C6aWXyIxi1A7zAoPqa3o5xr354,536
|
|
409
|
-
endoreg_db/migrations/0001_initial.py,sha256=
|
|
410
|
-
endoreg_db/migrations/0002_requirementset_depends_on.py,sha256=4iPevn3i52zmgnrqI3KIvgk0VPipTJbYsPJmZRaaafI,563
|
|
411
|
-
endoreg_db/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
412
|
-
endoreg_db/migrations/_old/0001_initial.py,sha256=xfdlddGyRGvwKbm77E4gPRWsgJWZvXs6aw_G-f1Eszo,121558
|
|
413
|
-
endoreg_db/migrations/_old/0002_add_video_correction_models.py,sha256=EFnABa4FClf6DwytRiG15Ws-aZwZ1ZgACnl6r2dNUxs,3691
|
|
414
|
-
endoreg_db/migrations/_old/0003_add_center_display_name.py,sha256=F13-IUe1q6XjVzE5-oMTAVx4oo_jvMcLpDiHtrTfQL4,873
|
|
415
|
-
endoreg_db/migrations/_old/0004_employee_city_employee_post_code_employee_street_and_more.py,sha256=xm2OvpvytuKX-Ll_eASkNtmzCyiAqionp5rxIFFsntc,2388
|
|
416
|
-
endoreg_db/migrations/_old/0004_remove_casetemplate_rules_and_more.py,sha256=iP0jtfn7hbox2DvXo58-2z-nwOwYhUAnrvwdre2wruo,2400
|
|
417
|
-
endoreg_db/migrations/_old/0005_merge_20251111_1003.py,sha256=mL3wdanpE6z9WbpOeVp_2WZ1rQ9DbIH2gyMlD7YJZU4,334
|
|
418
|
-
endoreg_db/migrations/_old/0006_sensitivemeta_anonymized_text_and_more.py,sha256=MgbgUrH4TXL48GuEg1YYHRPAKolh1YzGMbVJwpsSNgg,2473
|
|
419
|
-
endoreg_db/migrations/_old/0007_remove_rule_attribute_dtype_remove_rule_rule_type_and_more.py,sha256=_iBzC2KFxsQzZ6dyXjKM7tKYjX9qEDSguAvTctkE8qI,3266
|
|
420
|
-
endoreg_db/migrations/_old/0008_remove_event_event_classification_and_more.py,sha256=FgGRJ1Zs9Ry_AeQp9kNLMZQM2vkohSUVAvtbfWC9Znw,838
|
|
421
|
-
endoreg_db/migrations/_old/0009_alter_modelmeta_options_and_more.py,sha256=5YI8LXKNUEnxF4N4h3-svJfToiMFMKpwLP3g-XRFUfU,600
|
|
333
|
+
endoreg_db/migrations/0001_initial.py,sha256=nhv_mB0U8cXlGgTF16sMtF4nr6NMmnq9Qn0eplvPOfc,123647
|
|
422
334
|
endoreg_db/models/__init__.py,sha256=sVRsrTj4AHjUinFOGjIUtliXzMd5u_IfnS7JWO4FN74,6567
|
|
423
|
-
endoreg_db/models/upload_job.py,sha256=
|
|
424
|
-
endoreg_db/models/utils.py,sha256=
|
|
335
|
+
endoreg_db/models/upload_job.py,sha256=jWG-FuKp9yllUKrw86C-jPQyhaaLxib-V-i5TTWvKvw,3089
|
|
336
|
+
endoreg_db/models/utils.py,sha256=mA-lBrwOrhQOZ1EojIquDDLUH2FoH3ZUg9B7i9U9nLw,4420
|
|
425
337
|
endoreg_db/models/administration/__init__.py,sha256=BSWkeFPLgtNhUw428Qr5jesv_UlEuoZuPCma3GYmi8c,1443
|
|
426
338
|
endoreg_db/models/administration/ai/__init__.py,sha256=AYnrzvWkLYsySnlryfZ35_wgJ5egIdIpgmxW3DzO4OY,168
|
|
427
339
|
endoreg_db/models/administration/ai/active_model.py,sha256=_bV0yCq3lgJhP0IZmRSoJff8GCOz6qkO7ut_Px2KzGY,1438
|
|
@@ -452,7 +364,7 @@ endoreg_db/models/administration/person/names/__init__.py,sha256=47DEQpj8HBSa-_T
|
|
|
452
364
|
endoreg_db/models/administration/person/names/first_name.py,sha256=AC9mq42IS1e2pifrBVbCzzvwnfdrctvkvIiFWYiij8Y,461
|
|
453
365
|
endoreg_db/models/administration/person/names/last_name.py,sha256=Oz090ghvAWf6TY9Ao668tPn0If9Z7me5xgq0FgryGtM,436
|
|
454
366
|
endoreg_db/models/administration/person/patient/__init__.py,sha256=uC88MwLpy3sPYWyBlE2_cGkT8BcDRr77N3GdK9fxDmc,134
|
|
455
|
-
endoreg_db/models/administration/person/patient/patient.py,sha256=
|
|
367
|
+
endoreg_db/models/administration/person/patient/patient.py,sha256=7helgwts7Lb5hWWs2igaEHuQO7IqugykEycrBE8QOYA,17494
|
|
456
368
|
endoreg_db/models/administration/person/patient/patient_external_id.py,sha256=n31IzLCHCgJg1s6aKeWFG6-8sNNIv-VVt3mo6vXfi-8,921
|
|
457
369
|
endoreg_db/models/administration/person/profession/__init__.py,sha256=wxqhS38cCLJq3U2JY3_gmseiMHoKeF9pbJAO18nyapM,684
|
|
458
370
|
endoreg_db/models/administration/person/user/__init__.py,sha256=vUgDOU5hTkszcLMBPWBGF_feLdoCHgVW6HW4y232kIs,89
|
|
@@ -470,7 +382,7 @@ endoreg_db/models/administration/shift/__init__.py,sha256=-YDYCWFwpEJllbvQ18i2rI
|
|
|
470
382
|
endoreg_db/models/administration/shift/scheduled_days.py,sha256=h5cUQY4g6Wn-R5KBFsC9ZKi4hPkYLeb6WtNYbMkTJV0,1579
|
|
471
383
|
endoreg_db/models/administration/shift/shift.py,sha256=Fc5VAqbw53n8FNj8eLPvzszMEbt4Ak8ve-arMFMyGK4,1384
|
|
472
384
|
endoreg_db/models/administration/shift/shift_type.py,sha256=XP7C3nXlVGvDOyA7sq-a5E8SFdjFxCB5YbdtZfhE-20,3169
|
|
473
|
-
endoreg_db/models/label/__init__.py,sha256=
|
|
385
|
+
endoreg_db/models/label/__init__.py,sha256=pf_rLYseKR2TsYCB0-ddmqpeUbFIui54Xp08H3a_mwU,614
|
|
474
386
|
endoreg_db/models/label/label.py,sha256=uWV0Pk9PmWlOztAepJr5pp-hVrkN7Zo-BJxh13MFCIs,2473
|
|
475
387
|
endoreg_db/models/label/label_set.py,sha256=CQuusK_YR9mHt-xf5ZYy5mJkX-PBdvztaAOJSYszt_o,1832
|
|
476
388
|
endoreg_db/models/label/label_type.py,sha256=80RlxsKeaUKuTaBXz0h-Wejf4g0L9ZzuwxzVmDeSJec,663
|
|
@@ -478,27 +390,29 @@ endoreg_db/models/label/video_segmentation_label.py,sha256=pykx8zcayyo-uWwOVyX10
|
|
|
478
390
|
endoreg_db/models/label/video_segmentation_labelset.py,sha256=D8s0uWc-wcdOrzE3X0ljVgauFj2sI9d617EM9jUwbCc,787
|
|
479
391
|
endoreg_db/models/label/annotation/__init__.py,sha256=6igZTy9Iqw-GRf8yB82zoFOsSHgqhbN0bFZ9se6Njgs,268
|
|
480
392
|
endoreg_db/models/label/annotation/image_classification.py,sha256=fBxXssr-8OL0oUhmwHV-c9DK2yUI7V_59Hs0ajtC6-k,3132
|
|
481
|
-
endoreg_db/models/label/annotation/video_segmentation_annotation.py,sha256=
|
|
393
|
+
endoreg_db/models/label/annotation/video_segmentation_annotation.py,sha256=xwsUJC-cd6gfD4y4OVRh3WFh4p7HsVZnDBHXNVrYops,1800
|
|
482
394
|
endoreg_db/models/label/label_video_segment/__init__.py,sha256=MLFkJvmLm8IZccn2IOMg9C9kZyKUviZtAZpbGdev_nw,84
|
|
483
395
|
endoreg_db/models/label/label_video_segment/_create_from_video.py,sha256=AoLNwsWGrI7zHCUuj3sxchRec_a1P6W3lLa0oGj_t6I,1179
|
|
484
|
-
endoreg_db/models/label/label_video_segment/label_video_segment.py,sha256=
|
|
396
|
+
endoreg_db/models/label/label_video_segment/label_video_segment.py,sha256=0ybONn4Rd7BHSj3cjCBcEJQ3vc19tLwkTJMUJx0mkw0,22023
|
|
485
397
|
endoreg_db/models/media/__init__.py,sha256=WuomOKk-3kNGDLKoLO_ltnXbo028JDVlCCScdJMMQI4,465
|
|
486
398
|
endoreg_db/models/media/frame/__init__.py,sha256=25WriZHocR82rbHr_IMIgBt5z-mkV2O0LVWUpJRnQ5E,45
|
|
487
399
|
endoreg_db/models/media/frame/frame.py,sha256=7W_KdKwFq12cJoT6h-0JAxCRJrUScz88n6WQsEDa0b0,4364
|
|
488
400
|
endoreg_db/models/media/pdf/__init__.py,sha256=1fimtZK5LUuP_yqETN6pMj0hxKXuQqeLb1DP5wPmtT4,343
|
|
489
|
-
endoreg_db/models/media/pdf/raw_pdf.py,sha256=
|
|
401
|
+
endoreg_db/models/media/pdf/raw_pdf.py,sha256=cCtfY2nt6hVWolKe_r_CfNt317A7XGr9jL8XPLwTXdk,29480
|
|
490
402
|
endoreg_db/models/media/pdf/report_file.py,sha256=sCinU2R8KCJsYz4lYKYcdtais0LZOTi-OL9kGeQLnDA,4417
|
|
491
403
|
endoreg_db/models/media/pdf/report_reader/__init__.py,sha256=LiMooVstXRay5qcB-uZW0wxbcdUvPrfAs_xBwWiuuWc,166
|
|
492
|
-
endoreg_db/models/media/pdf/report_reader/report_reader_config.py,sha256=
|
|
404
|
+
endoreg_db/models/media/pdf/report_reader/report_reader_config.py,sha256=CIvRYSSBhIltMqCgtGkhtORYX8VnR6hf2F1v2zISJx4,3403
|
|
493
405
|
endoreg_db/models/media/pdf/report_reader/report_reader_flag.py,sha256=Ar6iIZoKWPoTFRt8uYs-W6Zj2-4plEcQZqHhb2TTD4U,1175
|
|
406
|
+
endoreg_db/models/media/processing_history/__init__.py,sha256=s01wPFbVYlZ93mNVyXHK7PyPtLSpF1LdUqXQKeJAcbY,88
|
|
407
|
+
endoreg_db/models/media/processing_history/processing_history.py,sha256=o-Ee90LVRmN53mZyWHCcfeYv4ywXo-oWHIschZQ9eUo,2953
|
|
494
408
|
endoreg_db/models/media/video/__init__.py,sha256=GJ5wdcvmPdptbSCfYuJeD_UegIdm3kOxjcLLBhKht-s,212
|
|
495
|
-
endoreg_db/models/media/video/create_from_file.py,sha256=
|
|
409
|
+
endoreg_db/models/media/video/create_from_file.py,sha256=vDoWq6o83RGz4POwE_zxLwrMvJsh3RbsJ7rD44JRnpI,16009
|
|
496
410
|
endoreg_db/models/media/video/pipe_1.py,sha256=ljO3vO2mqqTXLZsKjzMTC6-sW4JRWMVRfJcK0n5CjKg,9740
|
|
497
411
|
endoreg_db/models/media/video/pipe_2.py,sha256=8e6CnsWZ8SOQQ8OCRQoQJjvJ7I6ZZ8UbLWIk4RL6Fvk,4928
|
|
498
|
-
endoreg_db/models/media/video/video_file.py,sha256=
|
|
412
|
+
endoreg_db/models/media/video/video_file.py,sha256=QNCSrWUnXga43S1Px1MkPSXam1QzO8cm8oDckBEw3Wc,31905
|
|
499
413
|
endoreg_db/models/media/video/video_file_ai.py,sha256=nQP9o58eyO1Dw4huxfI-TC3mS91OO3E71V40ZJt283s,26068
|
|
500
414
|
endoreg_db/models/media/video/video_file_anonymize.py,sha256=AcYizmUDCaABRHmMXN734Axrufc582ErF9hLbCtzd0U,16190
|
|
501
|
-
endoreg_db/models/media/video/video_file_io.py,sha256=
|
|
415
|
+
endoreg_db/models/media/video/video_file_io.py,sha256=nUhC0BIbryfALBAGcBFAzxGPhTFht8sru_tTQsQEW2M,8795
|
|
502
416
|
endoreg_db/models/media/video/video_file_segments.py,sha256=mQ5jjbcB_jUmk_ojpXPDNpX9pGnn0mFg5Uh1F-5SdFA,8668
|
|
503
417
|
endoreg_db/models/media/video/video_metadata.py,sha256=YA4CGJkXMUcFwOrjKoBHyPMpj6xorRBgQL8V761j7h0,1815
|
|
504
418
|
endoreg_db/models/media/video/video_processing.py,sha256=NYt3ECmBGGrw24p4qTVHwnFXBXeVZANQG11AyUSdaYc,5549
|
|
@@ -526,20 +440,21 @@ endoreg_db/models/media/video/video_file_meta/video_meta.py,sha256=KtjiaiT1XP1-b
|
|
|
526
440
|
endoreg_db/models/medical/__init__.py,sha256=2xsb7CQlUiMB7txt_7iP_ydfE-loVYU4pt9agcsVD8s,2932
|
|
527
441
|
endoreg_db/models/medical/disease.py,sha256=MgK4hSlHEtjQ0iayzt6PRWylaAyJAoVgos83yEB1P5I,5060
|
|
528
442
|
endoreg_db/models/medical/event.py,sha256=0cCgzGu-qcWmfKxrTh90WsjV-oFTMY5JZa-AyL9RR0E,4420
|
|
443
|
+
endoreg_db/models/medical/contraindication/README.md,sha256=sOx2L1HlZz_S6QvEA-IskuaGsLUBmVWcTzRbdp8q7ZY,28
|
|
529
444
|
endoreg_db/models/medical/contraindication/__init__.py,sha256=sbaBtsfca3XTO-y4DZ0OCaMkZcB2P0rvASRoVVMvCMI,711
|
|
530
445
|
endoreg_db/models/medical/examination/__init__.py,sha256=mTB-nOqN7wfLRj15oeFa-Q3qw0lh6lLdhIYSrZnou6Y,610
|
|
531
|
-
endoreg_db/models/medical/examination/examination.py,sha256
|
|
532
|
-
endoreg_db/models/medical/examination/examination_indication.py,sha256=
|
|
533
|
-
endoreg_db/models/medical/examination/examination_time.py,sha256=
|
|
446
|
+
endoreg_db/models/medical/examination/examination.py,sha256=-pnEnE55oHNdfK4skeDkbeMghm6_JOM0Pwi6FOU6X4Q,5143
|
|
447
|
+
endoreg_db/models/medical/examination/examination_indication.py,sha256=8i4LPhdwVEJptuFJjAiUzXWHD15rzs5_VF5oUBtoqI8,6968
|
|
448
|
+
endoreg_db/models/medical/examination/examination_time.py,sha256=SoRI0-JxtWpCWiyxp8A9mv-EmajOUfDirRZF5HalFIs,1915
|
|
534
449
|
endoreg_db/models/medical/examination/examination_time_type.py,sha256=Cqf4cUstXSyqqG8GBETjusad6ghl8k5il27XyZ9dLU4,1226
|
|
535
450
|
endoreg_db/models/medical/examination/examination_type.py,sha256=4SlqinG6QdaNpBcyH-aiizeqVGLzjTObHAWQth__U1Y,1221
|
|
536
451
|
endoreg_db/models/medical/finding/__init__.py,sha256=9DZuNgBqWhcKzEYo-wnCTmzflbirFgVaeNlkDdr_zeg,475
|
|
537
|
-
endoreg_db/models/medical/finding/finding.py,sha256=
|
|
538
|
-
endoreg_db/models/medical/finding/finding_classification.py,sha256=
|
|
539
|
-
endoreg_db/models/medical/finding/finding_intervention.py,sha256=
|
|
452
|
+
endoreg_db/models/medical/finding/finding.py,sha256=YP9PupVSFthfLRG-pQThjVNPkniiTfIJ-gsa2HuAyjM,3699
|
|
453
|
+
endoreg_db/models/medical/finding/finding_classification.py,sha256=DA8H7zGd8a4YMC3LTOPc62epwjWM97vgl8CweK6Ugmo,3722
|
|
454
|
+
endoreg_db/models/medical/finding/finding_intervention.py,sha256=ZBe8eE16c6F1LIdyetKxWpAARUCaam2dnTmcKWAwfU0,1714
|
|
540
455
|
endoreg_db/models/medical/finding/finding_type.py,sha256=h5eK5h0pD-BJ-exZZZ9x0itP6eQrpaGGdUKMt7r99AQ,992
|
|
541
456
|
endoreg_db/models/medical/hardware/__init__.py,sha256=uX2-UpBzX2chpZEeCyqbv2BSrv3OZNG9PrB8sHEWpHQ,178
|
|
542
|
-
endoreg_db/models/medical/hardware/endoscope.py,sha256=
|
|
457
|
+
endoreg_db/models/medical/hardware/endoscope.py,sha256=YurE5tf4QGsy-TN6UZnvOthET5ACsUMLCCFtiHjwerI,1782
|
|
543
458
|
endoreg_db/models/medical/hardware/endoscopy_processor.py,sha256=mZgwJNbwmQ-aRvOxzIbSklHr_ANJEZLf_plQzS773r0,6624
|
|
544
459
|
endoreg_db/models/medical/laboratory/__init__.py,sha256=595XF1ikkwzQWbUsyasU23v1kDRugrgTp3eUfrMd0UQ,62
|
|
545
460
|
endoreg_db/models/medical/laboratory/lab_value.py,sha256=Tj7U-n6_T2KK_sqY_Bj8tE2qSv48oIXbZifsjjnt7zQ,19674
|
|
@@ -551,12 +466,12 @@ endoreg_db/models/medical/medication/medication_intake_time.py,sha256=kL76KrQTr2
|
|
|
551
466
|
endoreg_db/models/medical/medication/medication_schedule.py,sha256=yLIrvXH0avY7X8RfXZAHMmCge0lS7Xadj065wcbmXR0,1812
|
|
552
467
|
endoreg_db/models/medical/organ/__init__.py,sha256=l0taAVfBO62XnEzl3kQCzeTJw9yq9Q65lQS4DL5bbak,992
|
|
553
468
|
endoreg_db/models/medical/patient/__init__.py,sha256=4Jl2od4PimEtl28hZiRarFgd0tssP0_B8iR8LhXolpo,1159
|
|
554
|
-
endoreg_db/models/medical/patient/medication_examples.py,sha256=
|
|
469
|
+
endoreg_db/models/medical/patient/medication_examples.py,sha256=fZfc8fIPPM_kCvmQuA9DtH4CVaxdh6vJduGJieHndbE,1122
|
|
555
470
|
endoreg_db/models/medical/patient/patient_disease.py,sha256=JuVD9eU-SMFEOc6GKH5UVxBkDzk8hSBc_xCG5qtqpbE,2393
|
|
556
471
|
endoreg_db/models/medical/patient/patient_event.py,sha256=iCsXERH7gMba-tAmU9z__2vQMbIIGYllD3Lpq-5XMGo,2713
|
|
557
472
|
endoreg_db/models/medical/patient/patient_examination.py,sha256=CuxmqZKk7stiKMqQqyIZhLGofByRFLoNQxHuIQbmKnk,9677
|
|
558
473
|
endoreg_db/models/medical/patient/patient_examination_indication.py,sha256=t3IbQL5NAOF6vuiTQgUvbAA-1OFt18ijKrd_qSn1OgU,1618
|
|
559
|
-
endoreg_db/models/medical/patient/patient_finding.py,sha256=
|
|
474
|
+
endoreg_db/models/medical/patient/patient_finding.py,sha256=HMbogi69qIQP_TFEKVtihZmlYQ9b66nQ-23TEJbF9Jc,14783
|
|
560
475
|
endoreg_db/models/medical/patient/patient_finding_classification.py,sha256=yDBbX74zwEk39DGuOQQ3zA5z4enul2e6fX_r1BJUAK4,8602
|
|
561
476
|
endoreg_db/models/medical/patient/patient_finding_intervention.py,sha256=l-e0g-KeTUGGEuU0Xve3RJ_O9D3SqvkeQ3MmD9_e0Do,1119
|
|
562
477
|
endoreg_db/models/medical/patient/patient_lab_sample.py,sha256=PwXVevvRfkIJp4LgyB5EQp4i02MVV-aUGsMHjpCccfY,5477
|
|
@@ -569,15 +484,15 @@ endoreg_db/models/medical/risk/risk_type.py,sha256=BAeD5cNVVKJoAX578p_l0ZqRFHagz
|
|
|
569
484
|
endoreg_db/models/metadata/__init__.py,sha256=8I6oLj3YTmeaPGJpL0AWG5gLwp38QzrEggxSkTisv7c,474
|
|
570
485
|
endoreg_db/models/metadata/model_meta.py,sha256=CTjhvLaUPrGA5ETTCjDBs8Gm34eqh9oMnWMNrPbrXU0,8991
|
|
571
486
|
endoreg_db/models/metadata/model_meta_logic.py,sha256=ZrudnHOGivPqsFLFxSZ4pmnL_Xr_-GmzlTih9L45H70,16655
|
|
572
|
-
endoreg_db/models/metadata/pdf_meta.py,sha256=
|
|
573
|
-
endoreg_db/models/metadata/sensitive_meta.py,sha256=
|
|
574
|
-
endoreg_db/models/metadata/sensitive_meta_logic.py,sha256=
|
|
487
|
+
endoreg_db/models/metadata/pdf_meta.py,sha256=GRQE6ROQxILMl0uKjEQ2BUv8gIDWjD6z-OE5V_wR6Zk,3331
|
|
488
|
+
endoreg_db/models/metadata/sensitive_meta.py,sha256=XF8y4mqOhIoWWjcJyQXYgxEBaXZgoHFl5gMvadimqwc,13755
|
|
489
|
+
endoreg_db/models/metadata/sensitive_meta_logic.py,sha256=gOkwyyYFN-i4A6u30HvpalOEb_q4gzOLI036m8a8VSc,46009
|
|
575
490
|
endoreg_db/models/metadata/video_meta.py,sha256=qFhk9BwFE0z0urQLCPLXancck-su6ET89-akQPCC7H0,15968
|
|
576
491
|
endoreg_db/models/metadata/video_prediction_logic.py,sha256=kIO4k5sVvMb8ccEJQ561quKGUcVoFDf49mDFHKM-a_Q,7601
|
|
577
492
|
endoreg_db/models/metadata/video_prediction_meta.py,sha256=fnIkLnqxXyOBRBrSUVkI8-8AX286PmrpsLbS9uZfy7s,10795
|
|
578
493
|
endoreg_db/models/other/__init__.py,sha256=CC2sksOcwa6jPzKN_EXXk6B1dni_H1LXV0b79w4mkVE,894
|
|
579
494
|
endoreg_db/models/other/gender.py,sha256=kXsR5yYFrxbWj5dnz8va_bpzx49OJpRjj7ymqBEUBfA,717
|
|
580
|
-
endoreg_db/models/other/information_source.py,sha256=
|
|
495
|
+
endoreg_db/models/other/information_source.py,sha256=2Sfv1W2DphmwBUiSY75GyOAZuR4sqH2ZeTE7UzaAK_0,5677
|
|
581
496
|
endoreg_db/models/other/material.py,sha256=sLGyWC874JDDq0YjizgxLLuk--IWGJknZ-0fUQPGytw,889
|
|
582
497
|
endoreg_db/models/other/resource.py,sha256=SRMItQa_NW_Gy1Gtk3aVAj_zOx-1TS_08IN-N36WHto,552
|
|
583
498
|
endoreg_db/models/other/tag.py,sha256=30UkkPUOhyQHGdOyWGyZbJu7qgu0yFN88egdCgXYAXY,661
|
|
@@ -592,10 +507,13 @@ endoreg_db/models/other/distribution/numeric_value_distribution.py,sha256=8H_UfZ
|
|
|
592
507
|
endoreg_db/models/other/distribution/single_categorical_value_distribution.py,sha256=DdkakQA1M1jPRknr1Zkm0cAxvyulF-ZEJKiQ8t2aeeI,734
|
|
593
508
|
endoreg_db/models/other/emission/__init__.py,sha256=rvIQ_cA1Vj--FzQRWOoSy-84iGcjTTAGX1MM6nUjn4w,81
|
|
594
509
|
endoreg_db/models/other/emission/emission_factor.py,sha256=5ESvNGadi8ocl6BIxtX0TfioBJU9IaILSioR9am9U2w,3106
|
|
510
|
+
endoreg_db/models/report/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
511
|
+
endoreg_db/models/report/images.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
512
|
+
endoreg_db/models/report/report.py,sha256=Ztd-e8kcDP7Di_VbFivimzmbQjlCbthKvT_m-J_DypM,120
|
|
595
513
|
endoreg_db/models/requirement/__init__.py,sha256=bGZ-G89vM7o7ofFsCsLiHqqEhtjTRnqZMgTyojXiKNU,304
|
|
596
|
-
endoreg_db/models/requirement/requirement.py,sha256=
|
|
514
|
+
endoreg_db/models/requirement/requirement.py,sha256=6P8jvGcFgEk1giEdA8U0Gky17lNdvu9Am58ozPms8OM,29573
|
|
597
515
|
endoreg_db/models/requirement/requirement_error.py,sha256=AgFOQ3aVAsjPwXYIdLAY09ppLs29WFbqpvtAt5qr3r0,2441
|
|
598
|
-
endoreg_db/models/requirement/requirement_operator.py,sha256=
|
|
516
|
+
endoreg_db/models/requirement/requirement_operator.py,sha256=EHPNRFjnlE_-qMcJXq7AofRZ4Tep9tY_JXQ7DSLzYWI,6028
|
|
599
517
|
endoreg_db/models/requirement/requirement_set.py,sha256=Ofh59OyBH6UqnimZiHNJXMXGTaVlSAufbN2-YEAIOKo,11046
|
|
600
518
|
endoreg_db/models/requirement/requirement_evaluation/__init__.py,sha256=vKfJrCoTasRDp-obb8W_Xw723waxxCx_eifWsl76KtU,101
|
|
601
519
|
endoreg_db/models/requirement/requirement_evaluation/evaluate_with_dependencies.py,sha256=kVLwL6stqmCM8iszlGjxLPlpcKK6z70xUHfZJ6oFB24,9347
|
|
@@ -605,26 +523,23 @@ endoreg_db/models/requirement/requirement_evaluation/requirement_type_parser.py,
|
|
|
605
523
|
endoreg_db/models/state/__init__.py,sha256=WsWid5xpQ8KRhlJvcGd9OM2nDaV6XP_v7frna_atV1I,345
|
|
606
524
|
endoreg_db/models/state/abstract.py,sha256=_mxjpzCCDotOGgxtD2ADeopqQvTgdvA0IIPuQKiilL8,264
|
|
607
525
|
endoreg_db/models/state/anonymization.py,sha256=d50YQ-4k_oIOtXICryvsyqPzf486cDFG1BmQ73peuOE,365
|
|
608
|
-
endoreg_db/models/state/audit_ledger.py,sha256=
|
|
526
|
+
endoreg_db/models/state/audit_ledger.py,sha256=Pt8RIGg-6wb6md1Rlr5VhvIJFgc0uYNk7mJNmASZ6zU,6182
|
|
609
527
|
endoreg_db/models/state/label_video_segment.py,sha256=Hv8cE27yn0GOm0t4PlcamzN47GCbE2LYLLDADr7Vm3A,854
|
|
610
|
-
endoreg_db/models/state/raw_pdf.py,sha256=
|
|
528
|
+
endoreg_db/models/state/raw_pdf.py,sha256=6U4c6kyLqTh6tfKyrGQSPEQYPgu75-L9LRA55Rm0-QA,8283
|
|
611
529
|
endoreg_db/models/state/sensitive_meta.py,sha256=fzzBehjJ9mcBJHrRM7y1A868qX76UADeh1mc8tLkzL0,1406
|
|
612
|
-
endoreg_db/models/state/video.py,sha256=
|
|
613
|
-
endoreg_db/queries/__init__.py,sha256=
|
|
530
|
+
endoreg_db/models/state/video.py,sha256=KziXPTnRrGGpgXtNyDjbzBXldTB3P666t2lSfs9RzeI,9175
|
|
531
|
+
endoreg_db/queries/__init__.py,sha256=7Qp0uKn8VLlerdYABw1p-2xphGyd-hT80O-wNUv043o,117
|
|
614
532
|
endoreg_db/queries/annotations/__init__.py,sha256=76O3dAIzuSye09VNPGSNPnqPEtgXZcBAGXKdh89y0ts,95
|
|
615
533
|
endoreg_db/queries/annotations/legacy.py,sha256=KOHWLDf3CLvIT9GpQi3ps4bUi3JDJUhJXH4gvw9T47E,6418
|
|
616
534
|
endoreg_db/queries/sanity/__init_.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
617
535
|
endoreg_db/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
618
|
-
endoreg_db/schemas/examination_evaluation.py,sha256
|
|
536
|
+
endoreg_db/schemas/examination_evaluation.py,sha256=-Wz6C56xU2dPNUR7BwyMWZ9ipuuuxcB1VTXs5N-HplU,858
|
|
619
537
|
endoreg_db/serializers/Frames_NICE_and_PARIS_classifications.py,sha256=q06UKC0Nt4sOJphwN9lEaY28ZAvtcMAlOwT5Zq_sblI,31384
|
|
620
|
-
endoreg_db/serializers/__init__.py,sha256=
|
|
538
|
+
endoreg_db/serializers/__init__.py,sha256=GzyfV8tLHTnuVhvpieCv0dEbA_Jujv76auw1ON6CdNE,3298
|
|
621
539
|
endoreg_db/serializers/anonymization.py,sha256=Vtvbr_civeXjyqFYk0zUA5BuJv9tW9QQ6WJWxzPps8Y,3101
|
|
622
540
|
endoreg_db/serializers/examination_serializer.py,sha256=JPI9diMup9e-nSCH6UwU9KulnSKreg6pOwjKCLHWJfs,281
|
|
623
541
|
endoreg_db/serializers/sensitive_meta_serializer.py,sha256=zF_0HOrdhi9714DExVD1DTsQqDbRIJevkjLU4vZEgYE,10748
|
|
624
542
|
endoreg_db/serializers/video_examination.py,sha256=jotR5PNTA_xEMpqsqdP3PFaie8TO7SGv2Vp18sj8TlY,6937
|
|
625
|
-
endoreg_db/serializers/_old/raw_pdf_meta_validation.py,sha256=hZaPTY4AA4wO7uAA0-DKLueHwtqnNsJqFR8Apdv6wTk,7608
|
|
626
|
-
endoreg_db/serializers/_old/raw_video_meta_validation.py,sha256=Owku2MmHjEZR_FpgKUdaG9In9IRwur53NmhJdser9Bs,7542
|
|
627
|
-
endoreg_db/serializers/_old/video.py,sha256=O7PIt7uJNP5Xy9R9tbWuptCcsrm1dV0382_ymyVgl5w,2634
|
|
628
543
|
endoreg_db/serializers/administration/__init__.py,sha256=ZwlX3-e3QE_6O96liL_JLRSmkqemQP1SycE0mDOQ660,316
|
|
629
544
|
endoreg_db/serializers/administration/center.py,sha256=poHuiBQwfZlSagBuaw4HeJKaYlzGAwEdQC8I_ESBBV4,276
|
|
630
545
|
endoreg_db/serializers/administration/gender.py,sha256=ZcJv4aWKPAkPO8ON0nWzFTB9Oj4B6YbMrMxqpOxQo_w,306
|
|
@@ -648,19 +563,17 @@ endoreg_db/serializers/label_video_segment/__init__.py,sha256=9_Q7GjKKT_x1MYm7YR
|
|
|
648
563
|
endoreg_db/serializers/label_video_segment/_lvs_create.py,sha256=yUdVIw6yfCOVetuwgzviPL0iPQWqgGoJ7KVpXlMbkYA,5978
|
|
649
564
|
endoreg_db/serializers/label_video_segment/_lvs_update.py,sha256=ZynRbiz83cmBK1EW-AoBsx7ltdMHYRpr765592XpylE,5666
|
|
650
565
|
endoreg_db/serializers/label_video_segment/_lvs_validate.py,sha256=8I9y-ySrbeYu4a_9GuWWC0n7NzrJD4COitK0cKBbeo8,6826
|
|
651
|
-
endoreg_db/serializers/label_video_segment/label_video_segment.py,sha256=
|
|
566
|
+
endoreg_db/serializers/label_video_segment/label_video_segment.py,sha256=2oVArgAA-4cdSL4ifkQqeXjrM_hgEzbKw6fBnrUtV2s,12633
|
|
652
567
|
endoreg_db/serializers/label_video_segment/label_video_segment_annotation.py,sha256=ZcQukf_gj55KKgbrotutZgqxpXnieJcfOcoIpVydVOo,3920
|
|
653
568
|
endoreg_db/serializers/label_video_segment/label_video_segment_update.py,sha256=wZVjzmC3C1vw4d943HRnreqRNJQ7GXZvRSgBr9uWPhI,7671
|
|
654
|
-
endoreg_db/serializers/meta/__init__.py,sha256=
|
|
655
|
-
endoreg_db/serializers/meta/pdf_file_meta_extraction.py,sha256=cfcbIjxq1J6eKoeDUZ-mVSz56lO6K5mNgPOi78hVtYk,4441
|
|
656
|
-
endoreg_db/serializers/meta/report_meta.py,sha256=CUwOwE8aOj-couicty7VRDdNRQQxbP8gn6b5lN0XurY,1965
|
|
569
|
+
endoreg_db/serializers/meta/__init__.py,sha256=DQfSeV4ZIifoaTHNwXxNPDeSRf41UKYf6dPF1iKNIgI,419
|
|
657
570
|
endoreg_db/serializers/meta/sensitive_meta_detail.py,sha256=yOzWgNexT4zGjf0TsC2PbU37cuj-eqq6PIp7q1XUcCo,3943
|
|
658
571
|
endoreg_db/serializers/meta/sensitive_meta_update.py,sha256=qy7cM2MhQUJST9YcEXuyYmL8oX4kkKCIcyiz2nXHo-g,5591
|
|
659
572
|
endoreg_db/serializers/meta/sensitive_meta_verification.py,sha256=gXH2RfJtVPSgnA3Z58FU6kxTZs6vBI14EEZT7lx2NFE,2289
|
|
660
573
|
endoreg_db/serializers/meta/video_meta.py,sha256=g96J4va5_oIg7rbbVqcyBsy8imgmbiHjysuEEtas0cA,1284
|
|
661
574
|
endoreg_db/serializers/misc/__init__.py,sha256=MfG55Bb9sNBajmt-QkTOg1qFNSOEFQ6RWHIA_DVtneE,489
|
|
662
575
|
endoreg_db/serializers/misc/file_overview.py,sha256=5dVZ61VIz_A-7Qncc-BBKrZuE6DQlzZ6fmmptDpZpOw,3987
|
|
663
|
-
endoreg_db/serializers/misc/sensitive_patient_data.py,sha256=
|
|
576
|
+
endoreg_db/serializers/misc/sensitive_patient_data.py,sha256=pAHgBV6FjQ9KlpvthlsMYPgrdnE4YjE9nIdlMXKuDVs,6197
|
|
664
577
|
endoreg_db/serializers/misc/stats.py,sha256=iL8iZseOLeLaoaCDF3MtTQBH3b0yX5ZFkrZbq5MiMGM,1255
|
|
665
578
|
endoreg_db/serializers/misc/translatable_field_mix_in.py,sha256=ZH8ZUE1-No0DLCcIGk445c00jQcX7M6Yldxik-FaGfg,1724
|
|
666
579
|
endoreg_db/serializers/misc/upload_job.py,sha256=e8rXbgs7lkh-NAswLBV2pkEngWdfqHmJcIqS1fM0bJY,2306
|
|
@@ -668,7 +581,7 @@ endoreg_db/serializers/patient/__init__.py,sha256=ogQGq3jGnFP3L7gK9FbcJodhrzdR6_
|
|
|
668
581
|
endoreg_db/serializers/patient/patient.py,sha256=8GlQw9a6zxhrieuzw0qf2Xryiuj64-Pe-jgYFdGlRdk,3072
|
|
669
582
|
endoreg_db/serializers/patient/patient_dropdown.py,sha256=0hijgjMbgrUo78Em6hNqRMv5XdQJ42pTXmOZClSDtuQ,964
|
|
670
583
|
endoreg_db/serializers/patient_examination/__init__.py,sha256=7QMmC9XImY9S_suhGnj4SWeyOk1CkbKzbDRZ_thEWdA,121
|
|
671
|
-
endoreg_db/serializers/patient_examination/patient_examination.py,sha256=
|
|
584
|
+
endoreg_db/serializers/patient_examination/patient_examination.py,sha256=p1O-awTCYLCFACFCVo17zo8vC5wwxlQ_FkwNx2zTrfo,5595
|
|
672
585
|
endoreg_db/serializers/patient_finding/__init__.py,sha256=t28Qc0223ykVWZEbk9XAsZRAZdQDohbTJEUlUvRnlO0,658
|
|
673
586
|
endoreg_db/serializers/patient_finding/patient_finding.py,sha256=o63QZSmcxKsnMKcVXwAf1oXv7D27lwSoHryS7DOCAmE,962
|
|
674
587
|
endoreg_db/serializers/patient_finding/patient_finding_classification.py,sha256=MnFAtmoXyhsw2-wFGzz9l14cQsCOYgS2Y8ds0hny9c4,1608
|
|
@@ -677,59 +590,52 @@ endoreg_db/serializers/patient_finding/patient_finding_intervention.py,sha256=B-
|
|
|
677
590
|
endoreg_db/serializers/patient_finding/patient_finding_list.py,sha256=GfIZ8MKCtW_8adrBdUndfqCeQ2LXVHp7I2scSTWDbUg,1265
|
|
678
591
|
endoreg_db/serializers/patient_finding/patient_finding_write.py,sha256=5F-CsESEvTYgxNYD1mdpwFlUBLH4OkI6MRzjXf0wBXg,5628
|
|
679
592
|
endoreg_db/serializers/pdf/__init__.py,sha256=edYetSYnJX7EJx5GyyBTMbx15maVXowgQWXYLt_JuDo,107
|
|
680
|
-
endoreg_db/serializers/pdf/anony_text_validation.py,sha256=
|
|
681
|
-
endoreg_db/serializers/report/__init__.py,sha256=w7N72hQaeTTSskw2PTWupfhHDEs7y2KycdpXV6zREXU,240
|
|
682
|
-
endoreg_db/serializers/report/mixins.py,sha256=rDQ1v76JDI_UOxd0hOg3CFooWHvYlnT7OkrpPnXSmkc,1626
|
|
683
|
-
endoreg_db/serializers/report/report.py,sha256=x46KNi-mhkffaVvyFq5SriyDSzMU7QUWvOqC05RgdXU,3928
|
|
684
|
-
endoreg_db/serializers/report/report_list.py,sha256=ohcMA5cD0fDRdG0j9LcvhQewBB7RZTrsXIkVylMa7eY,730
|
|
685
|
-
endoreg_db/serializers/report/secure_file_url.py,sha256=zVUYHmosBdsRwqenfOQifnRug7MigHHMyIOgyS94Gpg,1075
|
|
593
|
+
endoreg_db/serializers/pdf/anony_text_validation.py,sha256=xxOHgExcbYOY6nYNpd5MEOzoQDy6xOeKtkwpZSfOdUc,3418
|
|
686
594
|
endoreg_db/serializers/requirements/requirement_schema.py,sha256=ugA5H2bJo_RYAk9TyZO3I4L7QJZalpftts-KHO_o4G0,508
|
|
687
595
|
endoreg_db/serializers/requirements/requirement_sets.py,sha256=VX2ajfAqdW2G32LxEReFueEWBngTXY09LOZ6opEmwds,3525
|
|
688
596
|
endoreg_db/serializers/video/__init__.py,sha256=mSQqoZAf6mDDFZVmSQiz6uhJjwqjHw4NHqpZsWFQTNE,96
|
|
689
597
|
endoreg_db/serializers/video/segmentation.py,sha256=-5SKw9_gKovXfD1UKVwHXPgpLSWFyQnIpwPYQ9VDKZ4,12006
|
|
690
598
|
endoreg_db/serializers/video/video_file_brief.py,sha256=9g5njY0rI64kLO-Kt8J220M_y5ObYUHaNw9bf3-8lK8,272
|
|
691
599
|
endoreg_db/serializers/video/video_file_detail.py,sha256=NqhziTHtoJM_gTEPEe086eAn5tvEMJknQAKa1zY6ENo,3639
|
|
692
|
-
endoreg_db/serializers/video/video_file_list.py,sha256=
|
|
600
|
+
endoreg_db/serializers/video/video_file_list.py,sha256=nEfsJM1icQRcYU6dkllKYHB0EuKPu7hQ7reVmJB2HIM,3289
|
|
693
601
|
endoreg_db/serializers/video/video_processing_history.py,sha256=0yAPth_HrINKc3W9YVU5jUvy6pXpNwQAYWz_8oNENHM,5819
|
|
694
602
|
endoreg_db/services/__init__.py,sha256=CMLgpzemgjXvKN5HGFD_UVtRAg9XeMIfXvoSu-aUaRE,136
|
|
695
|
-
endoreg_db/services/anonymization.py,sha256=
|
|
603
|
+
endoreg_db/services/anonymization.py,sha256=XamQeeVd-W3HqaCZ0Zy7yWdfFDh-J1AxVSMVp7Y9vZ8,9473
|
|
696
604
|
endoreg_db/services/examination_evaluation.py,sha256=jx9IL2PIoBzjiITzs00c1XucE7Ab2LAUydNbErRmtTM,5943
|
|
697
605
|
endoreg_db/services/finding_description_service.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
698
|
-
endoreg_db/services/lookup_service.py,sha256=
|
|
699
|
-
endoreg_db/services/lookup_store.py,sha256=
|
|
700
|
-
endoreg_db/services/pdf_import.py,sha256=
|
|
606
|
+
endoreg_db/services/lookup_service.py,sha256=e_groyWlWKpdtShvdtJe_7tv1GMGT60XHJ3dqXtyDdE,16480
|
|
607
|
+
endoreg_db/services/lookup_store.py,sha256=l3AekFLMqoCIVLuRrh7-LwvpJxxYmCJk5G22Os3f6Qo,8965
|
|
608
|
+
endoreg_db/services/pdf_import.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
701
609
|
endoreg_db/services/polling_coordinator.py,sha256=alnPB-kdMyxbYaxQN9fki9dKrwmAsY3s68bUHWDSNeI,10662
|
|
702
610
|
endoreg_db/services/pseudonym_service.py,sha256=CJhbtRa6K6SPbphgCZgEMi8AFQtB18CUoBDttFnxEoM,3126
|
|
703
|
-
endoreg_db/services/
|
|
611
|
+
endoreg_db/services/report_import.py,sha256=H2Fl7gpm5IlamyJYH2J44X-j5uOO2oKX0nFQR2ENvvI,337
|
|
704
612
|
endoreg_db/services/segment_sync.py,sha256=YgHvIHkbW4mqCu0ACf3zjRSZnNfxWwt4gh5syUVXuE0,6400
|
|
705
|
-
endoreg_db/services/
|
|
706
|
-
endoreg_db/services/
|
|
707
|
-
endoreg_db/
|
|
708
|
-
endoreg_db/tasks/
|
|
613
|
+
endoreg_db/services/video_import.py,sha256=crxwQfKFin_q993bkgWvLhdtuVsiA3KSFMTERM2S35o,334
|
|
614
|
+
endoreg_db/services/__old/pdf_import.py,sha256=VTik-8SlY44ebnzIZ9Q9aJYiyrIduR916pqznh11T40,59990
|
|
615
|
+
endoreg_db/services/__old/video_import.py,sha256=3tFC5nLgDExAQDAa4ZZR83awEOWdGGFO36puiAVBV_0,54426
|
|
616
|
+
endoreg_db/tasks/upload_tasks.py,sha256=faE2EFYnSCnjRx3qTIYKqZFhMcibv4Mfrs0V6oOqfyc,7681
|
|
617
|
+
endoreg_db/tasks/video_ingest.py,sha256=i9KJfEh46dK0EXj-qijUxt6EP2PWIop8fH8gdQ4grls,5381
|
|
709
618
|
endoreg_db/tasks/video_processing_tasks.py,sha256=rZ7Kr49bAR4Q-vALO2SURebrhcJ5hSFGwjF4aULrOao,14089
|
|
710
619
|
endoreg_db/templates/timeline.html,sha256=H9VXKOecCzqcWWkpNIZXFI29ztg-oxV5uvxMglgoClk,6167
|
|
711
620
|
endoreg_db/templates/admin/patient_finding_intervention.html,sha256=F3JUKm3HhWIf_xoZZ-SET5d5ZDlm2jMM8g909w1dnYc,10164
|
|
712
621
|
endoreg_db/templates/admin/start_examination.html,sha256=3K4wirul9KNyB5mN9cpfCSCAyAD6ro19GwxFOY5sZ3A,267
|
|
713
|
-
endoreg_db/urls/__init__.py,sha256=
|
|
622
|
+
endoreg_db/urls/__init__.py,sha256=TyWa25lwbYUEtpyzoGTpUCJzodvkOU7Dzt0ni6DYbBA,2124
|
|
623
|
+
endoreg_db/urls/ai.py,sha256=Z634P3tUldbdaSPEA-DvwUY9VGirEPhTjhUxFgp_ERU,694
|
|
714
624
|
endoreg_db/urls/anonymization.py,sha256=zLoOOpu4XSha002nOi0fiJUAT8Dff7u7RQFtdU4A6aw,1853
|
|
715
625
|
endoreg_db/urls/auth.py,sha256=t95D8n3fiOhkUiINVGygrW0jiQiJc_XNmfk2S8pcDxk,440
|
|
716
626
|
endoreg_db/urls/classification.py,sha256=2JdHsCSpLs5bZWiTsDpWvyLE_OJkf7LrCCOob7H8M-k,1802
|
|
717
627
|
endoreg_db/urls/examination.py,sha256=IWNIR-hsWKD3nfL27EzMMazcZnOa_imjgk8RL0mql2U,2344
|
|
718
|
-
endoreg_db/urls/
|
|
719
|
-
endoreg_db/urls/label_video_segment_validate.py,sha256=bGWacxIG4pHnGRbnHL_L91ShKWfKCn5X-YXsHGs6i-I,1044
|
|
720
|
-
endoreg_db/urls/label_video_segments.py,sha256=Xj7Gf-JSq5iB3ubit5aCaLMJcgQXgDmqMSCb-n-CIl8,1144
|
|
721
|
-
endoreg_db/urls/media.py,sha256=W8FwEbKCnW29r9CbWy7uAK4OjY5P57vbvRqDAKF5JTA,11308
|
|
628
|
+
endoreg_db/urls/media.py,sha256=maCIWaasPnTOmG2nJLfZX9tBy-FP4x5IkNgK4lJqPdM,11105
|
|
722
629
|
endoreg_db/urls/patient.py,sha256=VLKFbEiNgpfYLWFisbHidyoUnoQuEzj1U0SgZDpdPDM,588
|
|
723
630
|
endoreg_db/urls/requirements.py,sha256=5d-SD_7nsTA9YXlBeWdZuh-mXh26BkgH29fFBaTLjU8,455
|
|
724
631
|
endoreg_db/urls/root_urls.py,sha256=d3H6wXeaGWpOjJSVWZ0ymeDm1onevBNPBy53cZONx98,1016
|
|
725
|
-
endoreg_db/urls/sensitive_meta.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
726
632
|
endoreg_db/urls/stats.py,sha256=2NQotfsHREF3gTOKQ5AT4XM1wvmEChSvDIrKMSFR2-Q,1796
|
|
727
633
|
endoreg_db/urls/upload.py,sha256=H6O8lqvGlyQhwdO1OY1RNInDgh3b_CPkDf6lIYMNApY,365
|
|
728
634
|
endoreg_db/utils/__init__.py,sha256=dx2jEcwRS1i5gx7k7XsphCX0SJ25NWRrg2k5Fz5XD6k,2272
|
|
729
635
|
endoreg_db/utils/calc_duration_seconds.py,sha256=AAAmIgVn5eaGpy6uVfWoDk8II7yxzQ0zHzvtusDtts0,693
|
|
730
636
|
endoreg_db/utils/check_video_files.py,sha256=cmiPgjWrFz4DgWjaYis8SNlk_rcnBzYHNs3uDEO3SYQ,6005
|
|
731
637
|
endoreg_db/utils/cropping.py,sha256=wMLo5sCFdZAEVBe3RbCH26eQjRe8q3th4K3ZKDd9fww,1143
|
|
732
|
-
endoreg_db/utils/dataloader.py,sha256=
|
|
638
|
+
endoreg_db/utils/dataloader.py,sha256=Y2mTCrkSGI0zheXzzv4YKQ1G_J07aCdp27XGYY3JoE8,11014
|
|
733
639
|
endoreg_db/utils/dates.py,sha256=5eRzL1cyKJaLip2GTyDm5l9FtXdcYCSXLH46vJV5nEM,1768
|
|
734
640
|
endoreg_db/utils/env.py,sha256=OGqE5Ro8h-uJVmfsgf1u2SZvZgv555sqUCKmMNP4KxM,1278
|
|
735
641
|
endoreg_db/utils/extract_specific_frames.py,sha256=8n6VRtZS24dEwRlCVSe8eHimIwL5FpK7NhKFG0duSyQ,2296
|
|
@@ -741,7 +647,7 @@ endoreg_db/utils/mime_types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
741
647
|
endoreg_db/utils/names.py,sha256=R-e8963IZRHhWPpa8gX2hbCq6o6agn5u3bd48wZ9FoM,2860
|
|
742
648
|
endoreg_db/utils/ocr.py,sha256=LvyABxX5OZhIeXw2pI6af8_xTj7nHQQoKGh5kNsrv7o,7136
|
|
743
649
|
endoreg_db/utils/parse_and_generate_yaml.py,sha256=k7y0fl9Jbb_LNryeJYd6tebklRlu1-P70dJ-4sxvEZs,1626
|
|
744
|
-
endoreg_db/utils/paths.py,sha256=
|
|
650
|
+
endoreg_db/utils/paths.py,sha256=mE9Y1R5TRpNKR3CRS8kZV9Y_um9P4bASG7I-RsdhfyU,4972
|
|
745
651
|
endoreg_db/utils/permissions.py,sha256=s7FIglJKwHikq3DX9dGrCBHlosnMlG94sHYIxViici8,5188
|
|
746
652
|
endoreg_db/utils/requirement_helpers.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
747
653
|
endoreg_db/utils/setup_config.py,sha256=IsQQb9ZtAVn5vo8JATepe0zoClYb5H8DM8Ed9loeNGo,6852
|
|
@@ -763,7 +669,7 @@ endoreg_db/utils/case_generator/lab_sample_factory.py,sha256=th4dDjLqRMNKw8jc7W2
|
|
|
763
669
|
endoreg_db/utils/defaults/set_default_center.py,sha256=iJ1bSLHAo1Qe4QBrnpl0cquvAAJBQfx86zS6W2mV_TQ,1058
|
|
764
670
|
endoreg_db/utils/links/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
765
671
|
endoreg_db/utils/links/requirement_link.py,sha256=UgA6KsRtZpoPrZboorrdVyFwnL-NnDIc9zfMW3Rwrb0,9606
|
|
766
|
-
endoreg_db/utils/pipelines/Readme.md,sha256=
|
|
672
|
+
endoreg_db/utils/pipelines/Readme.md,sha256=QhyH472oxANH4C6Z7BAzh-N2Jg2nYBnG5Df8PTnJoEs,8275
|
|
767
673
|
endoreg_db/utils/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
768
674
|
endoreg_db/utils/pipelines/process_video_dir.py,sha256=g1YGtOY8pOQ5iAW2gzxngbP30mZ5olDjmb4uJJlScI8,5435
|
|
769
675
|
endoreg_db/utils/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -772,8 +678,9 @@ endoreg_db/utils/product/sum_weights.py,sha256=SeNm6L2ZT3RPN6TS2U7h0tMpCYSCYHaAN
|
|
|
772
678
|
endoreg_db/utils/pydantic_models/__init__.py,sha256=qK_92ECIuirWzILReMdz_tOkrQqvxQZzGB7joUOLL8o,96
|
|
773
679
|
endoreg_db/utils/pydantic_models/db_config.py,sha256=Hg0ZlSJt-a1lRawO_jV5viPqnA5B_4Stak0TEBD-L9s,1743
|
|
774
680
|
endoreg_db/utils/requirement_operator_logic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
775
|
-
endoreg_db/utils/requirement_operator_logic/
|
|
776
|
-
endoreg_db/utils/requirement_operator_logic/
|
|
681
|
+
endoreg_db/utils/requirement_operator_logic/new_operator_logic.py,sha256=Qi5gXHRC2KFVC6eTsVsZa6JdWMTd5emm0ImddFc7jcg,3436
|
|
682
|
+
endoreg_db/utils/requirement_operator_logic/_old/lab_value_operators.py,sha256=tL3I0x3oZ46Ir12mKWolcswgoDT0CyBXay95fBMiAIo,24954
|
|
683
|
+
endoreg_db/utils/requirement_operator_logic/_old/model_evaluators.py,sha256=TxLcfYP71nCwFpF5XhVXVAspdl5ydXYJdVSYCoLbLh4,30228
|
|
777
684
|
endoreg_db/utils/video/__init__.py,sha256=EOAcatQ8bI1f3LhkE2E3YOzmm0FHqulk0O-jjZBgZFg,823
|
|
778
685
|
endoreg_db/utils/video/extract_frames.py,sha256=Pj9_pyfiwy-CFWiT4qysXn6VLCC-dQ1HpXOyyGqq0zE,3180
|
|
779
686
|
endoreg_db/utils/video/ffmpeg_wrapper.py,sha256=FDA-XIYE3CcfKHptE-rs-3ajIVL4YOTZmNJmNgO_AYA,33191
|
|
@@ -781,11 +688,13 @@ endoreg_db/utils/video/names.py,sha256=m268j2Ynt94OYH6dYxeL8gzU5ODtFJD4OmzS7l0nB
|
|
|
781
688
|
endoreg_db/utils/video/streaming_processor.py,sha256=C-39DtxhSnL7B2cObFE5k829VLXl_Fl0KQFrFP368JA,13747
|
|
782
689
|
endoreg_db/utils/video/video_splitter.py,sha256=EZEnhNjaUva_9VxjcjScgRSrxsEuifhBjlwIMLX1qaA,3698
|
|
783
690
|
endoreg_db/views/Frames_NICE_and_PARIS_classifications_views.py,sha256=Lu1JuUD44B6yUAR9pcYLlQ-3g66VTktmzStuO0uGIj4,8752
|
|
784
|
-
endoreg_db/views/__init__.py,sha256=
|
|
691
|
+
endoreg_db/views/__init__.py,sha256=7PEQv2zEoNK6n0egyH-F-Ansz1jnFMPsErF7_EHHOk4,5598
|
|
692
|
+
endoreg_db/views/ai/__init__.py,sha256=qWEMYkXekjmnChXc6XQs4HxrmK9VS-QaSw93HWThUm0,163
|
|
693
|
+
endoreg_db/views/ai/label.py,sha256=Hh9cQC_FDC50PxOk1Yo_4N8i8Ox0J8_beyIGTWKlLaA,4784
|
|
785
694
|
endoreg_db/views/anonymization/__init__.py,sha256=s1_r9j0jPJsKHy1-isjFAlRF3Cw0o8EXxyUP7Xv1Kqo,698
|
|
786
|
-
endoreg_db/views/anonymization/media_management.py,sha256=
|
|
787
|
-
endoreg_db/views/anonymization/overview.py,sha256=
|
|
788
|
-
endoreg_db/views/anonymization/validate.py,sha256=
|
|
695
|
+
endoreg_db/views/anonymization/media_management.py,sha256=4E0wdS2PjOFvV7Swc63kxHPgfy6JjYmS7TAbGfI4BIo,17178
|
|
696
|
+
endoreg_db/views/anonymization/overview.py,sha256=ApLCde_8ENi__CFOdHNXxx-9yteuHESNcDpaEUKGt8Q,8668
|
|
697
|
+
endoreg_db/views/anonymization/validate.py,sha256=p148PRfcQzz0IPjbniVDx_ms7n7kYbTIQqjFYyOV2yI,10569
|
|
789
698
|
endoreg_db/views/auth/__init__.py,sha256=i9KZEEKCb2sn2A1Gg0trTIbWzQ1cPiAIN-o7sBUaMtQ,214
|
|
790
699
|
endoreg_db/views/auth/keycloak.py,sha256=tgjQVfZwdyrbY437oXrOjs1j-2FYcTmUxG7obV_-GW8,4188
|
|
791
700
|
endoreg_db/views/examination/__init__.py,sha256=IBtbzExQB6VYy43AMCG6Fxq2uF5htyHXpYZxiI9C28Q,1206
|
|
@@ -804,41 +713,22 @@ endoreg_db/views/finding_classification/__init__.py,sha256=dxMyjCqXFyOs4p1MrkJrP
|
|
|
804
713
|
endoreg_db/views/finding_classification/base.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
805
714
|
endoreg_db/views/finding_classification/finding_classification.py,sha256=p-kFbZJJPNcxaRKsJR83yIDJxAumEXrXIL7Ikje-WXg,1571
|
|
806
715
|
endoreg_db/views/finding_classification/get_classification_choices.py,sha256=P2KPCtrYMS768MVa-gDtBI3y1K7AsIua2vtTGfbGAMk,1883
|
|
807
|
-
endoreg_db/views/
|
|
808
|
-
endoreg_db/views/
|
|
809
|
-
endoreg_db/views/
|
|
810
|
-
endoreg_db/views/label_video_segment/create_lvs_from_annotation.py,sha256=Wmnppb5ZVncyAcb2fIjCCD3ywgA-nKTvf0KClEZl-kU,1926
|
|
811
|
-
endoreg_db/views/label_video_segment/get_lvs_by_name_and_video.py,sha256=NIuEo-3Bc3bf1KXRUSbJQNJVoTfq45cmiBqY1FZC5TQ,1921
|
|
812
|
-
endoreg_db/views/label_video_segment/label_video_segment.py,sha256=SERQXxrMN7gICBSzt7fbZyfLo-zuBD4GZYtmwlw_EFE,3348
|
|
813
|
-
endoreg_db/views/label_video_segment/label_video_segment_by_label.py,sha256=xxb9gWq_417Bzl2LIaCBYzQvtpf384drZF0kR5NTt5k,7116
|
|
814
|
-
endoreg_db/views/label_video_segment/label_video_segment_detail.py,sha256=gs1llCyrHqzUuH24zq8Db9Aj1xnP8tkBZ64sOKmO5s0,3174
|
|
815
|
-
endoreg_db/views/label_video_segment/update_lvs_from_annotation.py,sha256=an3Bf4Jxap_vZrHW2XZV72fKkQhP3S2fsB3ZjXRjED8,1599
|
|
816
|
-
endoreg_db/views/label_video_segment/validate.py,sha256=1R7Ml-XgzZmzooYbPEnIkjm-u6rlvH-Yu5XGulhZEpI,8951
|
|
817
|
-
endoreg_db/views/media/__init__.py,sha256=YklQKKPSx63UQEcHYxFr5atGwXORPFAGhVemKd7_BGI,1346
|
|
818
|
-
endoreg_db/views/media/pdf_media.py,sha256=Wl71oD9d4Oe5K8ZZtUyuwmXPzAM8XqSv6DycoXHrM3g,13483
|
|
819
|
-
endoreg_db/views/media/segments.py,sha256=d995_pLD2W6zdrB3bL9bdHrwS22sZXeG19-SLNU38gU,2613
|
|
820
|
-
endoreg_db/views/media/sensitive_metadata.py,sha256=aNPrfFAzESJ6TZ2wpsGUqOwUVaH-6APNMyUpMurHWyw,11643
|
|
716
|
+
endoreg_db/views/media/__init__.py,sha256=8yoA_ovslolX7jqUROGQV4gI_9VnDQ_fVj3kAvTVMTU,867
|
|
717
|
+
endoreg_db/views/media/pdf_media.py,sha256=mWb06dFUX-EFVSv1lTu_iYrqxlafvL5NqRmCNmDzcZk,14360
|
|
718
|
+
endoreg_db/views/media/sensitive_metadata.py,sha256=Aeok0tQz-1ndKZ0qHpV4nJ75w98qkTvUZhX0wVfvM30,11637
|
|
821
719
|
endoreg_db/views/media/video_media.py,sha256=zStLnvMLLyxo2Nkz7PhGw3rSV6nVXwXyBc7pSl-Foi4,9573
|
|
822
|
-
endoreg_db/views/
|
|
823
|
-
endoreg_db/views/meta/__init__.py,sha256=cMwPBx55ad5zRX9DILqFm-a_ATc5SRVSMEGyHTC5cOo,470
|
|
824
|
-
endoreg_db/views/meta/available_files_list.py,sha256=CBaYVkj2YKB5n_J0gop0vXHkpgTE9Aamqt4tdCjTN2I,6181
|
|
825
|
-
endoreg_db/views/meta/report_meta.py,sha256=oLFTQ5YCVoCKlcYfbiN89--_9drBhMLeW9Ck_tmq08E,1733
|
|
826
|
-
endoreg_db/views/meta/sensitive_meta_detail.py,sha256=T8izLgs2x-4RGzSsoK2TuF66Oole8mY6Y1BZZaI92VQ,3141
|
|
720
|
+
endoreg_db/views/meta/__init__.py,sha256=gGSLgSBgxaHFTJ5fFphngXIWU3znmbgXL3la2nb51B0,206
|
|
827
721
|
endoreg_db/views/meta/sensitive_meta_list.py,sha256=tVh9sgqYvKWZ8qarLmwERh8a1ZcxZfYTB8vh70C-cRg,3664
|
|
828
722
|
endoreg_db/views/meta/sensitive_meta_verification.py,sha256=yT0N9MU3wye4tZMSKPu8Wy6HeFXSAD4AH5OlbblZqSM,2578
|
|
829
|
-
endoreg_db/views/misc/__init__.py,sha256=
|
|
723
|
+
endoreg_db/views/misc/__init__.py,sha256=0wg0Qfmv2Dst2hUjjg4KgYSnuMxTKBebze_Uh9KoqjA,1304
|
|
830
724
|
endoreg_db/views/misc/center.py,sha256=ogDP0z_Q7FWdWmftkbSbl5ppw7GOPzmG44CinGI5RR0,430
|
|
831
725
|
endoreg_db/views/misc/csrf.py,sha256=Cm30VMzqe7eMzTp-NYO5ZLEEsgx1-fuo20WXhlrko2Y,241
|
|
832
726
|
endoreg_db/views/misc/gender.py,sha256=g2u5bLKDmEsS418wYIUHcE3834V9EzjUcfalZey1soE,491
|
|
833
|
-
endoreg_db/views/misc/secure_file_serving_view.py,sha256=OB3O0nBNmyMavjlMO1s6lmNxroZ2X_fHLgmSS1bc7W0,2797
|
|
834
|
-
endoreg_db/views/misc/secure_file_url_view.py,sha256=3S-VD2h5IZYp4ri-4UHfilfX0LyMd68q5Hk1GmOyS58,2773
|
|
835
|
-
endoreg_db/views/misc/secure_url_validate.py,sha256=IFbjHbqyldm2L4wAg_x5w8xfDu3QjmIOvtqFTH0bPdo,2536
|
|
836
727
|
endoreg_db/views/misc/stats.py,sha256=TS1G8im95BPO6QNmydL8uZvT0r8Pe0ZoZ153U_KCkAA,8598
|
|
837
728
|
endoreg_db/views/misc/translation.py,sha256=v5HtOck7sQ53hj3m-q6Wlyp1zfgF-OkqhxoixH9JCvA,6359
|
|
838
|
-
endoreg_db/views/misc/upload_views.py,sha256=
|
|
729
|
+
endoreg_db/views/misc/upload_views.py,sha256=86o2JoU6tP0OZfd5YeQqAbCEYOzWQY4m3_0YbMldOaI,8456
|
|
839
730
|
endoreg_db/views/patient/__init__.py,sha256=luMjwQCtFQcuGddt_dGjYPNaMspYVphH9jkk4O-q08c,72
|
|
840
731
|
endoreg_db/views/patient/patient.py,sha256=qTFPebsaIJEobH8LTqZ5bDJexdUT2xs28YFCLY7Qy1Y,8913
|
|
841
|
-
endoreg_db/views/patient_examination/DEPRECATED_video_backup.py,sha256=FA67kvKVNKCcgnX09I-B1MhVFs5DeJIQEUmE9k70vEE,9807
|
|
842
732
|
endoreg_db/views/patient_examination/__init__.py,sha256=BHnjIbaiUn-fXJEwnKgZ2vaR2Z_ve2qluCJwG1FmmCQ,400
|
|
843
733
|
endoreg_db/views/patient_examination/patient_examination.py,sha256=7BGu06OB0wiob4hAExX_xIwEteeiDNu7gZlmwZiR1s4,5791
|
|
844
734
|
endoreg_db/views/patient_examination/patient_examination_create.py,sha256=kpqA5STL4UbY1Eu1M3_mn8Ydw0Dtiv5DqKU_dQyzKt0,2241
|
|
@@ -851,39 +741,31 @@ endoreg_db/views/patient_finding/patient_finding.py,sha256=J26qMJIZor1_DM66fRffP
|
|
|
851
741
|
endoreg_db/views/patient_finding/patient_finding_optimized.py,sha256=-hHyMWg8Q86xpCqabmqfuxzXtiHeWP-SmTWIMNsaQCQ,10560
|
|
852
742
|
endoreg_db/views/patient_finding_classification/__init__.py,sha256=hS3hSo5T8lRMcY-4IOsqqGU_VUM9bmZ8x-K7hGQ74Uw,121
|
|
853
743
|
endoreg_db/views/patient_finding_classification/pfc_create.py,sha256=SA7KPO-dVrqiVV823wRnWS5guYRhOoj3BVq6NgcZgic,2552
|
|
854
|
-
endoreg_db/views/
|
|
855
|
-
endoreg_db/views/
|
|
856
|
-
endoreg_db/views/
|
|
857
|
-
endoreg_db/views/patient_finding_morphology/pfm_create.py,sha256=-OYTH7iHPuSrYxbUrF7fQ6aAC0ES6UhiQ_Qo7tZi7II,2998
|
|
858
|
-
endoreg_db/views/pdf/__init__.py,sha256=bmDbvDLRmhOYTuPHMMaJMJU67js9t_K6Df987wRs4wU,135
|
|
859
|
-
endoreg_db/views/pdf/pdf_stream.py,sha256=gX_r9Cr2c8NJVcK5-3Nxe3ZktGX3IKe1w5i1HkUGAKA,7394
|
|
860
|
-
endoreg_db/views/pdf/pdf_stream_views.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
861
|
-
endoreg_db/views/pdf/reimport.py,sha256=ik0g14a6TG2rpmYN5lRsN-DGfpHgJUSINylkEXhnB0g,6485
|
|
744
|
+
endoreg_db/views/report/__init__.py,sha256=PPXKbiawphRvWSXaFYnCrDrTautyD-l8TlpjW82W41s,150
|
|
745
|
+
endoreg_db/views/report/reimport.py,sha256=m2NwA9kcYdUY-7rFWPU687EzlH8AVBWy_bZ5nUTnVfY,7004
|
|
746
|
+
endoreg_db/views/report/report_stream.py,sha256=KJZ9c6jcOO5KA7zaghwW5ivncwDh0Pbxg_DBn29TIs0,7605
|
|
862
747
|
endoreg_db/views/requirement/__init__.py,sha256=dJzmbtO5-fLyzY3hfV3XHi6BbwElv_cF6R0TpsIaRJw,159
|
|
863
748
|
endoreg_db/views/requirement/evaluate.py,sha256=twBRzxDy7w7RvdGiYCDdjUvfT9LeOhRE6n6NfJdRsDk,10041
|
|
864
749
|
endoreg_db/views/requirement/lookup.py,sha256=XSSPf01Q4e7TMuJjItxLX-FT2Uuahrshu7fBRv2lkZU,13135
|
|
865
|
-
endoreg_db/views/requirement/lookup_store.py,sha256=
|
|
750
|
+
endoreg_db/views/requirement/lookup_store.py,sha256=l2g3xKLWf-j-6Lk_CTEpxJlLBp0uhKFXoz6tDsBA5zs,4996
|
|
866
751
|
endoreg_db/views/requirement/requirement_utils.py,sha256=G562bDgto2if548bbLxstk9pCKsNhjok1f6gRodDyZg,2811
|
|
867
752
|
endoreg_db/views/requirement_lookup/lookup.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
868
753
|
endoreg_db/views/requirement_lookup/lookup_store.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
869
754
|
endoreg_db/views/stats/__init__.py,sha256=VHxrW0-RAWYki_89jWWJ0TrD7Nb0D3m-VjYV6bvP2k4,259
|
|
870
755
|
endoreg_db/views/stats/stats_views.py,sha256=v9ue1BKXdcApOgyolgNiT3hazx1xSVVvo26r91IozWY,8656
|
|
871
|
-
endoreg_db/views/video/__init__.py,sha256=
|
|
872
|
-
endoreg_db/views/video/correction.py,sha256=
|
|
873
|
-
endoreg_db/views/video/reimport.py,sha256=
|
|
874
|
-
endoreg_db/views/video/
|
|
875
|
-
endoreg_db/views/video/task_status.py,sha256=PXaesTS4R7Uhu9WBaTL4lscpOschVqyR32zVDUuSbfw,1770
|
|
876
|
-
endoreg_db/views/video/timeline.py,sha256=6jxS2gZh3bYH0eZSc-uHQhJwRDwTL6Um3CvaVkTl_pY,1793
|
|
877
|
-
endoreg_db/views/video/video_analyze.py,sha256=vxQHnXRFH5Y6IaWEmEnE4Svkz6Vjw1O9NEJRafdfOe4,1907
|
|
756
|
+
endoreg_db/views/video/__init__.py,sha256=jHTtpOocVyX8uZcccMKoDIJcsVXx65h6tUfGnQo2Mic,1326
|
|
757
|
+
endoreg_db/views/video/correction.py,sha256=6rW3y1f56UkRb3VUzi1keimIwC5CVvfKr1RoBZQqi_E,19432
|
|
758
|
+
endoreg_db/views/video/reimport.py,sha256=FJF__MAeJWcGFm4CzXuQuJe4wyFtEHe95Akmp5BQq90,8965
|
|
759
|
+
endoreg_db/views/video/segments_crud.py,sha256=_OjIlJgP4-yuI-P7IbVup5g6CUeadUc-FW6GToK-0_Q,21994
|
|
878
760
|
endoreg_db/views/video/video_apply_mask.py,sha256=spGK4oXMAKhVotJuwZGndbKKws6klveKe35mbX7Rv6k,1630
|
|
879
761
|
endoreg_db/views/video/video_correction.py,sha256=9mFICVvRSxp0WhGv7ib4d4M1hJs1iIhYmTl2OUIXQAg,767
|
|
880
762
|
endoreg_db/views/video/video_download_processed.py,sha256=tp5llYJKyQD0WSr4Fvqi-YrgBw2EPPe23E8F8SZbR4w,2000
|
|
881
763
|
endoreg_db/views/video/video_examination_viewset.py,sha256=ej6CUK1JGFN7JmZOj25g1heaIIAwh6cf1HaYFmcR9EE,8331
|
|
882
|
-
endoreg_db/views/video/
|
|
764
|
+
endoreg_db/views/video/video_meta_stats.py,sha256=h8dasBKwTl3havbEz6YciEt3jkt5WzY2vTl4R3sKqNE,1028
|
|
883
765
|
endoreg_db/views/video/video_processing_history.py,sha256=mhFuS8RG5GV8E-lTtuD0qrq-bIpnUFp8vy9aERfC-J8,770
|
|
884
766
|
endoreg_db/views/video/video_remove_frames.py,sha256=2FmvNrSPM0fUXiBxINN6vBUUDCqDlBkNcGR3WsLDgKo,1696
|
|
885
|
-
endoreg_db/views/video/video_stream.py,sha256=
|
|
886
|
-
endoreg_db-0.8.8.
|
|
887
|
-
endoreg_db-0.8.8.
|
|
888
|
-
endoreg_db-0.8.8.
|
|
889
|
-
endoreg_db-0.8.8.
|
|
767
|
+
endoreg_db/views/video/video_stream.py,sha256=_V1Gc11i6CHtc-PNjGMRPzFml4L8rDVcIHEMSNy5rD4,12162
|
|
768
|
+
endoreg_db-0.8.8.9.dist-info/METADATA,sha256=DaHWSQys6xh9sOtwC20FVK3oNvz9NWTVZY_EcwHEHII,14852
|
|
769
|
+
endoreg_db-0.8.8.9.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
770
|
+
endoreg_db-0.8.8.9.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
771
|
+
endoreg_db-0.8.8.9.dist-info/RECORD,,
|