HISPMD Database Schema Documentation
Introduction
This documentation provides a comprehensive overview of the hisp_md PostgreSQL database schema for the Health Information System Performance Monitoring Dashboard (HISPMD). The system is designed to monitor and evaluate health information systems performance across multiple dimensions.
System Overview
The HISPMD database supports:
- DHIS2 Integration: Tracking reporting rates, data quality, and system performance
- MOH Health Indicators: Monitoring key health indicators and facility data
- PRISM Assessments: Performance of Routine Information System Management
- Digital Health Tools: Monitoring digital health applications and systems
- EIDM Framework: Evidence-Informed Decision Making tracking
- User Management: Role-based access control and organizational hierarchy
Database Statistics
| Category | Tables | Description |
|---|---|---|
| DHIS2 Integration | 3 | DHIS2 reporting rates, periods, and data quality metrics |
| MOH Health Data | 18 | Health indicators, facilities, regions, and performance data |
| PRISM Assessments | 6 | RHIS performance diagnostics and assessments |
| System Management | 15 | Users, organizations, knowledge base, and reports |
| Digital Health | 2 | Digital health tools and applications monitoring |
| EIDM Framework | 2 | Evidence-informed decision making tracking |
| Total Tables | 72 | Complete HISPMD schema |
Getting Started
Database Connection
Connect to the HISPMD database using PostgreSQL connection parameters:
// PHP PDO Connection for PostgreSQL
$db_host = '192.168.128.4';
$db_port = '5432';
$db_name = 'hisp_md';
$db_user = 'hispmddb';
$db_pass = 'hispmddb';
try {
$pdo = new PDO("pgsql:host=$db_host;port=$db_port;dbname=$db_name", $db_user, $db_pass);
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
echo "Connected successfully to HISPMD database";
} catch(PDOException $e) {
echo "Connection failed: " . $e->getMessage();
}
Core Data Domains
The database is organized around these key data domains:
| Domain | Key Tables | Purpose |
|---|---|---|
| DHIS2 Monitoring | dhis2_reporting_rates, dhis2_periods, dhis2_organisation_units | Track DHIS2 reporting performance and data quality |
| Health Indicators | moh_indicators, moh_health_facilities, moh_regions | Monitor MOH health indicators and facility data |
| PRISM Framework | ethprism_facility_level_rhis_performance_diagnostic | RHIS performance assessment and diagnostics |
| Digital Health | digitalhealth, digitalhealthapps | Digital health tools implementation tracking |
| User Management | hispmd_users, hispmd_organisations | System access control and organizational hierarchy |
Key Relationships
The database maintains complex relationships between health facilities, indicators, and reporting systems:
Core Relationships
- DHIS2 Hierarchy: dhis2_organisation_units ↔ dhis2_reporting_rates (Organizational reporting structure)
- Health Facility Mapping: moh_health_facilities ↔ dhis2_organisation_units (Facility cross-referencing)
- Indicator Tracking: moh_indicators ↔ dhis2_reporting_rates (Indicator performance monitoring)
- PRISM Assessments: ethprism_facility_level_rhis_performance_diagnostic ↔ moh_health_facilities (Facility performance diagnostics)
- User Access: hispmd_users ↔ hispmd_organisations (Role-based access control)
- Digital Health Tools: digitalhealth ↔ digitalhealthapps (Tool implementation tracking)
Entity Relationship Diagram
The interactive Entity Relationship Diagram below visualizes the database structure. Navigate by dragging, zoom with scroll, and click tables for details.
Key Entities and Relationships
| Entity | Description | Key Relationships |
|---|---|---|
| dhis2_organisation_units | DHIS2 organizational hierarchy and facilities | Parent to dhis2_reporting_rates, linked to moh_health_facilities |
| moh_health_facilities | MOH health facilities master data | Linked to dhis2_organisation_units and PRISM assessments |
| dhis2_reporting_rates | DHIS2 reporting performance metrics | References dhis2_organisation_units and dhis2_periods |
| moh_indicators | Health indicators and targets | Base for performance monitoring across systems |
| ethprism_facility_level_rhis_performance_diagnostic | PRISM facility-level performance diagnostics | Linked to health facilities for assessment data |
| hispmd_users | System users and administrators | Role-based access to organizations and data |
Database Tables
Detailed documentation for each table organized by functional categories.
DHIS2 Integration
dhis2_reportingrate_settings
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| id | int4(32,0) | No | nextval('dhis2_reportingrate_settings_id_seq'::regclass) | PRIMARY | Primary key identifier |
| data_set | varchar(255) | No | NULL | ||
| report_period | varchar(255) | No | NULL | ||
| org_unit | varchar(255) | No | NULL | ||
| created_at | timestamp | Yes | CURRENT_TIMESTAMP | Record creation timestamp | |
| updated_at | timestamp | Yes | CURRENT_TIMESTAMP | Date/time field | |
| facility_types | varchar(255) | No | ''::character varying | ||
| ownership_types | varchar(255) | No | ''::character varying | ||
| name | varchar(255) | Yes | NULL | Name or title field |
This table has no foreign key relationships.
| id | data_set | report_period | org_unit | created_at | updated_at | facility_types | ownership_types | name |
|---|---|---|---|---|---|---|---|---|
| 1 | sukoxnm77Nx,EgjCODJgONu,Tly4adG7tLy,wUAjWKVXd5l | LAST_3_MONTHS,LAST_MONTH,LAST_SIX_MONTH,MONTHS_THIS_YEAR,THIS_MONTH | yY9BLUUegel,UFtGyqJMEZh,yb9NKGA8uqt,Fccw8uMlJHN,tDoLtk2ylu4,G9hDiPNoB7d,moBiwh9h5Ce,b9nYedsL8te,XU2w... | 2024-12-29 18:00:32.054589 | 2025-10-17 20:56:09.569896 | hospital,clinic,health_post,health_center | private,public,other_government,ngo | reporting-rates_default |
Showing 1 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| dhis2_reportingrate_settings_pkey | CREATE UNIQUE INDEX dhis2_reportingrate_settings_pkey ON public.dhis2_reportingrate_settings USING btree (id) |
dhis2_reporting_rates
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| organisationunit_id | varchar(255) | No | NULL | ||
| organisationunit | varchar(255) | No | NULL | ||
| organisationunit_code | varchar(100) | No | NULL | ||
| actual_reports | numeric(15,4) | Yes | 0 | ||
| expected_reports | numeric(15,4) | Yes | 0 | ||
| reporting_rate | numeric(15,2) | Yes | 0.00 | ||
| actual_reports_on_time | numeric(15,4) | Yes | 0 | Date/time field | |
| reporting_rate_on_time | numeric(15,2) | Yes | 0.00 | Date/time field | |
| dataset_id | varchar(255) | Yes | NULL | ||
| dataset_name | varchar(255) | Yes | NULL | Name or title field | |
| facility_type | varchar(100) | No | NULL | ||
| report_period | varchar(255) | No | NULL | ||
| ownership_type_id | varchar(255) | No | ''::character varying | ||
| ownership_type_label | varchar(255) | No | ''::character varying | ||
| indicator_id | varchar(255) | Yes | NULL | ||
| indicator_name | varchar(255) | Yes | NULL | Name or title field | |
| organisationunit_description | varchar(255) | Yes | NULL | Descriptive text field | |
| value | numeric(15,2) | Yes | NULL | ||
| relative_period | varchar(255) | Yes | NULL | ||
| fetched_at | timestamp | Yes | CURRENT_TIMESTAMP |
This table has no foreign key relationships.
| organisationunit_id | organisationunit | organisationunit_code | actual_reports | expected_reports | reporting_rate | actual_reports_on_time | reporting_rate_on_time | dataset_id | dataset_name | facility_type | report_period | ownership_type_id | ownership_type_label | indicator_id | indicator_name | organisationunit_description | value | relative_period | fetched_at |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| yY9BLUUegel | Addis Ababa City Administration | 1056254 | 194300.0000 | 1.0000 | 194300.00 | 194300.0000 | 194300.00 | sukoxnm77Nx | EIDM_D_NOTI | % of deaths notified by HF | Hospital | Hamle 2017 | nZ0QfIPU2Up | Private | sukoxnm77Nx | EIDM_D_NOTI | % of deaths notified by HF | Addis Ababa City Administration | 194300.00 | LAST_3_MONTHS | 2025-10-17 21:08:54.460115 |
| UFtGyqJMEZh | Afar Region | 1056255 | 7000.0000 | 1.0000 | 7000.00 | 7000.0000 | 7000.00 | sukoxnm77Nx | EIDM_D_NOTI | % of deaths notified by HF | Hospital | Hamle 2017 | nZ0QfIPU2Up | Private | sukoxnm77Nx | EIDM_D_NOTI | % of deaths notified by HF | Afar Region | 7000.00 | LAST_3_MONTHS | 2025-10-17 21:08:54.460115 |
| yb9NKGA8uqt | Amhara Region | 1069284 | 208500.0000 | 1.0000 | 208500.00 | 208500.0000 | 208500.00 | sukoxnm77Nx | EIDM_D_NOTI | % of deaths notified by HF | Hospital | Hamle 2017 | nZ0QfIPU2Up | Private | sukoxnm77Nx | EIDM_D_NOTI | % of deaths notified by HF | Amhara Region | 208500.00 | LAST_3_MONTHS | 2025-10-17 21:08:54.460115 |
| Fccw8uMlJHN | Benishangul Gumuz Regional Health Bureau | 6 | 9600.0000 | 1.0000 | 9600.00 | 9600.0000 | 9600.00 | sukoxnm77Nx | EIDM_D_NOTI | % of deaths notified by HF | Hospital | Hamle 2017 | nZ0QfIPU2Up | Private | sukoxnm77Nx | EIDM_D_NOTI | % of deaths notified by HF | Benishangul Gumuz Regional Health Bureau | 9600.00 | LAST_3_MONTHS | 2025-10-17 21:08:54.460115 |
| tDoLtk2ylu4 | Central Ethiopian region | 1084709 | 27200.0000 | 1.0000 | 27200.00 | 27200.0000 | 27200.00 | sukoxnm77Nx | EIDM_D_NOTI | % of deaths notified by HF | Hospital | Hamle 2017 | nZ0QfIPU2Up | Private | sukoxnm77Nx | EIDM_D_NOTI | % of deaths notified by HF | Central Ethiopian region | 27200.00 | LAST_3_MONTHS | 2025-10-17 21:08:54.460115 |
Showing 5 sample records. Hover over cells to see full content.
dhis2_periods
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| period_id | varchar(50) | No | NULL | PRIMARY | Primary key identifier |
| period_name | varchar(50) | No | NULL | Name or title field |
This table has no foreign key relationships.
| period_id | period_name |
|---|---|
| LAST_12_MONTHS | Last 12 Months |
| LAST_12_WEEKS | Last 12 Weeks |
| LAST_2_SIXMONTHS | Last 2 Sixmonths |
| LAST_3_MONTHS | Last 3 Months |
| LAST_4_QUARTERS | Last 4 Quarters |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| pk_dhis2_periods | CREATE UNIQUE INDEX pk_dhis2_periods ON public.dhis2_periods USING btree (period_id) |
MOH Health Data
moh_zones
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| zone_id | int4(32,0) | No | nextval('zone_id_seq'::regclass) | PRIMARY | Primary key identifier |
| region_id | varchar(255) | Yes | NULL | ||
| zone_name | varchar(255) | Yes | NULL | Name or title field | |
| zone_data | varchar(255) | Yes | NULL |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| moh_zones_pkey | CREATE UNIQUE INDEX moh_zones_pkey ON public.moh_zones USING btree (zone_id) |
moh_woredas
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| woreda_id | int4(32,0) | No | nextval('woreda_id_seq'::regclass) | PRIMARY | Primary key identifier |
| zone_id | varchar(255) | Yes | NULL | ||
| woreda_name | varchar(255) | Yes | NULL | Name or title field | |
| woreda_data | varchar(255) | Yes | NULL |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| moh_woredas_pkey | CREATE UNIQUE INDEX moh_woredas_pkey ON public.moh_woredas USING btree (woreda_id) |
moh_data_sources
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| data_source_id | int4(32,0) | No | nextval('moh_data_sources_data_source_id_seq'::regclass) | PRIMARY | Primary key identifier |
| data_source_name | text | No | NULL | Name or title field | |
| indicator_id | int4(32,0) | Yes | NULL |
This table has no foreign key relationships.
Referenced By
| Table | Column | References | Relationship Type |
|---|---|---|---|
| moh_indicator_data | data_source_id | moh_data_sources (data_source_id) | One-to-Many |
| data_source_id | data_source_name | indicator_id |
|---|---|---|
| 1 | IR Assessment | NULL |
| 2 | PRISM Assessment | NULL |
| 3 | Rapid assessment | NULL |
| 34 | RDQA - comprehensive | NULL |
| 52 | SOCI Assessment | NULL |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_data_sources_pkey | CREATE UNIQUE INDEX moh_data_sources_pkey ON public.moh_data_sources USING btree (data_source_id) |
moh_data_scope
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| scope_id | int4(32,0) | No | nextval('moh_data_scope_scope_id_seq'::regclass) | PRIMARY | Primary key identifier |
| scope_name | text | No | NULL | Name or title field |
This table has no foreign key relationships.
| scope_id | scope_name |
|---|---|
| 1 | National |
| 2 | Regional |
| 3 | Zone |
| 4 | Woreda |
| 5 | Health Facility |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_data_scope_pkey | CREATE UNIQUE INDEX moh_data_scope_pkey ON public.moh_data_scope USING btree (scope_id) |
moh_administration_units
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| unit_id | int4(32,0) | No | nextval('moh_administration_units_unit_id_seq'::regclass) | PRIMARY | Primary key identifier |
| unit_name | text | No | NULL | Name or title field |
This table has no foreign key relationships.
Referenced By
| Table | Column | References | Relationship Type |
|---|---|---|---|
| moh_indicator_data | unit_id | moh_administration_units (unit_id) | One-to-Many |
| unit_id | unit_name |
|---|---|
| 1 | ZHD |
| 2 | WorHO |
Showing 2 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_administration_units_pkey | CREATE UNIQUE INDEX moh_administration_units_pkey ON public.moh_administration_units USING btree (unit_id) |
moh_assessments
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| assessment_id | int4(32,0) | No | nextval('moh_assessments_assessment_id_seq'::regclass) | PRIMARY | Primary key identifier |
| assessment_name | text | No | NULL | Name or title field |
This table has no foreign key relationships.
Referenced By
| Table | Column | References | Relationship Type |
|---|---|---|---|
| moh_indicator_data | assessment_id | moh_assessments (assessment_id) | One-to-Many |
| assessment_id | assessment_name |
|---|---|
| 1 | IR Assessment |
| 2 | PRISM Assessment |
| 3 | Rapid Assessment |
| 4 | Periodic Assessment |
| 5 | SOCI Assessment |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_assessments_pkey | CREATE UNIQUE INDEX moh_assessments_pkey ON public.moh_assessments USING btree (assessment_id) |
moh_indicator_data
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| data_id | int4(32,0) | No | nextval('moh_indicator_data_data_id_seq'::regclass) | PRIMARY | Primary key identifier |
| indicator_id | int4(32,0) | Yes | NULL | FOREIGN | Foreign key reference |
| data_source_id | int4(32,0) | Yes | NULL | FOREIGN | Foreign key reference |
| assessment_id | int4(32,0) | Yes | NULL | FOREIGN | Foreign key reference |
| region_id | int4(32,0) | Yes | NULL | FOREIGN | Foreign key reference |
| unit_id | int4(32,0) | Yes | NULL | FOREIGN | Foreign key reference |
| facility_type_id | int4(32,0) | Yes | NULL | FOREIGN | Foreign key reference |
| value | numeric | Yes | NULL | ||
| year | int4(32,0) | Yes | NULL | ||
| scope_id | int4(32,0) | No | NULL | ||
| gender_sex | varchar | No | NULL | ||
| data_representation | varchar | Yes | NULL | ||
| indicator_group_id | int4(32,0) | Yes | NULL | ||
| data_source_detail | varchar | Yes | NULL | ||
| period_id | int4(32,0) | Yes | NULL | ||
| month_id | int4(32,0) | Yes | NULL | ||
| quarter_id | int4(32,0) | Yes | NULL | ||
| year_id | int4(32,0) | Yes | NULL | ||
| period | varchar | Yes | NULL | ||
| created_at | timestamp | Yes | NULL | Record creation timestamp | |
| updated_at | timestamp | Yes | NULL | Date/time field | |
| created_by | varchar | Yes | NULL | Record creation timestamp | |
| updated_by | varchar | Yes | NULL | Date/time field | |
| has_sex_data | bool | Yes | NULL | Boolean flag field | |
| zone_id | varchar | Yes | NULL | ||
| woreda_id | varchar | Yes | NULL | ||
| facility_id | varchar | Yes | NULL |
Foreign Key Relationships
| Column | References | Relationship Type |
|---|---|---|
| assessment_id | moh_assessments (assessment_id) | Many-to-One |
| data_source_id | moh_data_sources (data_source_id) | Many-to-One |
| facility_type_id | moh_facility_types (facility_type_id) | Many-to-One |
| indicator_id | moh_indicators (indicator_id) | Many-to-One |
| region_id | moh_regions (region_id) | Many-to-One |
| unit_id | moh_administration_units (unit_id) | Many-to-One |
| data_id | indicator_id | data_source_id | assessment_id | region_id | unit_id | facility_type_id | value | year | scope_id | gender_sex | data_representation | indicator_group_id | data_source_detail | period_id | month_id | quarter_id | year_id | period | created_at | updated_at | created_by | updated_by | has_sex_data | zone_id | woreda_id | facility_id |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 8 | 24 | 34 | 6 | NULL | NULL | NULL | 68 | 2023 | 1 | Percent | 3 | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |
| 10 | 20 | 34 | 6 | NULL | NULL | 6 | 93 | 2023 | 1 | Percent | 2 | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |
| 19 | 22 | 2 | 2 | NULL | NULL | 6 | 29.3 | 2024 | 1 | Percent | 3 | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |
| 20 | 23 | 2 | 2 | NULL | NULL | 3 | 100 | 2022 | 1 | Percent | 3 | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |
| 21 | 23 | 2 | 2 | NULL | NULL | 4 | 90.6 | 2022 | 1 | Percent | 3 | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_indicator_data_pkey | CREATE UNIQUE INDEX moh_indicator_data_pkey ON public.moh_indicator_data USING btree (data_id) |
moh_facility_types
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| facility_type_id | int4(32,0) | No | nextval('moh_facility_types_facility_type_id_seq'::regclass) | PRIMARY | Primary key identifier |
| facility_type_name | text | No | NULL | Name or title field |
This table has no foreign key relationships.
Referenced By
| Table | Column | References | Relationship Type |
|---|---|---|---|
| moh_indicator_data | facility_type_id | moh_facility_types (facility_type_id) | One-to-Many |
| moh_health_facilities | facility_type_id | moh_facility_types (facility_type_id) | One-to-Many |
| facility_type_id | facility_type_name |
|---|---|
| 3 | Hospital |
| 4 | Health Center |
| 5 | Health Post |
| 6 | Public HF |
| 7 | Private HF |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_facility_types_pkey | CREATE UNIQUE INDEX moh_facility_types_pkey ON public.moh_facility_types USING btree (facility_type_id) |
moh_indicator_groups
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| indicator_group_id | int4(32,0) | No | nextval('moh_indicator_groups_indicator_group_id_seq'::regclass) | PRIMARY | Primary key identifier |
| indicator_group_name | text | No | NULL | Name or title field |
This table has no foreign key relationships.
Referenced By
| Table | Column | References | Relationship Type |
|---|---|---|---|
| moh_indicators | indicator_group_id | moh_indicator_groups (indicator_group_id) | One-to-Many |
| indicator_group_id | indicator_group_name |
|---|---|
| 2 | Data Use |
| 3 | Data Quality |
| 4 | Digital Health |
| 5 | IR Pathway |
| 6 | CRVS |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_indicator_groups_pkey | CREATE UNIQUE INDEX moh_indicator_groups_pkey ON public.moh_indicator_groups USING btree (indicator_group_id) |
moh_years
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| year_id | int4(32,0) | No | nextval('moh_years_year_id_seq'::regclass) | PRIMARY | Primary key identifier |
| year | varchar | No | NULL | ||
| is_active | bool | Yes | NULL | Boolean flag field |
This table has no foreign key relationships.
| year_id | year | is_active |
|---|---|---|
| 16 | 2026 | NULL |
| 17 | 2027 | NULL |
| 18 | 2028 | NULL |
| 19 | 2029 | NULL |
| 20 | 2030 | NULL |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_years_pkey | CREATE UNIQUE INDEX moh_years_pkey ON public.moh_years USING btree (year_id) |
moh_indicators_target
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| ID | int4(32,0) | No | nextval('"moh_indicators_target_ID_seq"'::regclass) | PRIMARY | Primary key identifier |
| indicator_id | int4(32,0) | Yes | NULL | ||
| indicator_name | varchar | Yes | NULL | Name or title field | |
| indicator_target | varchar | Yes | NULL | ||
| indicator_baseline | varchar | Yes | NULL | ||
| indicator_target_year | varchar | Yes | NULL | ||
| indicator_baseline_year | varchar | Yes | NULL |
This table has no foreign key relationships.
| ID | indicator_id | indicator_name | indicator_target | indicator_baseline | indicator_target_year | indicator_baseline_year |
|---|---|---|---|---|---|---|
| 30 | 61 | Number of policy briefs prepared and submitted - Programs | 15 | 2024 | ||
| 31 | 63 | Percentage of health facilities with a VF within acceptable range -SBA | 95 | 2024 | ||
| 1 | 8 | Proportion HIS/DH budget allocated out of the total health budget in the fiscal year | 5 | 2024 | ||
| 2 | 10 | HIS governance indexes | 80 | 2024 | ||
| 3 | 11 | Proportion of health facilities (Hospitals and health centers) which have standardized medical recor... | 100 | 2024 |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_indicators_target_pkey | CREATE UNIQUE INDEX moh_indicators_target_pkey ON public.moh_indicators_target USING btree ("ID") |
moh_ir_datasource
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| ir_id | int4(32,0) | No | nextval('moh_ir_datasource_ir_id_seq'::regclass) | PRIMARY | Primary key identifier |
| ir_datasource | varchar | Yes | NULL | ||
| data_source_id | int4(32,0) | Yes | NULL |
This table has no foreign key relationships.
| ir_id | ir_datasource | data_source_id |
|---|---|---|
| 15 | Emerging | 1 |
| 16 | Candidate - low | 1 |
| 17 | Model | 1 |
| 18 | Digital model | 1 |
| 19 | Demonstration | 1 |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_ir_datasource_pkey | CREATE UNIQUE INDEX moh_ir_datasource_pkey ON public.moh_ir_datasource USING btree (ir_id) |
moh_months
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| month_id | int4(32,0) | No | nextval('moh_months_month_id_seq'::regclass) | PRIMARY | Primary key identifier |
| month | varchar | No | NULL |
This table has no foreign key relationships.
| month_id | month |
|---|---|
| 1 | January |
| 2 | February |
| 3 | March |
| 4 | April |
| 5 | May |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_months_pkey | CREATE UNIQUE INDEX moh_months_pkey ON public.moh_months USING btree (month_id) |
moh_period_types
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| period_id | int4(32,0) | No | nextval('moh_period_types_period_id_seq'::regclass) | PRIMARY | Primary key identifier |
| period_type | varchar | No | NULL |
This table has no foreign key relationships.
| period_id | period_type |
|---|---|
| 1 | Yearly |
| 2 | Quarterly |
| 3 | Monthly |
Showing 3 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_period_types_pkey | CREATE UNIQUE INDEX moh_period_types_pkey ON public.moh_period_types USING btree (period_id) |
moh_quarters
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| quarter_id | int4(32,0) | No | nextval('moh_quarters_quarter_id_seq'::regclass) | PRIMARY | Primary key identifier |
| quarter | varchar | No | NULL |
This table has no foreign key relationships.
| quarter_id | quarter |
|---|---|
| 1 | Q1 |
| 2 | Q2 |
| 3 | Q3 |
| 4 | Q4 |
Showing 4 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_quarters_pkey | CREATE UNIQUE INDEX moh_quarters_pkey ON public.moh_quarters USING btree (quarter_id) |
moh_regions
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| region_id | int4(32,0) | No | nextval('moh_regions_region_id_seq'::regclass) | PRIMARY | Primary key identifier |
| region_name | text | No | NULL | Name or title field | |
| region_alternate | text | Yes | NULL | ||
| lat | varchar | Yes | NULL | ||
| lng | varchar | Yes | NULL | ||
| code | varchar | Yes | NULL | ||
| map | varchar | Yes | NULL | ||
| region_code | int4(32,0) | Yes | NULL | ||
| country_id | varchar | Yes | NULL |
This table has no foreign key relationships.
Referenced By
| Table | Column | References | Relationship Type |
|---|---|---|---|
| moh_indicator_data | region_id | moh_regions (region_id) | One-to-Many |
| region_id | region_name | region_alternate | lat | lng | code | map | region_code | country_id |
|---|---|---|---|---|---|---|---|---|
| 14 | Tigray | Tigray Region | 13.704962060626 | 39.047707289424 | https://hispmd.merqconsultancy.org/app/moh_indicator_data_list.php?masterkey1=14&page=list&mastertab... | 1 | 1 | |
| 2 | Afar | Afar Region | 11.441045709388 | 40.406054777687 | https://hispmd.merqconsultancy.org/app/moh_indicator_data_list.php?masterkey1=2&page=list&mastertabl... | 2 | 1 | |
| 3 | Amhara | Amhara Region | 11.236085461693 | 38.278901287387 | https://hispmd.merqconsultancy.org/app/moh_indicator_data_list.php?masterkey1=3&page=list&mastertabl... | 3 | 1 | |
| 9 | Oromia | Oromia Region | 8.2369424657296 | 38.405640669281 | https://hispmd.merqconsultancy.org/app/moh_indicator_data_list.php?masterkey1=9&page=list&mastertabl... | 4 | 1 | |
| 11 | Somali | Somali Region | 7.6853561537776 | 43.052470954243 | https://hispmd.merqconsultancy.org/app/moh_indicator_data_list.php?masterkey1=11&page=list&mastertab... | 5 | 1 |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_regions_pkey | CREATE UNIQUE INDEX moh_regions_pkey ON public.moh_regions USING btree (region_id) |
moh_indicators
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| indicator_id | int4(32,0) | No | nextval('moh_indicators_indicator_id_seq'::regclass) | PRIMARY | Primary key identifier |
| indicator_name | text | No | NULL | Name or title field | |
| baseline | numeric | Yes | NULL | ||
| target | numeric | Yes | NULL | ||
| indicator_group_id | int4(32,0) | Yes | NULL | FOREIGN | Foreign key reference |
| indicator_shortname | text | Yes | NULL | Name or title field | |
| indicator_desc | text | Yes | NULL |
Foreign Key Relationships
| Column | References | Relationship Type |
|---|---|---|
| indicator_group_id | moh_indicator_groups (indicator_group_id) | Many-to-One |
Referenced By
| Table | Column | References | Relationship Type |
|---|---|---|---|
| moh_indicator_data | indicator_id | moh_indicators (indicator_id) | One-to-Many |
| indicator_id | indicator_name | baseline | target | indicator_group_id | indicator_shortname | indicator_desc |
|---|---|---|---|---|---|---|
| 1 | Number of health administration units with updated HIS strategic plan in place | NULL | NULL | 1 | HIG_HFs with updated HIS strategic Plan (#) | Administrative units refer woreda health offices, zonal health administrations, regional health bure... |
| 7 | Number of HIS partners which have aligned their operational plan with the health sector HIS plan | NULL | NULL | 1 | HIG_HIS partners with alligned plan (#) | Although all partners will have HIS plan, this indicator refers to HIS project funded partners where... |
| 8 | Proportion HIS/DH budget allocated out of the total health budget in the fiscal year | NULL | NULL | 1 | HIG_Budget allocated for HIS/DH (%) | This refers to the share of HIS/DH budget as a proportion of total health budget of that specific ad... |
| 10 | HIS governance indexes | NULL | NULL | 1 | HIG_HIS governance index | There are sub indicators with weighted value to governance indexes like existence of HIS legislative... |
| 16 | HIS workforce core competency index | NULL | NULL | 7 | HSR_HIS workforce core competency index | There are sub indicators with weighted value to calculate competency like the ability to check data ... |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| moh_indicators_pkey | CREATE UNIQUE INDEX moh_indicators_pkey ON public.moh_indicators USING btree (indicator_id) |
moh_health_facilities
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| facility_id | int4(32,0) | No | nextval('moh_health_facilities_facility_id_seq'::regclass) | PRIMARY | Primary key identifier |
| facility_name | text | No | NULL | Name or title field | |
| facility_type_id | int4(32,0) | Yes | NULL | FOREIGN | Foreign key reference |
Foreign Key Relationships
| Column | References | Relationship Type |
|---|---|---|
| facility_type_id | moh_facility_types (facility_type_id) | Many-to-One |
No sample data available for this table.
| Index Name | Definition |
|---|---|
| moh_health_facilities_pkey | CREATE UNIQUE INDEX moh_health_facilities_pkey ON public.moh_health_facilities USING btree (facility_id) |
PRISM Assessments
ethprism_additional_organizational_and_behavioral_assessment
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| CompletionDate | text | Yes | NULL | Date/time field | |
| SubmissionDate | text | Yes | NULL | Date/time field | |
| starttime | text | Yes | NULL | Date/time field | |
| endtime | text | Yes | NULL | Date/time field | |
| deviceid | text | Yes | NULL | ||
| subscriberid | text | Yes | NULL | ||
| simid | text | Yes | NULL | ||
| devicephonenum | text | Yes | NULL | Phone number field | |
| username | text | Yes | NULL | Name or title field | |
| duration | text | Yes | NULL | ||
| caseid | text | Yes | NULL | ||
| OBAT101 | text | Yes | NULL | ||
| OBAT102 | text | Yes | NULL | ||
| OBAT103 | text | Yes | NULL | ||
| OBAT104 | text | Yes | NULL | ||
| admin_lvl | text | Yes | NULL | ||
| OBAT105 | text | Yes | NULL | ||
| OBAT106 | text | Yes | NULL | ||
| OBAT107 | text | Yes | NULL | ||
| OBAT108 | text | Yes | NULL | ||
| tmp_obat106 | text | Yes | NULL | ||
| tmp_obat107 | text | Yes | NULL | ||
| tmp_obat108 | text | Yes | NULL | ||
| siteid | text | Yes | NULL | ||
| OBAT109f | text | Yes | NULL | ||
| OBAT110f | text | Yes | NULL | ||
| OBAT111 | text | Yes | NULL | ||
| OBAT112 | text | Yes | NULL | ||
| intro | text | Yes | NULL | ||
| DD1 | text | Yes | NULL | ||
| DD2 | text | Yes | NULL | ||
| DD3a | text | Yes | NULL | ||
| DD3b | text | Yes | NULL | ||
| DD4a | text | Yes | NULL | ||
| DD4b | text | Yes | NULL | ||
| DD5a | text | Yes | NULL | ||
| DD5b | text | Yes | NULL | ||
| DD5c_1 | text | Yes | NULL | ||
| DD5c_2 | text | Yes | NULL | ||
| DD5c_3 | text | Yes | NULL | ||
| DD5c_5 | text | Yes | NULL | ||
| DD5c_96 | text | Yes | NULL | ||
| DD5co | text | Yes | NULL | ||
| sect1.2_note1 | text | Yes | NULL | Descriptive text field | |
| sect1.2_note2 | text | Yes | NULL | Descriptive text field | |
| D1 | text | Yes | NULL | ||
| D2 | text | Yes | NULL | ||
| sect1.2_note3 | text | Yes | NULL | Descriptive text field | |
| D3 | text | Yes | NULL | ||
| D4 | text | Yes | NULL | ||
| sect1.2_note4 | text | Yes | NULL | Descriptive text field | |
| D5 | text | Yes | NULL | ||
| D6 | text | Yes | NULL | ||
| D7 | text | Yes | NULL | ||
| sect1.2_note5 | text | Yes | NULL | Descriptive text field | |
| D8 | text | Yes | NULL | ||
| D9 | text | Yes | NULL | ||
| D10 | text | Yes | NULL | ||
| sect1.2_note6 | text | Yes | NULL | Descriptive text field | |
| S1 | text | Yes | NULL | ||
| S2 | text | Yes | NULL | ||
| sect1.2_note7 | text | Yes | NULL | Descriptive text field | |
| S3 | text | Yes | NULL | ||
| S4 | text | Yes | NULL | ||
| sect1.2_note8 | text | Yes | NULL | Descriptive text field | |
| S5 | text | Yes | NULL | ||
| S6 | text | Yes | NULL | ||
| sect1.2_note9 | text | Yes | NULL | Descriptive text field | |
| S7a | text | Yes | NULL | ||
| S7b | text | Yes | NULL | ||
| sect1.2_note10 | text | Yes | NULL | Descriptive text field | |
| S8 | text | Yes | NULL | ||
| S9 | text | Yes | NULL | ||
| sect1.2_note11 | text | Yes | NULL | Descriptive text field | |
| P1 | text | Yes | NULL | ||
| P2 | text | Yes | NULL | ||
| sect1.2_note12 | text | Yes | NULL | Descriptive text field | |
| P3 | text | Yes | NULL | ||
| P4 | text | Yes | NULL | ||
| sect1.2_note13 | text | Yes | NULL | Descriptive text field | |
| P5 | text | Yes | NULL | ||
| P6 | text | Yes | NULL | ||
| sect1.2_note14 | text | Yes | NULL | Descriptive text field | |
| P7 | text | Yes | NULL | ||
| P8 | text | Yes | NULL | ||
| sect1.2_note15 | text | Yes | NULL | Descriptive text field | |
| P9 | text | Yes | NULL | ||
| P10 | text | Yes | NULL | ||
| sect1.2_note16 | text | Yes | NULL | Descriptive text field | |
| P11 | text | Yes | NULL | ||
| P12 | text | Yes | NULL | ||
| sect1.2_note18 | text | Yes | NULL | Descriptive text field | |
| BC1 | text | Yes | NULL | ||
| BC2 | text | Yes | NULL | ||
| sect1.2_note19 | text | Yes | NULL | Descriptive text field | |
| BC3 | text | Yes | NULL | ||
| BC4 | text | Yes | NULL | ||
| sect1.2_note20 | text | Yes | NULL | Descriptive text field | |
| BC5 | text | Yes | NULL | ||
| BC6 | text | Yes | NULL | ||
| knowledge_note1 | text | Yes | NULL | Descriptive text field | |
| U1A | text | Yes | NULL | ||
| U1B | text | Yes | NULL | ||
| U1C | text | Yes | NULL | ||
| U1E | text | Yes | NULL | ||
| U1F | text | Yes | NULL | ||
| note_dqknowledge1 | text | Yes | NULL | Descriptive text field | |
| U2 | text | Yes | NULL | ||
| U3 | text | Yes | NULL | ||
| sect1.4_note | text | Yes | NULL | Descriptive text field | |
| SE1 | text | Yes | NULL | ||
| SE2 | text | Yes | NULL | ||
| SE3 | text | Yes | NULL | ||
| SE4 | text | Yes | NULL | ||
| SE5 | text | Yes | NULL | ||
| SE6 | text | Yes | NULL | ||
| OBAT113 | text | Yes | NULL | ||
| instanceID | text | Yes | NULL | ||
| instanceName | text | Yes | NULL | Name or title field | |
| formdef_version | text | Yes | NULL | ||
| review_quality | text | Yes | NULL | ||
| review_status | text | Yes | NULL | ||
| KEY | text | Yes | NULL |
This table has no foreign key relationships.
| CompletionDate | SubmissionDate | starttime | endtime | deviceid | subscriberid | simid | devicephonenum | username | duration | caseid | OBAT101 | OBAT102 | OBAT103 | OBAT104 | admin_lvl | OBAT105 | OBAT106 | OBAT107 | OBAT108 | tmp_obat106 | tmp_obat107 | tmp_obat108 | siteid | OBAT109f | OBAT110f | OBAT111 | OBAT112 | intro | DD1 | DD2 | DD3a | DD3b | DD4a | DD4b | DD5a | DD5b | DD5c_1 | DD5c_2 | DD5c_3 | DD5c_5 | DD5c_96 | DD5co | sect1.2_note1 | sect1.2_note2 | D1 | D2 | sect1.2_note3 | D3 | D4 | sect1.2_note4 | D5 | D6 | D7 | sect1.2_note5 | D8 | D9 | D10 | sect1.2_note6 | S1 | S2 | sect1.2_note7 | S3 | S4 | sect1.2_note8 | S5 | S6 | sect1.2_note9 | S7a | S7b | sect1.2_note10 | S8 | S9 | sect1.2_note11 | P1 | P2 | sect1.2_note12 | P3 | P4 | sect1.2_note13 | P5 | P6 | sect1.2_note14 | P7 | P8 | sect1.2_note15 | P9 | P10 | sect1.2_note16 | P11 | P12 | sect1.2_note18 | BC1 | BC2 | sect1.2_note19 | BC3 | BC4 | sect1.2_note20 | BC5 | BC6 | knowledge_note1 | U1A | U1B | U1C | U1E | U1F | note_dqknowledge1 | U2 | U3 | sect1.4_note | SE1 | SE2 | SE3 | SE4 | SE5 | SE6 | OBAT113 | instanceID | instanceName | formdef_version | review_quality | review_status | KEY |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| May 11, 2024 12:20:21 PM | May 11, 2024 12:20:21 PM | May 10, 2024 7:49:33 AM | May 10, 2024 7:54:52 AM | 353316097349206 | impacteval | 319 | May 10, 2024 | Gm | 123 | 4 | 2 | XU2wpLlX4Vk | Ambo | Ambo | 1233 | Ambo | Ambo | 1233 | XU2wpLlX4Vk-Ambo-Ambo-1233 | Aware hc | 1 | 1 | 7:50:27 AM | 4 | 2 | 3 | 6 | 7 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | Dagu,Datim | 4 | 4 | 2 | 3 | 3 | 3 | 5 | 2 | 4 | 3 | 5 | 5 | 3 | 3 | 3 | 5 | 3 | 3 | 3 | 4 | 4 | 3 | 4 | 3 | 3 | 3 | 3 | 3 | 4 | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 1 | 3 | 1 | 2 | 1 | 3 | 1 | 5 | 6 | 7 | 5 | 6 | 7 | 7:54:43 AM | uuid:89a05c69-f22b-4e60-b6b8-a23c0b02b7f7 | XU2wpLlX4Vk-Ambo-Ambo-1233 | 2204252125 | APPROVED | uuid:89a05c69-f22b-4e60-b6b8-a23c0b02b7f7 |
Showing 1 sample records. Hover over cells to see full content.
ethprism_facility_level_rhis_performance_diagnostic
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| CompletionDate | text | Yes | NULL | Date/time field | |
| SubmissionDate | text | Yes | NULL | Date/time field | |
| starttime | text | Yes | NULL | Date/time field | |
| endtime | text | Yes | NULL | Date/time field | |
| deviceid | text | Yes | NULL | ||
| subscriberid | text | Yes | NULL | ||
| simid | text | Yes | NULL | ||
| devicephonenum | text | Yes | NULL | Phone number field | |
| username | text | Yes | NULL | Name or title field | |
| duration | text | Yes | NULL | ||
| caseid | text | Yes | NULL | ||
| FQ104 | text | Yes | NULL | ||
| FQ101 | text | Yes | NULL | ||
| FQ102 | text | Yes | NULL | ||
| FQ103 | text | Yes | NULL | ||
| FQ105 | text | Yes | NULL | ||
| FQ106 | text | Yes | NULL | ||
| FQ107 | text | Yes | NULL | ||
| FQ108 | text | Yes | NULL | ||
| siteid | text | Yes | NULL | ||
| FQ109 | text | Yes | NULL | ||
| FQ110 | text | Yes | NULL | ||
| FQ111 | text | Yes | NULL | ||
| intro | text | Yes | NULL | ||
| FQ112 | text | Yes | NULL | ||
| revw_mos_note | text | Yes | NULL | Descriptive text field | |
| Month1 | text | Yes | NULL | ||
| month1_fmt | text | Yes | NULL | ||
| Month2 | text | Yes | NULL | ||
| month2_fmt | text | Yes | NULL | ||
| Month3 | text | Yes | NULL | ||
| month3_fmt | text | Yes | NULL | ||
| FQ010 | text | Yes | NULL | ||
| FQ011 | text | Yes | NULL | ||
| FQ012a | text | Yes | NULL | ||
| FQ012b | text | Yes | NULL | ||
| FQ013 | text | Yes | NULL | ||
| FQ014 | text | Yes | NULL | ||
| fq015_label | text | Yes | NULL | ||
| FQ015a | text | Yes | NULL | ||
| FQ015b | text | Yes | NULL | ||
| FQ015c | text | Yes | NULL | ||
| FQ015d | text | Yes | NULL | ||
| FQ016_1 | text | Yes | NULL | ||
| fq017_note1 | text | Yes | NULL | Descriptive text field | |
| fq017_note2 | text | Yes | NULL | Descriptive text field | |
| FQ017_1a | text | Yes | NULL | ||
| FQ017_2a | text | Yes | NULL | ||
| FQ017_3a | text | Yes | NULL | ||
| sba_src_avail1 | text | Yes | NULL | ||
| sba_src_avail2 | text | Yes | NULL | ||
| sba_src_avail3 | text | Yes | NULL | ||
| sba_src_avail_note | text | Yes | NULL | Descriptive text field | |
| sba_src_compl1 | text | Yes | NULL | ||
| sba_src_compl2 | text | Yes | NULL | ||
| sba_src_compl3 | text | Yes | NULL | ||
| sba_src_compl_note | text | Yes | NULL | Descriptive text field | |
| sba_srcdoc_rpts6 | text | Yes | NULL | ||
| FQ017_1b | text | Yes | NULL | ||
| FQ017_2b | text | Yes | NULL | ||
| FQ017_3b | text | Yes | NULL | ||
| fq020_note1 | text | Yes | NULL | Descriptive text field | |
| fq020_note2 | text | Yes | NULL | Descriptive text field | |
| FQ020_1a | text | Yes | NULL | ||
| FQ020_2a | text | Yes | NULL | ||
| FQ020_3a | text | Yes | NULL | ||
| sba_rpt_avail1 | text | Yes | NULL | ||
| sba_rpt_avail2 | text | Yes | NULL | ||
| sba_rpt_avail3 | text | Yes | NULL | ||
| sba_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| sba_rpt_compl1 | text | Yes | NULL | ||
| sba_rpt_compl2 | text | Yes | NULL | ||
| sba_rpt_compl3 | text | Yes | NULL | ||
| sba_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| sba_srcdoc_rpts9 | text | Yes | NULL | ||
| FQ020_1b | text | Yes | NULL | ||
| FQ020_2b | text | Yes | NULL | ||
| FQ020_3b | text | Yes | NULL | ||
| tmp_fq017_1b | text | Yes | NULL | ||
| tmp_fq020_1b | text | Yes | NULL | ||
| tmp_sba_vf1 | text | Yes | NULL | ||
| sba_vf1 | text | Yes | NULL | ||
| tmp_sba_vf1_diff | text | Yes | NULL | ||
| sba_vf1_diff | text | Yes | NULL | ||
| tmp_fq017_2b | text | Yes | NULL | ||
| tmp_fq020_2b | text | Yes | NULL | ||
| tmp_sba_vf2 | text | Yes | NULL | ||
| sba_vf2 | text | Yes | NULL | ||
| tmp_sba_vf2_diff | text | Yes | NULL | ||
| sba_vf2_diff | text | Yes | NULL | ||
| tmp_fq017_3b | text | Yes | NULL | ||
| tmp_fq020_3b | text | Yes | NULL | ||
| tmp_sba_vf3 | text | Yes | NULL | ||
| sba_vf3 | text | Yes | NULL | ||
| tmp_sba_vf3_diff | text | Yes | NULL | ||
| sba_vf3_diff | text | Yes | NULL | ||
| sba_vf1_note | text | Yes | NULL | Descriptive text field | |
| sba_vf2_note | text | Yes | NULL | Descriptive text field | |
| sba_vf3_note | text | Yes | NULL | Descriptive text field | |
| sba_vf_note | text | Yes | NULL | Descriptive text field | |
| FQ024 | text | Yes | NULL | ||
| FQ025 | text | Yes | NULL | ||
| fq026_label | text | Yes | NULL | ||
| FQ026a | text | Yes | NULL | ||
| FQ026b | text | Yes | NULL | ||
| FQ026c | text | Yes | NULL | ||
| FQ026d | text | Yes | NULL | ||
| FQ027_1 | text | Yes | NULL | ||
| fq028_note1 | text | Yes | NULL | Descriptive text field | |
| fq028_note2 | text | Yes | NULL | Descriptive text field | |
| FQ028_1a | text | Yes | NULL | ||
| FQ028_2a | text | Yes | NULL | ||
| FQ028_3a | text | Yes | NULL | ||
| dtp3_src_avail1 | text | Yes | NULL | ||
| dtp3_src_avail2 | text | Yes | NULL | ||
| dtp3_src_avail3 | text | Yes | NULL | ||
| dtp3_src_avail_note | text | Yes | NULL | Descriptive text field | |
| dtp3_src_compl1 | text | Yes | NULL | ||
| dtp3_src_compl2 | text | Yes | NULL | ||
| dtp3_src_compl3 | text | Yes | NULL | ||
| dtp3_src_compl_note | text | Yes | NULL | Descriptive text field | |
| dtp3_srcdoc_rpts5 | text | Yes | NULL | ||
| FQ028_1b | text | Yes | NULL | ||
| FQ028_2b | text | Yes | NULL | ||
| FQ028_3b | text | Yes | NULL | ||
| fq031_note1 | text | Yes | NULL | Descriptive text field | |
| fq031_note2 | text | Yes | NULL | Descriptive text field | |
| FQ031_1a | text | Yes | NULL | ||
| FQ031_2a | text | Yes | NULL | ||
| FQ031_3a | text | Yes | NULL | ||
| dtp3_rpt_avail1 | text | Yes | NULL | ||
| dtp3_rpt_avail2 | text | Yes | NULL | ||
| dtp3_rpt_avail3 | text | Yes | NULL | ||
| dtp3_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| dtp3_rpt_compl1 | text | Yes | NULL | ||
| dtp3_rpt_compl2 | text | Yes | NULL | ||
| dtp3_rpt_compl3 | text | Yes | NULL | ||
| dtp3_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| dtp3_srcdoc_rpts8 | text | Yes | NULL | ||
| FQ031_1b | text | Yes | NULL | ||
| FQ031_2b | text | Yes | NULL | ||
| FQ031_3b | text | Yes | NULL | ||
| tmp_fq028_1b | text | Yes | NULL | ||
| tmp_fq031_1b | text | Yes | NULL | ||
| tmp_dtp3_vf1 | text | Yes | NULL | ||
| dtp3_vf1 | text | Yes | NULL | ||
| tmp_dtp3_vf1_diff | text | Yes | NULL | ||
| dtp3_vf1_diff | text | Yes | NULL | ||
| tmp_fq028_2b | text | Yes | NULL | ||
| tmp_fq031_2b | text | Yes | NULL | ||
| tmp_dtp3_vf2 | text | Yes | NULL | ||
| dtp3_vf2 | text | Yes | NULL | ||
| tmp_dtp3_vf2_diff | text | Yes | NULL | ||
| dtp3_vf2_diff | text | Yes | NULL | ||
| tmp_fq028_3b | text | Yes | NULL | ||
| tmp_fq031_3b | text | Yes | NULL | ||
| tmp_dtp3_vf3 | text | Yes | NULL | ||
| dtp3_vf3 | text | Yes | NULL | ||
| tmp_dtp3_vf3_diff | text | Yes | NULL | ||
| dtp3_vf3_diff | text | Yes | NULL | ||
| dtp3_vf1_note | text | Yes | NULL | Descriptive text field | |
| dtp3_vf2_note | text | Yes | NULL | Descriptive text field | |
| dtp3_vf3_note | text | Yes | NULL | Descriptive text field | |
| dtp3_vf_note | text | Yes | NULL | Descriptive text field | |
| FQ034_1 | text | Yes | NULL | ||
| FQ035 | text | Yes | NULL | ||
| FQ036 | text | Yes | NULL | ||
| fq037_label | text | Yes | NULL | ||
| FQ037a | text | Yes | NULL | ||
| FQ037b | text | Yes | NULL | ||
| FQ037c | text | Yes | NULL | ||
| FQ037d | text | Yes | NULL | ||
| FQ038_1 | text | Yes | NULL | ||
| fq039_note1 | text | Yes | NULL | Descriptive text field | |
| fq039_note2 | text | Yes | NULL | Descriptive text field | |
| FQ039_1a | text | Yes | NULL | ||
| FQ039_2a | text | Yes | NULL | ||
| FQ039_3a | text | Yes | NULL | ||
| mcm_src_avail1 | text | Yes | NULL | ||
| mcm_src_avail2 | text | Yes | NULL | ||
| mcm_src_avail3 | text | Yes | NULL | ||
| mcm_src_avail_note | text | Yes | NULL | Descriptive text field | |
| mcm_src_compl1 | text | Yes | NULL | ||
| mcm_src_compl2 | text | Yes | NULL | ||
| mcm_src_compl3 | text | Yes | NULL | ||
| mcm_src_compl_note | text | Yes | NULL | Descriptive text field | |
| mcm_srcdoc_rpts5 | text | Yes | NULL | ||
| FQ039_1b | text | Yes | NULL | ||
| FQ039_2b | text | Yes | NULL | ||
| FQ039_3b | text | Yes | NULL | ||
| fq042_note1 | text | Yes | NULL | Descriptive text field | |
| fq042_note2 | text | Yes | NULL | Descriptive text field | |
| FQ042_1a | text | Yes | NULL | ||
| FQ042_2a | text | Yes | NULL | ||
| FQ042_3a | text | Yes | NULL | ||
| mcm_rpt_avail1 | text | Yes | NULL | ||
| mcm_rpt_avail2 | text | Yes | NULL | ||
| mcm_rpt_avail3 | text | Yes | NULL | ||
| mcm_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| mcm_rpt_compl1 | text | Yes | NULL | ||
| mcm_rpt_compl2 | text | Yes | NULL | ||
| mcm_rpt_compl3 | text | Yes | NULL | ||
| mcm_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| mcm_srcdoc_rpts8 | text | Yes | NULL | ||
| FQ042_1b | text | Yes | NULL | ||
| FQ042_2b | text | Yes | NULL | ||
| FQ042_3b | text | Yes | NULL | ||
| tmp_fq039_1b | text | Yes | NULL | ||
| tmp_fq042_1b | text | Yes | NULL | ||
| tmp_mcm_vf1 | text | Yes | NULL | ||
| mcm_vf1 | text | Yes | NULL | ||
| tmp_mcm_vf1_diff | text | Yes | NULL | ||
| mcm_vf1_diff | text | Yes | NULL | ||
| tmp_fq039_2b | text | Yes | NULL | ||
| tmp_fq042_2b | text | Yes | NULL | ||
| tmp_mcm_vf2 | text | Yes | NULL | ||
| mcm_vf2 | text | Yes | NULL | ||
| tmp_mcm_vf2_diff | text | Yes | NULL | ||
| mcm_vf2_diff | text | Yes | NULL | ||
| tmp_fq039_3b | text | Yes | NULL | ||
| tmp_fq042_3b | text | Yes | NULL | ||
| tmp_mcm_vf3 | text | Yes | NULL | ||
| mcm_vf3 | text | Yes | NULL | ||
| tmp_mcm_vf3_diff | text | Yes | NULL | ||
| mcm_vf3_diff | text | Yes | NULL | ||
| mcm_vf1_note | text | Yes | NULL | Descriptive text field | |
| mcm_vf2_note | text | Yes | NULL | Descriptive text field | |
| mcm_vf3_note | text | Yes | NULL | Descriptive text field | |
| mcm_vf_note | text | Yes | NULL | Descriptive text field | |
| FQ046 | text | Yes | NULL | ||
| hivpos_src_avail1 | text | Yes | NULL | ||
| hivpos_src_avail2 | text | Yes | NULL | ||
| hivpos_src_avail3 | text | Yes | NULL | ||
| hivpos_src_compl1 | text | Yes | NULL | ||
| hivpos_src_compl2 | text | Yes | NULL | ||
| hivpos_src_compl3 | text | Yes | NULL | ||
| hivpos_rpt_avail1 | text | Yes | NULL | ||
| hivpos_rpt_avail2 | text | Yes | NULL | ||
| hivpos_rpt_avail3 | text | Yes | NULL | ||
| hivpos_rpt_compl1 | text | Yes | NULL | ||
| hivpos_rpt_compl2 | text | Yes | NULL | ||
| hivpos_rpt_compl3 | text | Yes | NULL | ||
| tmp_fq050_1b | text | Yes | NULL | ||
| tmp_fq053_1b | text | Yes | NULL | ||
| tmp_hivpos_vf1 | text | Yes | NULL | ||
| hivpos_vf1 | text | Yes | NULL | ||
| tmp_hivpos_vf1_diff | text | Yes | NULL | ||
| hivpos_vf1_diff | text | Yes | NULL | ||
| tmp_fq050_2b | text | Yes | NULL | ||
| tmp_fq053_2b | text | Yes | NULL | ||
| tmp_hivpos_vf2 | text | Yes | NULL | ||
| hivpos_vf2 | text | Yes | NULL | ||
| tmp_hivpos_vf2_diff | text | Yes | NULL | ||
| hivpos_vf2_diff | text | Yes | NULL | ||
| tmp_fq050_3b | text | Yes | NULL | ||
| tmp_fq053_3b | text | Yes | NULL | ||
| tmp_hivpos_vf3 | text | Yes | NULL | ||
| hivpos_vf3 | text | Yes | NULL | ||
| tmp_hivpos_vf3_diff | text | Yes | NULL | ||
| hivpos_vf3_diff | text | Yes | NULL | ||
| FQ057 | text | Yes | NULL | ||
| malaria_src_avail1 | text | Yes | NULL | ||
| malaria_src_avail2 | text | Yes | NULL | ||
| malaria_src_avail3 | text | Yes | NULL | ||
| malaria_src_compl1 | text | Yes | NULL | ||
| malaria_src_compl2 | text | Yes | NULL | ||
| malaria_src_compl3 | text | Yes | NULL | ||
| malaria_rpt_avail1 | text | Yes | NULL | ||
| malaria_rpt_avail2 | text | Yes | NULL | ||
| malaria_rpt_avail3 | text | Yes | NULL | ||
| malaria_rpt_compl1 | text | Yes | NULL | ||
| malaria_rpt_compl2 | text | Yes | NULL | ||
| malaria_rpt_compl3 | text | Yes | NULL | ||
| tmp_fq061_1b | text | Yes | NULL | ||
| tmp_fq064_1b | text | Yes | NULL | ||
| tmp_malaria_vf1 | text | Yes | NULL | ||
| malaria_vf1 | text | Yes | NULL | ||
| tmp_malaria_vf1_diff | text | Yes | NULL | ||
| malaria_vf1_diff | text | Yes | NULL | ||
| tmp_fq061_2b | text | Yes | NULL | ||
| tmp_fq064_2b | text | Yes | NULL | ||
| tmp_malaria_vf2 | text | Yes | NULL | ||
| malaria_vf2 | text | Yes | NULL | ||
| tmp_malaria_vf2_diff | text | Yes | NULL | ||
| malaria_vf2_diff | text | Yes | NULL | ||
| tmp_fq061_3b | text | Yes | NULL | ||
| tmp_fq064_3b | text | Yes | NULL | ||
| tmp_malaria_vf3 | text | Yes | NULL | ||
| malaria_vf3 | text | Yes | NULL | ||
| tmp_malaria_vf3_diff | text | Yes | NULL | ||
| malaria_vf3_diff | text | Yes | NULL | ||
| FQ068 | text | Yes | NULL | ||
| FQ069 | text | Yes | NULL | ||
| fq070_label | text | Yes | NULL | ||
| FQ070a | text | Yes | NULL | ||
| FQ070b | text | Yes | NULL | ||
| FQ070c | text | Yes | NULL | ||
| FQ070d | text | Yes | NULL | ||
| FQ071_1 | text | Yes | NULL | ||
| fq072_note1 | text | Yes | NULL | Descriptive text field | |
| fq072_note2 | text | Yes | NULL | Descriptive text field | |
| FQ072_1a | text | Yes | NULL | ||
| FQ072_2a | text | Yes | NULL | ||
| FQ072_3a | text | Yes | NULL | ||
| pneum_src_avail1 | text | Yes | NULL | ||
| pneum_src_avail2 | text | Yes | NULL | ||
| pneum_src_avail3 | text | Yes | NULL | ||
| pneum_src_avail_note | text | Yes | NULL | Descriptive text field | |
| pneum_src_compl1 | text | Yes | NULL | ||
| pneum_src_compl2 | text | Yes | NULL | ||
| pneum_src_compl3 | text | Yes | NULL | ||
| pneum_src_compl_note | text | Yes | NULL | Descriptive text field | |
| FQ074_1 | text | Yes | NULL | ||
| FQ072_1b | text | Yes | NULL | ||
| FQ072_2b | text | Yes | NULL | ||
| FQ072_3b | text | Yes | NULL | ||
| fq075_note1 | text | Yes | NULL | Descriptive text field | |
| fq075_note2 | text | Yes | NULL | Descriptive text field | |
| FQ075_1a | text | Yes | NULL | ||
| FQ075_2a | text | Yes | NULL | ||
| FQ075_3a | text | Yes | NULL | ||
| pneum_rpt_avail1 | text | Yes | NULL | ||
| pneum_rpt_avail2 | text | Yes | NULL | ||
| pneum_rpt_avail3 | text | Yes | NULL | ||
| pneum_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| pneum_rpt_compl1 | text | Yes | NULL | ||
| pneum_rpt_compl2 | text | Yes | NULL | ||
| pneum_rpt_compl3 | text | Yes | NULL | ||
| pneum_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| FQ077_1 | text | Yes | NULL | ||
| FQ075_1b | text | Yes | NULL | ||
| FQ075_2b | text | Yes | NULL | ||
| FQ075_3b | text | Yes | NULL | ||
| tmp_fq072_1b | text | Yes | NULL | ||
| tmp_fq075_1b | text | Yes | NULL | ||
| tmp_pneum_vf1 | text | Yes | NULL | ||
| pneum_vf1 | text | Yes | NULL | ||
| tmp_pneum_vf1_diff | text | Yes | NULL | ||
| pneum_vf1_diff | text | Yes | NULL | ||
| tmp_fq072_2b | text | Yes | NULL | ||
| tmp_fq075_2b | text | Yes | NULL | ||
| tmp_pneum_vf2 | text | Yes | NULL | ||
| pneum_vf2 | text | Yes | NULL | ||
| tmp_pneum_vf2_diff | text | Yes | NULL | ||
| pneum_vf2_diff | text | Yes | NULL | ||
| tmp_fq072_3b | text | Yes | NULL | ||
| tmp_fq075_3b | text | Yes | NULL | ||
| tmp_pneum_vf3 | text | Yes | NULL | ||
| pneum_vf3 | text | Yes | NULL | ||
| tmp_pneum_vf3_diff | text | Yes | NULL | ||
| pneum_vf3_diff | text | Yes | NULL | ||
| pneum_vf1_note | text | Yes | NULL | Descriptive text field | |
| pneum_vf2_note | text | Yes | NULL | Descriptive text field | |
| pneum_vf3_note | text | Yes | NULL | Descriptive text field | |
| pneum_vf_note | text | Yes | NULL | Descriptive text field | |
| FQ079 | text | Yes | NULL | ||
| inpatient_src_avail1 | text | Yes | NULL | ||
| inpatient_src_avail2 | text | Yes | NULL | ||
| inpatient_src_avail3 | text | Yes | NULL | ||
| inpatient_src_compl1 | text | Yes | NULL | ||
| inpatient_src_compl2 | text | Yes | NULL | ||
| inpatient_src_compl3 | text | Yes | NULL | ||
| inpatient_rpt_avail1 | text | Yes | NULL | ||
| inpatient_rpt_avail2 | text | Yes | NULL | ||
| inpatient_rpt_avail3 | text | Yes | NULL | ||
| inpatient_rpt_compl1 | text | Yes | NULL | ||
| inpatient_rpt_compl2 | text | Yes | NULL | ||
| inpatient_rpt_compl3 | text | Yes | NULL | ||
| tmp_fq083_1b | text | Yes | NULL | ||
| tmp_fq086_1b | text | Yes | NULL | ||
| tmp_inpatient_vf1 | text | Yes | NULL | ||
| inpatient_vf1 | text | Yes | NULL | ||
| tmp_inpatient_vf1_diff | text | Yes | NULL | ||
| inpatient_vf1_diff | text | Yes | NULL | ||
| tmp_fq083_2b | text | Yes | NULL | ||
| tmp_fq086_2b | text | Yes | NULL | ||
| tmp_inpatient_vf2 | text | Yes | NULL | ||
| inpatient_vf2 | text | Yes | NULL | ||
| tmp_inpatient_vf2_diff | text | Yes | NULL | ||
| inpatient_vf2_diff | text | Yes | NULL | ||
| tmp_fq083_3b | text | Yes | NULL | ||
| tmp_fq086_3b | text | Yes | NULL | ||
| tmp_inpatient_vf3 | text | Yes | NULL | ||
| inpatient_vf3 | text | Yes | NULL | ||
| tmp_inpatient_vf3_diff | text | Yes | NULL | ||
| inpatient_vf3_diff | text | Yes | NULL | ||
| FQ090 | text | Yes | NULL | ||
| tb_src_avail | text | Yes | NULL | ||
| tb_src_compl | text | Yes | NULL | ||
| tb_rpt_avail | text | Yes | NULL | ||
| tb_rpt_compl | text | Yes | NULL | ||
| tmp_fq096 | text | Yes | NULL | ||
| tmp_fq099b | text | Yes | NULL | ||
| tmp_tb_vf | text | Yes | NULL | ||
| tb_vf | text | Yes | NULL | ||
| tmp_tb_vf_diff | text | Yes | NULL | ||
| tb_vf_diff | text | Yes | NULL | ||
| FQ204a | text | Yes | NULL | ||
| FQ204b | text | Yes | NULL | ||
| FQ205 | text | Yes | NULL | ||
| fq0206_note | text | Yes | NULL | Descriptive text field | |
| fq0206_label1 | text | Yes | NULL | ||
| FQ206_1_ser | text | Yes | NULL | ||
| FQ206_1_ipd | text | Yes | NULL | ||
| FQ206_1_opd | text | Yes | NULL | ||
| fq206_label2 | text | Yes | NULL | ||
| FQ206_2_ser | text | Yes | NULL | ||
| FQ206_2_ipd | text | Yes | NULL | ||
| FQ206_2_opd | text | Yes | NULL | ||
| fq206_label3 | text | Yes | NULL | ||
| FQ206_3_ser | text | Yes | NULL | ||
| FQ206_3_ipd | text | Yes | NULL | ||
| FQ206_3_opd | text | Yes | NULL | ||
| FQ207 | text | Yes | NULL | ||
| FQ208 | text | Yes | NULL | ||
| FQ209_label1 | text | Yes | NULL | ||
| FQ_209_01_ser | text | Yes | NULL | ||
| FQ_209_01_dis | text | Yes | NULL | ||
| FQ209_label2 | text | Yes | NULL | ||
| FQ_209_02_ser | text | Yes | NULL | ||
| FQ_209_02_dis | text | Yes | NULL | ||
| FQ209_label3 | text | Yes | NULL | ||
| FQ_209_03_ser | text | Yes | NULL | ||
| FQ_209_03_dis | text | Yes | NULL | ||
| FQ210 | text | Yes | NULL | ||
| FQ211 | text | Yes | NULL | ||
| FQ212 | text | Yes | NULL | ||
| FQ213_note1 | text | Yes | NULL | Descriptive text field | |
| FQ213_1a | text | Yes | NULL | ||
| FQ213_1b | text | Yes | NULL | ||
| FQ213_note2 | text | Yes | NULL | Descriptive text field | |
| FQ213_2a | text | Yes | NULL | ||
| FQ213_2b | text | Yes | NULL | ||
| FQ213_note3 | text | Yes | NULL | Descriptive text field | |
| FQ213_3a | text | Yes | NULL | ||
| FQ213_3b | text | Yes | NULL | ||
| FQ213_note4 | text | Yes | NULL | Descriptive text field | |
| FQ213_4a | text | Yes | NULL | ||
| FQ213_4b | text | Yes | NULL | ||
| FQ213_note5 | text | Yes | NULL | Descriptive text field | |
| FQ213_5a | text | Yes | NULL | ||
| FQ213_5b | text | Yes | NULL | ||
| FQ214_note1 | text | Yes | NULL | Descriptive text field | |
| FQ214a | text | Yes | NULL | ||
| FQ214b | text | Yes | NULL | ||
| FQ214c | text | Yes | NULL | ||
| FQ214d | text | Yes | NULL | ||
| FQ214_note2 | text | Yes | NULL | Descriptive text field | |
| FQ214e | text | Yes | NULL | ||
| FQ214f | text | Yes | NULL | ||
| FQ214g | text | Yes | NULL | ||
| FQ215 | text | Yes | NULL | ||
| FQ216 | text | Yes | NULL | ||
| FQ217 | text | Yes | NULL | ||
| FQ218_note1 | text | Yes | NULL | Descriptive text field | |
| FQ218a_ser | text | Yes | NULL | ||
| FQ218a_dis | text | Yes | NULL | ||
| FQ218a_qrtr | text | Yes | NULL | ||
| FQ218_note2 | text | Yes | NULL | Descriptive text field | |
| FQ218b_ser | text | Yes | NULL | ||
| FQ218b_dis | text | Yes | NULL | ||
| FQ218b_qrtr | text | Yes | NULL | ||
| FQ218_note3 | text | Yes | NULL | Descriptive text field | |
| FQ218c_ser | text | Yes | NULL | ||
| FQ218c_dis | text | Yes | NULL | ||
| FQ218c_qrtr | text | Yes | NULL | ||
| fq218_tot_ser | text | Yes | NULL | ||
| fq218_tot_dis | text | Yes | NULL | ||
| fq218_tot_qrtr | text | Yes | NULL | ||
| fq218_total | text | Yes | NULL | ||
| fq218_note_ser | text | Yes | NULL | Descriptive text field | |
| fq218_note_dis | text | Yes | NULL | Descriptive text field | |
| fq218_note_qrtr | text | Yes | NULL | Descriptive text field | |
| fq219_note1 | text | Yes | NULL | Descriptive text field | |
| FQ219_A1_ser | text | Yes | NULL | ||
| FQ219_A1_dis | text | Yes | NULL | ||
| fq219_note2 | text | Yes | NULL | Descriptive text field | |
| fq219_note3 | text | Yes | NULL | Descriptive text field | |
| tmp_fq219a1_ser | text | Yes | NULL | ||
| tmp_fq219a1_dis | text | Yes | NULL | ||
| tmp_fq219a2_ser | text | Yes | NULL | ||
| tmp_fq219a2_dis | text | Yes | NULL | ||
| tmp_fq219a3_ser | text | Yes | NULL | ||
| tmp_fq219a3_dis | text | Yes | NULL | ||
| fq219a_tot_ser | text | Yes | NULL | ||
| fq219a_tot_dis | text | Yes | NULL | ||
| tmp_rptg_ser_complns_hp1 | text | Yes | NULL | ||
| rptg_ser_complns_hp1 | text | Yes | NULL | ||
| tmp_rptg_dis_complns_hp1 | text | Yes | NULL | ||
| rptg_dis_complns_hp1 | text | Yes | NULL | ||
| rptg_sercomplns_hp1_note | text | Yes | NULL | Descriptive text field | |
| rptg_discomplns_hp1_note | text | Yes | NULL | Descriptive text field | |
| fq219_note4 | text | Yes | NULL | Descriptive text field | |
| FQ219_B1_ser | text | Yes | NULL | ||
| FQ219_B1_dis | text | Yes | NULL | ||
| fq219_note5 | text | Yes | NULL | Descriptive text field | |
| fq219_note6 | text | Yes | NULL | Descriptive text field | |
| tmp_fq219b1_ser | text | Yes | NULL | ||
| tmp_fq219b1_dis | text | Yes | NULL | ||
| tmp_fq219b2_ser | text | Yes | NULL | ||
| tmp_fq219b2_dis | text | Yes | NULL | ||
| tmp_fq219b3_ser | text | Yes | NULL | ||
| tmp_fq219b3_dis | text | Yes | NULL | ||
| fq219b_tot_ser | text | Yes | NULL | ||
| fq219b_tot_dis | text | Yes | NULL | ||
| tmp_rptg_ser_complns_hp2 | text | Yes | NULL | ||
| rptg_ser_complns_hp2 | text | Yes | NULL | ||
| tmp_rptg_dis_complns_hp2 | text | Yes | NULL | ||
| rptg_dis_complns_hp2 | text | Yes | NULL | ||
| rptg_sercomplns_hp2_note | text | Yes | NULL | Descriptive text field | |
| rptg_discomplns_hp2_note | text | Yes | NULL | Descriptive text field | |
| fq219_note7 | text | Yes | NULL | Descriptive text field | |
| FQ219_C1_ser | text | Yes | NULL | ||
| FQ219_C1_dis | text | Yes | NULL | ||
| FQ219_C1_qrtr | text | Yes | NULL | ||
| fq219_note8 | text | Yes | NULL | Descriptive text field | |
| fq219_note9 | text | Yes | NULL | Descriptive text field | |
| tmp_fq219c1_ser | text | Yes | NULL | ||
| tmp_fq219c1_dis | text | Yes | NULL | ||
| tmp_fq219c1_qrtr | text | Yes | NULL | ||
| tmp_fq219c2_ser | text | Yes | NULL | ||
| tmp_fq219c2_dis | text | Yes | NULL | ||
| tmp_fq219c2_qrtr | text | Yes | NULL | ||
| tmp_fq219c3_ser | text | Yes | NULL | ||
| tmp_fq219c3_dis | text | Yes | NULL | ||
| tmp_fq219c3_qrtr | text | Yes | NULL | ||
| fq219c_tot_ser | text | Yes | NULL | ||
| fq219c_tot_dis | text | Yes | NULL | ||
| fq219c_tot_qrtr | text | Yes | NULL | ||
| tmp_rptg_ser_complns_hp3 | text | Yes | NULL | ||
| rptg_ser_complns_hp3 | text | Yes | NULL | ||
| tmp_rptg_dis_complns_hp3 | text | Yes | NULL | ||
| rptg_dis_complns_hp3 | text | Yes | NULL | ||
| tmp_rptg_qrtr_complns_hp3 | text | Yes | NULL | ||
| rptg_qrtr_complns_hp3 | text | Yes | NULL | ||
| rptg_sercomplns_hp3_note | text | Yes | NULL | Descriptive text field | |
| rptg_discomplns_hp3_note | text | Yes | NULL | Descriptive text field | |
| rptg_qrtrcomplns_hp3_note | text | Yes | NULL | Descriptive text field | |
| compl_hc14 | text | Yes | NULL | ||
| FQ221 | text | Yes | NULL | ||
| FQ221b | text | Yes | NULL | ||
| FQ222 | text | Yes | NULL | ||
| fq223_note1 | text | Yes | NULL | Descriptive text field | |
| FQ223_01_ser | text | Yes | NULL | ||
| FQ223_01_dis | text | Yes | NULL | ||
| fq223_note2 | text | Yes | NULL | Descriptive text field | |
| FQ223_02_ser | text | Yes | NULL | ||
| FQ223_02_dis | text | Yes | NULL | ||
| fq223_note3 | text | Yes | NULL | Descriptive text field | |
| FQ223_03_ser | text | Yes | NULL | ||
| FQ223_03_dis | text | Yes | NULL | ||
| tmp_fq223_01_ser | text | Yes | NULL | ||
| tmp_fq223_01_dis | text | Yes | NULL | ||
| tmp_rpt_sertimelns_hp1 | text | Yes | NULL | Date/time field | |
| rpt_sertimelns_hp1 | text | Yes | NULL | Date/time field | |
| tmp_rpt_distimelns_hp1 | text | Yes | NULL | Date/time field | |
| rpt_distimelns_hp1 | text | Yes | NULL | Date/time field | |
| rpt_sertimelns_hp1_note | text | Yes | NULL | Date/time field | |
| rpt_distimelns_hp1_note | text | Yes | NULL | Date/time field | |
| tmp_fq223_02_ser | text | Yes | NULL | ||
| tmp_fq223_02_dis | text | Yes | NULL | ||
| tmp_rpt_sertimelns_hp2 | text | Yes | NULL | Date/time field | |
| rpt_sertimelns_hp2 | text | Yes | NULL | Date/time field | |
| tmp_rpt_distimelns_hp2 | text | Yes | NULL | Date/time field | |
| rpt_distimelns_hp2 | text | Yes | NULL | Date/time field | |
| rpt_sertimelns_hp2_note | text | Yes | NULL | Date/time field | |
| rpt_distimelns_hp2_note | text | Yes | NULL | Date/time field | |
| tmp_fq223_03_ser | text | Yes | NULL | ||
| tmp_fq223_03_dis | text | Yes | NULL | ||
| tmp_rpt_sertimelns_hp3 | text | Yes | NULL | Date/time field | |
| rpt_sertimelns_hp3 | text | Yes | NULL | Date/time field | |
| tmp_rpt_distimelns_hp3 | text | Yes | NULL | Date/time field | |
| rpt_distimelns_hp3 | text | Yes | NULL | Date/time field | |
| rpt_sertimelns_hp3_note | text | Yes | NULL | Date/time field | |
| rpt_distimelns_hp3_note | text | Yes | NULL | Date/time field | |
| FU003 | text | Yes | NULL | ||
| fu003_rcd | text | Yes | NULL | ||
| FU005 | text | Yes | NULL | ||
| FU006 | text | Yes | NULL | ||
| fu008_label1 | text | Yes | NULL | ||
| FU008_01 | text | Yes | NULL | ||
| FU008_02 | text | Yes | NULL | ||
| FU008_03 | text | Yes | NULL | ||
| FU008_04 | text | Yes | NULL | ||
| fu008_label2 | text | Yes | NULL | ||
| FU008_05 | text | Yes | NULL | ||
| FU008_06 | text | Yes | NULL | ||
| FU008_07 | text | Yes | NULL | ||
| FU009 | text | Yes | NULL | ||
| fu009_rcd | text | Yes | NULL | ||
| fu010_note | text | Yes | NULL | Descriptive text field | |
| FU010a | text | Yes | NULL | ||
| FU010b | text | Yes | NULL | ||
| FU011 | text | Yes | NULL | ||
| FU012 | text | Yes | NULL | ||
| FU013 | text | Yes | NULL | ||
| FU014 | text | Yes | NULL | ||
| FU015_label | text | Yes | NULL | ||
| FU015_01 | text | Yes | NULL | ||
| FU015_02 | text | Yes | NULL | ||
| FU015_03 | text | Yes | NULL | ||
| FU016 | text | Yes | NULL | ||
| note_dscnmkg1 | text | Yes | NULL | Descriptive text field | |
| FU018_01 | text | Yes | NULL | ||
| FU018_02 | text | Yes | NULL | ||
| FU018_03 | text | Yes | NULL | ||
| FU020_note | text | Yes | NULL | Descriptive text field | |
| FU020a | text | Yes | NULL | ||
| FU020b | text | Yes | NULL | ||
| FU021a_label | text | Yes | NULL | ||
| FU021a_01 | text | Yes | NULL | ||
| FU021a_02 | text | Yes | NULL | ||
| FU021a_03 | text | Yes | NULL | ||
| FU021a_04 | text | Yes | NULL | ||
| FU021a_05 | text | Yes | NULL | ||
| FU021a_06 | text | Yes | NULL | ||
| FU021a_07 | text | Yes | NULL | ||
| FU021b | text | Yes | NULL | ||
| FU021c | text | Yes | NULL | ||
| FU021d_label1 | text | Yes | NULL | ||
| FU021d_01 | text | Yes | NULL | ||
| FU021d_02 | text | Yes | NULL | ||
| FU021d_03 | text | Yes | NULL | ||
| FU021d_04 | text | Yes | NULL | ||
| FU021d_05 | text | Yes | NULL | ||
| FU021d_label2 | text | Yes | NULL | ||
| FU021d_06 | text | Yes | NULL | ||
| FU021d_07 | text | Yes | NULL | ||
| FU021d_08 | text | Yes | NULL | ||
| FU021d_09 | text | Yes | NULL | ||
| FU021d_10 | text | Yes | NULL | ||
| FU021e | text | Yes | NULL | ||
| FU021f | text | Yes | NULL | ||
| FU022 | text | Yes | NULL | ||
| FU023 | text | Yes | NULL | ||
| FU024 | text | Yes | NULL | ||
| FU025 | text | Yes | NULL | ||
| FU026 | text | Yes | NULL | ||
| FU027 | text | Yes | NULL | ||
| FU028 | text | Yes | NULL | ||
| FU030 | text | Yes | NULL | ||
| FU031 | text | Yes | NULL | ||
| FU032 | text | Yes | NULL | ||
| FU033 | text | Yes | NULL | ||
| FU034 | text | Yes | NULL | ||
| FU035 | text | Yes | NULL | ||
| FU036 | text | Yes | NULL | ||
| FU038 | text | Yes | NULL | ||
| FU039 | text | Yes | NULL | ||
| FU040 | text | Yes | NULL | ||
| FU041 | text | Yes | NULL | ||
| FU042 | text | Yes | NULL | ||
| FU043 | text | Yes | NULL | ||
| gps_note | text | Yes | NULL | Descriptive text field | |
| FQ113 | text | Yes | NULL | ||
| note_end | text | Yes | NULL | Descriptive text field | |
| instanceID | text | Yes | NULL | ||
| instanceName | text | Yes | NULL | Name or title field | |
| formdef_version | text | Yes | NULL | ||
| review_quality | text | Yes | NULL | ||
| review_status | text | Yes | NULL | ||
| KEY | text | Yes | NULL | ||
| FU037 | text | Yes | NULL | ||
| FQ027_2 | text | Yes | NULL | ||
| FQ030_1 | text | Yes | NULL | ||
| FQ030_4 | text | Yes | NULL | ||
| FQ038_2 | text | Yes | NULL | ||
| FQ041_1 | text | Yes | NULL | ||
| FQ041_4 | text | Yes | NULL | ||
| FQ045_1 | text | Yes | NULL | ||
| FQ045_2 | text | Yes | NULL | ||
| FQ045_3 | text | Yes | NULL | ||
| FQ045_4 | text | Yes | NULL | ||
| FQ047 | text | Yes | NULL | ||
| fq048_label | text | Yes | NULL | ||
| FQ048a | text | Yes | NULL | ||
| FQ048b | text | Yes | NULL | ||
| FQ048c | text | Yes | NULL | ||
| FQ048d | text | Yes | NULL | ||
| FQ049_1 | text | Yes | NULL | ||
| FQ049_2 | text | Yes | NULL | ||
| FQ049_3 | text | Yes | NULL | ||
| FQ049_4 | text | Yes | NULL | ||
| fq050_note1 | text | Yes | NULL | Descriptive text field | |
| fq050_note2 | text | Yes | NULL | Descriptive text field | |
| FQ050_1a | text | Yes | NULL | ||
| FQ050_2a | text | Yes | NULL | ||
| FQ050_3a | text | Yes | NULL | ||
| hivpos_src_avail_note | text | Yes | NULL | Descriptive text field | |
| hivpos_src_compl_note | text | Yes | NULL | Descriptive text field | |
| hivpos_srcdoc_rpts5 | text | Yes | NULL | ||
| FQ050_1b | text | Yes | NULL | ||
| FQ050_2b | text | Yes | NULL | ||
| FQ050_3b | text | Yes | NULL | ||
| fq053_note1 | text | Yes | NULL | Descriptive text field | |
| fq053_note2 | text | Yes | NULL | Descriptive text field | |
| FQ053_1a | text | Yes | NULL | ||
| FQ053_2a | text | Yes | NULL | ||
| FQ053_3a | text | Yes | NULL | ||
| hivpos_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| hivpos_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| hivpos_srcdoc_rpts8 | text | Yes | NULL | ||
| FQ053_1b | text | Yes | NULL | ||
| FQ053_2b | text | Yes | NULL | ||
| FQ053_3b | text | Yes | NULL | ||
| hivpos_vf1_note | text | Yes | NULL | Descriptive text field | |
| hivpos_vf2_note | text | Yes | NULL | Descriptive text field | |
| hivpos_vf3_note | text | Yes | NULL | Descriptive text field | |
| hivpos_vf_note | text | Yes | NULL | Descriptive text field | |
| FQ058 | text | Yes | NULL | ||
| fq059_label | text | Yes | NULL | ||
| FQ059a | text | Yes | NULL | ||
| FQ059b | text | Yes | NULL | ||
| FQ059c | text | Yes | NULL | ||
| FQ059d | text | Yes | NULL | ||
| FQ060_1 | text | Yes | NULL | ||
| FQ060_96 | text | Yes | NULL | ||
| FQ060o | text | Yes | NULL | ||
| fq061_note1 | text | Yes | NULL | Descriptive text field | |
| fq061_note2 | text | Yes | NULL | Descriptive text field | |
| FQ061_1a | text | Yes | NULL | ||
| FQ061_2a | text | Yes | NULL | ||
| FQ061_3a | text | Yes | NULL | ||
| malaria_src_avail_note | text | Yes | NULL | Descriptive text field | |
| malaria_src_compl_note | text | Yes | NULL | Descriptive text field | |
| malaria_srcdoc_rpts5 | text | Yes | NULL | ||
| FQ061_1b | text | Yes | NULL | ||
| FQ061_2b | text | Yes | NULL | ||
| FQ061_3b | text | Yes | NULL | ||
| fq064_note1 | text | Yes | NULL | Descriptive text field | |
| fq064_note2 | text | Yes | NULL | Descriptive text field | |
| FQ064_1a | text | Yes | NULL | ||
| FQ064_2a | text | Yes | NULL | ||
| FQ064_3a | text | Yes | NULL | ||
| malaria_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| malaria_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| malaria_srcdoc_rpts8 | text | Yes | NULL | ||
| FQ064_1b | text | Yes | NULL | ||
| FQ064_2b | text | Yes | NULL | ||
| FQ064_3b | text | Yes | NULL | ||
| malaria_vf1_note | text | Yes | NULL | Descriptive text field | |
| malaria_vf2_note | text | Yes | NULL | Descriptive text field | |
| malaria_vf3_note | text | Yes | NULL | Descriptive text field | |
| malaria_vf_note | text | Yes | NULL | Descriptive text field | |
| FQ071_2 | text | Yes | NULL | ||
| pneum_srcdoc_rpts5 | text | Yes | NULL | ||
| pneum_srcdoc_rpts8 | text | Yes | NULL | ||
| FQ078_2 | text | Yes | NULL | ||
| FQ078_5 | text | Yes | NULL | ||
| FQ080 | text | Yes | NULL | ||
| fq081_label | text | Yes | NULL | ||
| FQ081a | text | Yes | NULL | ||
| FQ081b | text | Yes | NULL | ||
| FQ081c | text | Yes | NULL | ||
| FQ081d | text | Yes | NULL | ||
| FQ082_1 | text | Yes | NULL | ||
| FQ082_2 | text | Yes | NULL | ||
| fq083_note1 | text | Yes | NULL | Descriptive text field | |
| fq083_note2 | text | Yes | NULL | Descriptive text field | |
| FQ083_1a | text | Yes | NULL | ||
| FQ083_2a | text | Yes | NULL | ||
| FQ083_3a | text | Yes | NULL | ||
| inpatient_src_avail_note | text | Yes | NULL | Descriptive text field | |
| inpatient_src_compl_note | text | Yes | NULL | Descriptive text field | |
| FQ085_1 | text | Yes | NULL | ||
| FQ085_4 | text | Yes | NULL | ||
| FQ083_1b | text | Yes | NULL | ||
| FQ083_2b | text | Yes | NULL | ||
| FQ083_3b | text | Yes | NULL | ||
| fq086_note1 | text | Yes | NULL | Descriptive text field | |
| fq086_note2 | text | Yes | NULL | Descriptive text field | |
| FQ086_1a | text | Yes | NULL | ||
| FQ086_2a | text | Yes | NULL | ||
| FQ086_3a | text | Yes | NULL | ||
| inpatient_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| inpatient_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| inpatient_srcdoc_rpts8 | text | Yes | NULL | ||
| FQ086_1b | text | Yes | NULL | ||
| FQ086_2b | text | Yes | NULL | ||
| FQ086_3b | text | Yes | NULL | ||
| inpatient_vf1_note | text | Yes | NULL | Descriptive text field | |
| inpatient_vf2_note | text | Yes | NULL | Descriptive text field | |
| inpatient_vf3_note | text | Yes | NULL | Descriptive text field | |
| inpatient_vf_note | text | Yes | NULL | Descriptive text field | |
| FQ091 | text | Yes | NULL | ||
| fq092_label | text | Yes | NULL | ||
| FQ092a | text | Yes | NULL | ||
| FQ092b | text | Yes | NULL | ||
| FQ092c | text | Yes | NULL | ||
| FQ092d | text | Yes | NULL | ||
| FQ093_1 | text | Yes | NULL | ||
| FQ094a_note1 | text | Yes | NULL | Descriptive text field | |
| FQ094a_note2 | text | Yes | NULL | Descriptive text field | |
| FQ094a | text | Yes | NULL | ||
| tb_src_avail_note | text | Yes | NULL | Descriptive text field | |
| tb_src_compl_note | text | Yes | NULL | Descriptive text field | |
| tb_srcdoc_rpts6 | text | Yes | NULL | ||
| FQ094b | text | Yes | NULL | ||
| FQ095 | text | Yes | NULL | ||
| fq094b_note | text | Yes | NULL | Descriptive text field | |
| fq095_note | text | Yes | NULL | Descriptive text field | |
| FQ096 | text | Yes | NULL | ||
| fq096_note | text | Yes | NULL | Descriptive text field | |
| fq099_note1 | text | Yes | NULL | Descriptive text field | |
| fq099_note2 | text | Yes | NULL | Descriptive text field | |
| FQ099a | text | Yes | NULL | ||
| tb_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| tb_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| tb_srcdoc_rpts8 | text | Yes | NULL | ||
| FQ099b | text | Yes | NULL | ||
| FQ0202 | text | Yes | NULL | ||
| fq099_note | text | Yes | NULL | Descriptive text field | |
| tb_vf_note1 | text | Yes | NULL | Descriptive text field | |
| tb_vf_note2 | text | Yes | NULL | Descriptive text field | |
| FQ0203_2 | text | Yes | NULL | ||
| FQ0203_6 | text | Yes | NULL | ||
| FQ_209_01_OPD | text | Yes | NULL | ||
| FQ_209_01_IPD | text | Yes | NULL | ||
| FQ_209_02_OPD | text | Yes | NULL | ||
| FQ_209_02_IPD | text | Yes | NULL | ||
| FQ_209_03_OPD | text | Yes | NULL | ||
| FQ_209_03_IPD | text | Yes | NULL | ||
| FQ213_5a_other | text | Yes | NULL | ||
| fu007_note_1 | text | Yes | NULL | Descriptive text field | |
| FU007a_1 | text | Yes | NULL | ||
| FU007b_1 | text | Yes | NULL | ||
| FU007c_1 | text | Yes | NULL | ||
| FU007d_1 | text | Yes | NULL | ||
| FU020c | text | Yes | NULL | ||
| FU020d | text | Yes | NULL | ||
| FU020e | text | Yes | NULL | ||
| FQ022_96 | text | Yes | NULL | ||
| FQ022o | text | Yes | NULL | ||
| FQ034_96 | text | Yes | NULL | ||
| FQ034o | text | Yes | NULL | ||
| FQ038_96 | text | Yes | NULL | ||
| FQ038o | text | Yes | NULL | ||
| FQ044_96 | text | Yes | NULL | ||
| FQ044o | text | Yes | NULL | ||
| FQ045_6 | text | Yes | NULL | ||
| FQ049_96 | text | Yes | NULL | ||
| FQ049o | text | Yes | NULL | ||
| FQ055_96 | text | Yes | NULL | ||
| FQ055o | text | Yes | NULL | ||
| inpatient_srcdoc_rpts5 | text | Yes | NULL | ||
| FQ066_96 | text | Yes | NULL | ||
| FQ066o | text | Yes | NULL | ||
| FQ067_1 | text | Yes | NULL | ||
| FQ071_96 | text | Yes | NULL | ||
| FQ071o | text | Yes | NULL | ||
| FQ074_96 | text | Yes | NULL | ||
| FQ074o | text | Yes | NULL | ||
| FQ0203_1 | text | Yes | NULL | ||
| FQ0203_3 | text | Yes | NULL | ||
| FQ078_3 | text | Yes | NULL | ||
| FQ213_5o | text | Yes | NULL | ||
| FQ219_A2_ser | text | Yes | NULL | ||
| FQ219_A2_dis | text | Yes | NULL | ||
| FQ219_B2_ser | text | Yes | NULL | ||
| FQ219_B2_dis | text | Yes | NULL | ||
| FQ219_C2_ser | text | Yes | NULL | ||
| FQ219_C2_dis | text | Yes | NULL | ||
| FQ219_C2_qrtr | text | Yes | NULL | ||
| FU019_2 | text | Yes | NULL | ||
| FQ015do | text | Yes | NULL | ||
| FQ019_1 | text | Yes | NULL | ||
| FQ019_2 | text | Yes | NULL | ||
| FQ026do | text | Yes | NULL | ||
| FQ023_1 | text | Yes | NULL | ||
| FQ030_2 | text | Yes | NULL | ||
| FQ034_2 | text | Yes | NULL | ||
| FQ037do | text | Yes | NULL | ||
| FQ041_5 | text | Yes | NULL | ||
| FQ048do | text | Yes | NULL | ||
| FQ049_8 | text | Yes | NULL | ||
| FQ045_5 | text | Yes | NULL | ||
| FQ054_1 | text | Yes | NULL | ||
| hivpos_srcdoc_rpts7 | text | Yes | NULL | ||
| FQ059do | text | Yes | NULL | ||
| FQ056_5 | text | Yes | NULL | ||
| FQ065_1 | text | Yes | NULL | ||
| malaria_srcdoc_rpts7 | text | Yes | NULL | ||
| FQ070do | text | Yes | NULL | ||
| FQ081do | text | Yes | NULL | ||
| FQ078_6 | text | Yes | NULL | ||
| FQ092do | text | Yes | NULL | ||
| FQ0203_96 | text | Yes | NULL | ||
| FQ0203o | text | Yes | NULL | ||
| FU019_1 | text | Yes | NULL | ||
| fu007_note_2 | text | Yes | NULL | Descriptive text field | |
| FU007a_2 | text | Yes | NULL | ||
| FU007b_2 | text | Yes | NULL | ||
| FU007c_2 | text | Yes | NULL | ||
| FU007d_2 | text | Yes | NULL | ||
| FQ021_1 | text | Yes | NULL | ||
| anc1_srcdoc_rpts8 | text | Yes | NULL | ||
| FQ041_96 | text | Yes | NULL | ||
| FQ041o | text | Yes | NULL | ||
| FQ043_1 | text | Yes | NULL | ||
| FQ043_2 | text | Yes | NULL | ||
| mcm_srcdoc_rpts7 | text | Yes | NULL | ||
| FQ052_2 | text | Yes | NULL | ||
| FQ054_2 | text | Yes | NULL | ||
| FQ055_2 | text | Yes | NULL | ||
| FQ023_2 | text | Yes | NULL | ||
| FQ062_1 | text | Yes | NULL | ||
| malaria_srcdoc_rpts4 | text | Yes | NULL | ||
| FQ076_1 | text | Yes | NULL | ||
| pneum_srcdoc_rpts7 | text | Yes | NULL | ||
| FQ0200_1 | text | Yes | NULL | ||
| FQ067_5 | text | Yes | NULL | ||
| FQ074_4 | text | Yes | NULL | ||
| FQ220_96 | text | Yes | NULL | ||
| FQ220o | text | Yes | NULL | ||
| FQ222_m1 | text | Yes | NULL | ||
| FQ222_m2 | text | Yes | NULL | ||
| FQ222_m3 | text | Yes | NULL | ||
| rtn_dcsn_mkg5 | text | Yes | NULL | ||
| FQ085_96 | text | Yes | NULL | ||
| FQ085o | text | Yes | NULL | ||
| FQ023_6 | text | Yes | NULL | ||
| FQ0203_5 | text | Yes | NULL | ||
| FQ041_2 | text | Yes | NULL | ||
| FQ052_1 | text | Yes | NULL | ||
| FQ052_96 | text | Yes | NULL | ||
| FQ052o | text | Yes | NULL | ||
| hivpos_srcdoc_rpts4 | text | Yes | NULL | ||
| FQ063_96 | text | Yes | NULL | ||
| FQ063o | text | Yes | NULL | ||
| FQ067_3 | text | Yes | NULL | ||
| FQ074_5 | text | Yes | NULL | ||
| FQ085_2 | text | Yes | NULL | ||
| FQ088_5 | text | Yes | NULL | ||
| FQ098_1 | text | Yes | NULL | ||
| FQ098_2 | text | Yes | NULL | ||
| FQ052_4 | text | Yes | NULL | ||
| FQ056_1 | text | Yes | NULL | ||
| FQ056_6 | text | Yes | NULL | ||
| FQ220_1 | text | Yes | NULL | ||
| FQ063_1 | text | Yes | NULL | ||
| FQ065_2 | text | Yes | NULL | ||
| FQ074_2 | text | Yes | NULL | ||
| FQ076_2 | text | Yes | NULL | ||
| FQ098_96 | text | Yes | NULL | ||
| FQ098o | text | Yes | NULL | ||
| FQ213_5b_other | text | Yes | NULL | ||
| FQ019_96 | text | Yes | NULL | ||
| FQ019o | text | Yes | NULL | ||
| FQ067_2 | text | Yes | NULL | ||
| FQ032_1 | text | Yes | NULL | ||
| dtp3_srcdoc_rpts7 | text | Yes | NULL | ||
| FQ087_1 | text | Yes | NULL | ||
| inpatient_srcdoc_rpts7 | text | Yes | NULL | ||
| FQ022_2 | text | Yes | NULL | ||
| FQ034_4 | text | Yes | NULL | ||
| FQ106_Other | text | Yes | NULL | ||
| FQ063_5 | text | Yes | NULL | ||
| FQ073_3 | text | Yes | NULL | ||
| FQ078_96 | text | Yes | NULL | ||
| FQ078o | text | Yes | NULL | ||
| FQ019_4 | text | Yes | NULL | ||
| FQ023_96 | text | Yes | NULL | ||
| FQ023o | text | Yes | NULL | ||
| FQ034_3 | text | Yes | NULL | ||
| FQ034_6 | text | Yes | NULL | ||
| FQ078_4 | text | Yes | NULL | ||
| inpatient_srcdoc_rpts4 | text | Yes | NULL | ||
| FQ088_96 | text | Yes | NULL | ||
| FQ088o | text | Yes | NULL | ||
| FU017_96 | text | Yes | NULL | ||
| FU017o | text | Yes | NULL | ||
| FQ045_96 | text | Yes | NULL | ||
| FQ045o | text | Yes | NULL | ||
| FQ054_3 | text | Yes | NULL | ||
| FQ056_96 | text | Yes | NULL | ||
| FQ056o | text | Yes | NULL | ||
| FQ067_4 | text | Yes | NULL | ||
| FQ071_4 | text | Yes | NULL | ||
| FQ056_3 | text | Yes | NULL | ||
| FQ016_96 | text | Yes | NULL | ||
| FQ016o | text | Yes | NULL | ||
| FQ018_3 | text | Yes | NULL | ||
| sba_srcdoc_rpts5 | text | Yes | NULL | ||
| FQ021_96 | text | Yes | NULL | ||
| FU017_1 | text | Yes | NULL | ||
| FQ032_96 | text | Yes | NULL | ||
| FQ032o | text | Yes | NULL | ||
| FQ023_3 | text | Yes | NULL | ||
| FQ040_3 | text | Yes | NULL | ||
| mcm_srcdoc_rpts4 | text | Yes | NULL | ||
| FQ043_96 | text | Yes | NULL | ||
| FQ043o | text | Yes | NULL | ||
| FQ054_96 | text | Yes | NULL | ||
| FQ054o | text | Yes | NULL | ||
| FQ065_96 | text | Yes | NULL | ||
| FQ065o | text | Yes | NULL | ||
| FQ076_96 | text | Yes | NULL | ||
| FQ076o | text | Yes | NULL | ||
| FQ082_96 | text | Yes | NULL | ||
| FQ082o | text | Yes | NULL | ||
| FQ084_3 | text | Yes | NULL | ||
| FQ087_96 | text | Yes | NULL | ||
| FQ087o | text | Yes | NULL | ||
| FQ0200_96 | text | Yes | NULL | ||
| FQ0200o | text | Yes | NULL | ||
| FQ067_6 | text | Yes | NULL | ||
| FQ071_3 | text | Yes | NULL | ||
| FQ030_96 | text | Yes | NULL | ||
| FQ030o. | text | Yes | NULL | ||
| dtp3_srcdoc_rpts4 | text | Yes | NULL | ||
| pneum_srcdoc_rpts4 | text | Yes | NULL | ||
| FQ077_96 | text | Yes | NULL | ||
| FQ077o | text | Yes | NULL | ||
| FQ033_1 | text | Yes | NULL | ||
| FQ033_96 | text | Yes | NULL | ||
| FQ033o | text | Yes | NULL | ||
| FQ033_2 | text | Yes | NULL | ||
| FQ063_2 | text | Yes | NULL | ||
| FQ066_1 | text | Yes | NULL | ||
| FQ066_2 | text | Yes | NULL | ||
| FQ077_2 | text | Yes | NULL | ||
| FQ067_96 | text | Yes | NULL | ||
| FQ067o | text | Yes | NULL | ||
| FQ220_4 | text | Yes | NULL | ||
| FQ066_4 | text | Yes | NULL | ||
| FQ056_2 | text | Yes | NULL | ||
| FQ220_3 | text | Yes | NULL | ||
| FQ022_1 | text | Yes | NULL | ||
| FQ023_4 | text | Yes | NULL | ||
| FQ055_1 | text | Yes | NULL | ||
| FQ063_3 | text | Yes | NULL | ||
| FQ066_3 | text | Yes | NULL | ||
| FQ074_3 | text | Yes | NULL | ||
| FQ077_3 | text | Yes | NULL | ||
| FQ078_1 | text | Yes | NULL | ||
| FQ098_3 | text | Yes | NULL | ||
| FQ019_5 | text | Yes | NULL | ||
| FQ033_4 | text | Yes | NULL | ||
| FQ033_5 | text | Yes | NULL | ||
| FQ044_2 | text | Yes | NULL | ||
| FQ044_4 | text | Yes | NULL | ||
| FQ082_3 | text | Yes | NULL | ||
| FQ063_4 | text | Yes | NULL | ||
| FQ016_3 | text | Yes | NULL | ||
| FQ077_4 | text | Yes | NULL | ||
| FQ089_1 | text | Yes | NULL | ||
| FQ220_2 | text | Yes | NULL | ||
| FQ023_5 | text | Yes | NULL | ||
| FQ034_5 | text | Yes | NULL | ||
| FQ022_4 | text | Yes | NULL | ||
| FQ022_5 | text | Yes | NULL | ||
| FQ066_5 | text | Yes | NULL | ||
| FQ044_3 | text | Yes | NULL | ||
| FQ044_5 | text | Yes | NULL | ||
| FQ077_5 | text | Yes | NULL | ||
| FQ052_5 | text | Yes | NULL | ||
| FQ016_2 | text | Yes | NULL | ||
| FQ055_5 | text | Yes | NULL | ||
| FQ098_5 | text | Yes | NULL | ||
| FQ0201_1 | text | Yes | NULL | ||
| FQ0201_2 | text | Yes | NULL | ||
| FQ0201_5 | text | Yes | NULL | ||
| FQ0203_4 | text | Yes | NULL | ||
| FQ021_3 | text | Yes | NULL | ||
| FQ032_3 | text | Yes | NULL | ||
| FQ043_3 | text | Yes | NULL | ||
| FQ065_3 | text | Yes | NULL | ||
| FQ076_3 | text | Yes | NULL | ||
| FQ051_3 | text | Yes | NULL | ||
| FQ0200_3 | text | Yes | NULL | ||
| FQ030_5 | text | Yes | NULL | ||
| FQ055_4 | text | Yes | NULL | ||
| FU019_3 | text | Yes | NULL | ||
| FQ0201_96 | text | Yes | NULL | ||
| FQ0201o | text | Yes | NULL | ||
| FQ044_1 | text | Yes | NULL | ||
| FQ021_2 | text | Yes | NULL | ||
| FQ032_2 | text | Yes | NULL | ||
| FQ087_2 | text | Yes | NULL | ||
| FQ088_1 | text | Yes | NULL | ||
| FQ088_2 | text | Yes | NULL | ||
| FQ220_5 | text | Yes | NULL | ||
| FU017_2 | text | Yes | NULL | ||
| FQ018_2 | text | Yes | NULL | ||
| FQ073_1 | text | Yes | NULL | ||
| FU017_3 | text | Yes | NULL | ||
| FQ093_96 | text | Yes | NULL | ||
| FQ093o | text | Yes | NULL | ||
| FQ084_96 | text | Yes | NULL | ||
| FQ084o | text | Yes | NULL | ||
| FQ019_3 | text | Yes | NULL | ||
| FQ022_3 | text | Yes | NULL | ||
| FQ041_3 | text | Yes | NULL | ||
| FQ040_96 | text | Yes | NULL | ||
| FQ040o | text | Yes | NULL | ||
| FQ029_96 | text | Yes | NULL | ||
| FQ029o | text | Yes | NULL | ||
| FQ0200_2 | text | Yes | NULL | ||
| FQ087_3 | text | Yes | NULL |
This table has no foreign key relationships.
| CompletionDate | SubmissionDate | starttime | endtime | deviceid | subscriberid | simid | devicephonenum | username | duration | caseid | FQ104 | FQ101 | FQ102 | FQ103 | FQ105 | FQ106 | FQ107 | FQ108 | siteid | FQ109 | FQ110 | FQ111 | intro | FQ112 | revw_mos_note | Month1 | month1_fmt | Month2 | month2_fmt | Month3 | month3_fmt | FQ010 | FQ011 | FQ012a | FQ012b | FQ013 | FQ014 | fq015_label | FQ015a | FQ015b | FQ015c | FQ015d | FQ016_1 | fq017_note1 | fq017_note2 | FQ017_1a | FQ017_2a | FQ017_3a | sba_src_avail1 | sba_src_avail2 | sba_src_avail3 | sba_src_avail_note | sba_src_compl1 | sba_src_compl2 | sba_src_compl3 | sba_src_compl_note | sba_srcdoc_rpts6 | FQ017_1b | FQ017_2b | FQ017_3b | fq020_note1 | fq020_note2 | FQ020_1a | FQ020_2a | FQ020_3a | sba_rpt_avail1 | sba_rpt_avail2 | sba_rpt_avail3 | sba_rpt_avail_note | sba_rpt_compl1 | sba_rpt_compl2 | sba_rpt_compl3 | sba_rpt_compl_note | sba_srcdoc_rpts9 | FQ020_1b | FQ020_2b | FQ020_3b | tmp_fq017_1b | tmp_fq020_1b | tmp_sba_vf1 | sba_vf1 | tmp_sba_vf1_diff | sba_vf1_diff | tmp_fq017_2b | tmp_fq020_2b | tmp_sba_vf2 | sba_vf2 | tmp_sba_vf2_diff | sba_vf2_diff | tmp_fq017_3b | tmp_fq020_3b | tmp_sba_vf3 | sba_vf3 | tmp_sba_vf3_diff | sba_vf3_diff | sba_vf1_note | sba_vf2_note | sba_vf3_note | sba_vf_note | FQ024 | FQ025 | fq026_label | FQ026a | FQ026b | FQ026c | FQ026d | FQ027_1 | fq028_note1 | fq028_note2 | FQ028_1a | FQ028_2a | FQ028_3a | dtp3_src_avail1 | dtp3_src_avail2 | dtp3_src_avail3 | dtp3_src_avail_note | dtp3_src_compl1 | dtp3_src_compl2 | dtp3_src_compl3 | dtp3_src_compl_note | dtp3_srcdoc_rpts5 | FQ028_1b | FQ028_2b | FQ028_3b | fq031_note1 | fq031_note2 | FQ031_1a | FQ031_2a | FQ031_3a | dtp3_rpt_avail1 | dtp3_rpt_avail2 | dtp3_rpt_avail3 | dtp3_rpt_avail_note | dtp3_rpt_compl1 | dtp3_rpt_compl2 | dtp3_rpt_compl3 | dtp3_rpt_compl_note | dtp3_srcdoc_rpts8 | FQ031_1b | FQ031_2b | FQ031_3b | tmp_fq028_1b | tmp_fq031_1b | tmp_dtp3_vf1 | dtp3_vf1 | tmp_dtp3_vf1_diff | dtp3_vf1_diff | tmp_fq028_2b | tmp_fq031_2b | tmp_dtp3_vf2 | dtp3_vf2 | tmp_dtp3_vf2_diff | dtp3_vf2_diff | tmp_fq028_3b | tmp_fq031_3b | tmp_dtp3_vf3 | dtp3_vf3 | tmp_dtp3_vf3_diff | dtp3_vf3_diff | dtp3_vf1_note | dtp3_vf2_note | dtp3_vf3_note | dtp3_vf_note | FQ034_1 | FQ035 | FQ036 | fq037_label | FQ037a | FQ037b | FQ037c | FQ037d | FQ038_1 | fq039_note1 | fq039_note2 | FQ039_1a | FQ039_2a | FQ039_3a | mcm_src_avail1 | mcm_src_avail2 | mcm_src_avail3 | mcm_src_avail_note | mcm_src_compl1 | mcm_src_compl2 | mcm_src_compl3 | mcm_src_compl_note | mcm_srcdoc_rpts5 | FQ039_1b | FQ039_2b | FQ039_3b | fq042_note1 | fq042_note2 | FQ042_1a | FQ042_2a | FQ042_3a | mcm_rpt_avail1 | mcm_rpt_avail2 | mcm_rpt_avail3 | mcm_rpt_avail_note | mcm_rpt_compl1 | mcm_rpt_compl2 | mcm_rpt_compl3 | mcm_rpt_compl_note | mcm_srcdoc_rpts8 | FQ042_1b | FQ042_2b | FQ042_3b | tmp_fq039_1b | tmp_fq042_1b | tmp_mcm_vf1 | mcm_vf1 | tmp_mcm_vf1_diff | mcm_vf1_diff | tmp_fq039_2b | tmp_fq042_2b | tmp_mcm_vf2 | mcm_vf2 | tmp_mcm_vf2_diff | mcm_vf2_diff | tmp_fq039_3b | tmp_fq042_3b | tmp_mcm_vf3 | mcm_vf3 | tmp_mcm_vf3_diff | mcm_vf3_diff | mcm_vf1_note | mcm_vf2_note | mcm_vf3_note | mcm_vf_note | FQ046 | hivpos_src_avail1 | hivpos_src_avail2 | hivpos_src_avail3 | hivpos_src_compl1 | hivpos_src_compl2 | hivpos_src_compl3 | hivpos_rpt_avail1 | hivpos_rpt_avail2 | hivpos_rpt_avail3 | hivpos_rpt_compl1 | hivpos_rpt_compl2 | hivpos_rpt_compl3 | tmp_fq050_1b | tmp_fq053_1b | tmp_hivpos_vf1 | hivpos_vf1 | tmp_hivpos_vf1_diff | hivpos_vf1_diff | tmp_fq050_2b | tmp_fq053_2b | tmp_hivpos_vf2 | hivpos_vf2 | tmp_hivpos_vf2_diff | hivpos_vf2_diff | tmp_fq050_3b | tmp_fq053_3b | tmp_hivpos_vf3 | hivpos_vf3 | tmp_hivpos_vf3_diff | hivpos_vf3_diff | FQ057 | malaria_src_avail1 | malaria_src_avail2 | malaria_src_avail3 | malaria_src_compl1 | malaria_src_compl2 | malaria_src_compl3 | malaria_rpt_avail1 | malaria_rpt_avail2 | malaria_rpt_avail3 | malaria_rpt_compl1 | malaria_rpt_compl2 | malaria_rpt_compl3 | tmp_fq061_1b | tmp_fq064_1b | tmp_malaria_vf1 | malaria_vf1 | tmp_malaria_vf1_diff | malaria_vf1_diff | tmp_fq061_2b | tmp_fq064_2b | tmp_malaria_vf2 | malaria_vf2 | tmp_malaria_vf2_diff | malaria_vf2_diff | tmp_fq061_3b | tmp_fq064_3b | tmp_malaria_vf3 | malaria_vf3 | tmp_malaria_vf3_diff | malaria_vf3_diff | FQ068 | FQ069 | fq070_label | FQ070a | FQ070b | FQ070c | FQ070d | FQ071_1 | fq072_note1 | fq072_note2 | FQ072_1a | FQ072_2a | FQ072_3a | pneum_src_avail1 | pneum_src_avail2 | pneum_src_avail3 | pneum_src_avail_note | pneum_src_compl1 | pneum_src_compl2 | pneum_src_compl3 | pneum_src_compl_note | FQ074_1 | FQ072_1b | FQ072_2b | FQ072_3b | fq075_note1 | fq075_note2 | FQ075_1a | FQ075_2a | FQ075_3a | pneum_rpt_avail1 | pneum_rpt_avail2 | pneum_rpt_avail3 | pneum_rpt_avail_note | pneum_rpt_compl1 | pneum_rpt_compl2 | pneum_rpt_compl3 | pneum_rpt_compl_note | FQ077_1 | FQ075_1b | FQ075_2b | FQ075_3b | tmp_fq072_1b | tmp_fq075_1b | tmp_pneum_vf1 | pneum_vf1 | tmp_pneum_vf1_diff | pneum_vf1_diff | tmp_fq072_2b | tmp_fq075_2b | tmp_pneum_vf2 | pneum_vf2 | tmp_pneum_vf2_diff | pneum_vf2_diff | tmp_fq072_3b | tmp_fq075_3b | tmp_pneum_vf3 | pneum_vf3 | tmp_pneum_vf3_diff | pneum_vf3_diff | pneum_vf1_note | pneum_vf2_note | pneum_vf3_note | pneum_vf_note | FQ079 | inpatient_src_avail1 | inpatient_src_avail2 | inpatient_src_avail3 | inpatient_src_compl1 | inpatient_src_compl2 | inpatient_src_compl3 | inpatient_rpt_avail1 | inpatient_rpt_avail2 | inpatient_rpt_avail3 | inpatient_rpt_compl1 | inpatient_rpt_compl2 | inpatient_rpt_compl3 | tmp_fq083_1b | tmp_fq086_1b | tmp_inpatient_vf1 | inpatient_vf1 | tmp_inpatient_vf1_diff | inpatient_vf1_diff | tmp_fq083_2b | tmp_fq086_2b | tmp_inpatient_vf2 | inpatient_vf2 | tmp_inpatient_vf2_diff | inpatient_vf2_diff | tmp_fq083_3b | tmp_fq086_3b | tmp_inpatient_vf3 | inpatient_vf3 | tmp_inpatient_vf3_diff | inpatient_vf3_diff | FQ090 | tb_src_avail | tb_src_compl | tb_rpt_avail | tb_rpt_compl | tmp_fq096 | tmp_fq099b | tmp_tb_vf | tb_vf | tmp_tb_vf_diff | tb_vf_diff | FQ204a | FQ204b | FQ205 | fq0206_note | fq0206_label1 | FQ206_1_ser | FQ206_1_ipd | FQ206_1_opd | fq206_label2 | FQ206_2_ser | FQ206_2_ipd | FQ206_2_opd | fq206_label3 | FQ206_3_ser | FQ206_3_ipd | FQ206_3_opd | FQ207 | FQ208 | FQ209_label1 | FQ_209_01_ser | FQ_209_01_dis | FQ209_label2 | FQ_209_02_ser | FQ_209_02_dis | FQ209_label3 | FQ_209_03_ser | FQ_209_03_dis | FQ210 | FQ211 | FQ212 | FQ213_note1 | FQ213_1a | FQ213_1b | FQ213_note2 | FQ213_2a | FQ213_2b | FQ213_note3 | FQ213_3a | FQ213_3b | FQ213_note4 | FQ213_4a | FQ213_4b | FQ213_note5 | FQ213_5a | FQ213_5b | FQ214_note1 | FQ214a | FQ214b | FQ214c | FQ214d | FQ214_note2 | FQ214e | FQ214f | FQ214g | FQ215 | FQ216 | FQ217 | FQ218_note1 | FQ218a_ser | FQ218a_dis | FQ218a_qrtr | FQ218_note2 | FQ218b_ser | FQ218b_dis | FQ218b_qrtr | FQ218_note3 | FQ218c_ser | FQ218c_dis | FQ218c_qrtr | fq218_tot_ser | fq218_tot_dis | fq218_tot_qrtr | fq218_total | fq218_note_ser | fq218_note_dis | fq218_note_qrtr | fq219_note1 | FQ219_A1_ser | FQ219_A1_dis | fq219_note2 | fq219_note3 | tmp_fq219a1_ser | tmp_fq219a1_dis | tmp_fq219a2_ser | tmp_fq219a2_dis | tmp_fq219a3_ser | tmp_fq219a3_dis | fq219a_tot_ser | fq219a_tot_dis | tmp_rptg_ser_complns_hp1 | rptg_ser_complns_hp1 | tmp_rptg_dis_complns_hp1 | rptg_dis_complns_hp1 | rptg_sercomplns_hp1_note | rptg_discomplns_hp1_note | fq219_note4 | FQ219_B1_ser | FQ219_B1_dis | fq219_note5 | fq219_note6 | tmp_fq219b1_ser | tmp_fq219b1_dis | tmp_fq219b2_ser | tmp_fq219b2_dis | tmp_fq219b3_ser | tmp_fq219b3_dis | fq219b_tot_ser | fq219b_tot_dis | tmp_rptg_ser_complns_hp2 | rptg_ser_complns_hp2 | tmp_rptg_dis_complns_hp2 | rptg_dis_complns_hp2 | rptg_sercomplns_hp2_note | rptg_discomplns_hp2_note | fq219_note7 | FQ219_C1_ser | FQ219_C1_dis | FQ219_C1_qrtr | fq219_note8 | fq219_note9 | tmp_fq219c1_ser | tmp_fq219c1_dis | tmp_fq219c1_qrtr | tmp_fq219c2_ser | tmp_fq219c2_dis | tmp_fq219c2_qrtr | tmp_fq219c3_ser | tmp_fq219c3_dis | tmp_fq219c3_qrtr | fq219c_tot_ser | fq219c_tot_dis | fq219c_tot_qrtr | tmp_rptg_ser_complns_hp3 | rptg_ser_complns_hp3 | tmp_rptg_dis_complns_hp3 | rptg_dis_complns_hp3 | tmp_rptg_qrtr_complns_hp3 | rptg_qrtr_complns_hp3 | rptg_sercomplns_hp3_note | rptg_discomplns_hp3_note | rptg_qrtrcomplns_hp3_note | compl_hc14 | FQ221 | FQ221b | FQ222 | fq223_note1 | FQ223_01_ser | FQ223_01_dis | fq223_note2 | FQ223_02_ser | FQ223_02_dis | fq223_note3 | FQ223_03_ser | FQ223_03_dis | tmp_fq223_01_ser | tmp_fq223_01_dis | tmp_rpt_sertimelns_hp1 | rpt_sertimelns_hp1 | tmp_rpt_distimelns_hp1 | rpt_distimelns_hp1 | rpt_sertimelns_hp1_note | rpt_distimelns_hp1_note | tmp_fq223_02_ser | tmp_fq223_02_dis | tmp_rpt_sertimelns_hp2 | rpt_sertimelns_hp2 | tmp_rpt_distimelns_hp2 | rpt_distimelns_hp2 | rpt_sertimelns_hp2_note | rpt_distimelns_hp2_note | tmp_fq223_03_ser | tmp_fq223_03_dis | tmp_rpt_sertimelns_hp3 | rpt_sertimelns_hp3 | tmp_rpt_distimelns_hp3 | rpt_distimelns_hp3 | rpt_sertimelns_hp3_note | rpt_distimelns_hp3_note | FU003 | fu003_rcd | FU005 | FU006 | fu008_label1 | FU008_01 | FU008_02 | FU008_03 | FU008_04 | fu008_label2 | FU008_05 | FU008_06 | FU008_07 | FU009 | fu009_rcd | fu010_note | FU010a | FU010b | FU011 | FU012 | FU013 | FU014 | FU015_label | FU015_01 | FU015_02 | FU015_03 | FU016 | note_dscnmkg1 | FU018_01 | FU018_02 | FU018_03 | FU020_note | FU020a | FU020b | FU021a_label | FU021a_01 | FU021a_02 | FU021a_03 | FU021a_04 | FU021a_05 | FU021a_06 | FU021a_07 | FU021b | FU021c | FU021d_label1 | FU021d_01 | FU021d_02 | FU021d_03 | FU021d_04 | FU021d_05 | FU021d_label2 | FU021d_06 | FU021d_07 | FU021d_08 | FU021d_09 | FU021d_10 | FU021e | FU021f | FU022 | FU023 | FU024 | FU025 | FU026 | FU027 | FU028 | FU030 | FU031 | FU032 | FU033 | FU034 | FU035 | FU036 | FU038 | FU039 | FU040 | FU041 | FU042 | FU043 | gps_note | FQ113 | note_end | instanceID | instanceName | formdef_version | review_quality | review_status | KEY | FU037 | FQ027_2 | FQ030_1 | FQ030_4 | FQ038_2 | FQ041_1 | FQ041_4 | FQ045_1 | FQ045_2 | FQ045_3 | FQ045_4 | FQ047 | fq048_label | FQ048a | FQ048b | FQ048c | FQ048d | FQ049_1 | FQ049_2 | FQ049_3 | FQ049_4 | fq050_note1 | fq050_note2 | FQ050_1a | FQ050_2a | FQ050_3a | hivpos_src_avail_note | hivpos_src_compl_note | hivpos_srcdoc_rpts5 | FQ050_1b | FQ050_2b | FQ050_3b | fq053_note1 | fq053_note2 | FQ053_1a | FQ053_2a | FQ053_3a | hivpos_rpt_avail_note | hivpos_rpt_compl_note | hivpos_srcdoc_rpts8 | FQ053_1b | FQ053_2b | FQ053_3b | hivpos_vf1_note | hivpos_vf2_note | hivpos_vf3_note | hivpos_vf_note | FQ058 | fq059_label | FQ059a | FQ059b | FQ059c | FQ059d | FQ060_1 | FQ060_96 | FQ060o | fq061_note1 | fq061_note2 | FQ061_1a | FQ061_2a | FQ061_3a | malaria_src_avail_note | malaria_src_compl_note | malaria_srcdoc_rpts5 | FQ061_1b | FQ061_2b | FQ061_3b | fq064_note1 | fq064_note2 | FQ064_1a | FQ064_2a | FQ064_3a | malaria_rpt_avail_note | malaria_rpt_compl_note | malaria_srcdoc_rpts8 | FQ064_1b | FQ064_2b | FQ064_3b | malaria_vf1_note | malaria_vf2_note | malaria_vf3_note | malaria_vf_note | FQ071_2 | pneum_srcdoc_rpts5 | pneum_srcdoc_rpts8 | FQ078_2 | FQ078_5 | FQ080 | fq081_label | FQ081a | FQ081b | FQ081c | FQ081d | FQ082_1 | FQ082_2 | fq083_note1 | fq083_note2 | FQ083_1a | FQ083_2a | FQ083_3a | inpatient_src_avail_note | inpatient_src_compl_note | FQ085_1 | FQ085_4 | FQ083_1b | FQ083_2b | FQ083_3b | fq086_note1 | fq086_note2 | FQ086_1a | FQ086_2a | FQ086_3a | inpatient_rpt_avail_note | inpatient_rpt_compl_note | inpatient_srcdoc_rpts8 | FQ086_1b | FQ086_2b | FQ086_3b | inpatient_vf1_note | inpatient_vf2_note | inpatient_vf3_note | inpatient_vf_note | FQ091 | fq092_label | FQ092a | FQ092b | FQ092c | FQ092d | FQ093_1 | FQ094a_note1 | FQ094a_note2 | FQ094a | tb_src_avail_note | tb_src_compl_note | tb_srcdoc_rpts6 | FQ094b | FQ095 | fq094b_note | fq095_note | FQ096 | fq096_note | fq099_note1 | fq099_note2 | FQ099a | tb_rpt_avail_note | tb_rpt_compl_note | tb_srcdoc_rpts8 | FQ099b | FQ0202 | fq099_note | tb_vf_note1 | tb_vf_note2 | FQ0203_2 | FQ0203_6 | FQ_209_01_OPD | FQ_209_01_IPD | FQ_209_02_OPD | FQ_209_02_IPD | FQ_209_03_OPD | FQ_209_03_IPD | FQ213_5a_other | fu007_note_1 | FU007a_1 | FU007b_1 | FU007c_1 | FU007d_1 | FU020c | FU020d | FU020e | FQ022_96 | FQ022o | FQ034_96 | FQ034o | FQ038_96 | FQ038o | FQ044_96 | FQ044o | FQ045_6 | FQ049_96 | FQ049o | FQ055_96 | FQ055o | inpatient_srcdoc_rpts5 | FQ066_96 | FQ066o | FQ067_1 | FQ071_96 | FQ071o | FQ074_96 | FQ074o | FQ0203_1 | FQ0203_3 | FQ078_3 | FQ213_5o | FQ219_A2_ser | FQ219_A2_dis | FQ219_B2_ser | FQ219_B2_dis | FQ219_C2_ser | FQ219_C2_dis | FQ219_C2_qrtr | FU019_2 | FQ015do | FQ019_1 | FQ019_2 | FQ026do | FQ023_1 | FQ030_2 | FQ034_2 | FQ037do | FQ041_5 | FQ048do | FQ049_8 | FQ045_5 | FQ054_1 | hivpos_srcdoc_rpts7 | FQ059do | FQ056_5 | FQ065_1 | malaria_srcdoc_rpts7 | FQ070do | FQ081do | FQ078_6 | FQ092do | FQ0203_96 | FQ0203o | FU019_1 | fu007_note_2 | FU007a_2 | FU007b_2 | FU007c_2 | FU007d_2 | FQ021_1 | anc1_srcdoc_rpts8 | FQ041_96 | FQ041o | FQ043_1 | FQ043_2 | mcm_srcdoc_rpts7 | FQ052_2 | FQ054_2 | FQ055_2 | FQ023_2 | FQ062_1 | malaria_srcdoc_rpts4 | FQ076_1 | pneum_srcdoc_rpts7 | FQ0200_1 | FQ067_5 | FQ074_4 | FQ220_96 | FQ220o | FQ222_m1 | FQ222_m2 | FQ222_m3 | rtn_dcsn_mkg5 | FQ085_96 | FQ085o | FQ023_6 | FQ0203_5 | FQ041_2 | FQ052_1 | FQ052_96 | FQ052o | hivpos_srcdoc_rpts4 | FQ063_96 | FQ063o | FQ067_3 | FQ074_5 | FQ085_2 | FQ088_5 | FQ098_1 | FQ098_2 | FQ052_4 | FQ056_1 | FQ056_6 | FQ220_1 | FQ063_1 | FQ065_2 | FQ074_2 | FQ076_2 | FQ098_96 | FQ098o | FQ213_5b_other | FQ019_96 | FQ019o | FQ067_2 | FQ032_1 | dtp3_srcdoc_rpts7 | FQ087_1 | inpatient_srcdoc_rpts7 | FQ022_2 | FQ034_4 | FQ106_Other | FQ063_5 | FQ073_3 | FQ078_96 | FQ078o | FQ019_4 | FQ023_96 | FQ023o | FQ034_3 | FQ034_6 | FQ078_4 | inpatient_srcdoc_rpts4 | FQ088_96 | FQ088o | FU017_96 | FU017o | FQ045_96 | FQ045o | FQ054_3 | FQ056_96 | FQ056o | FQ067_4 | FQ071_4 | FQ056_3 | FQ016_96 | FQ016o | FQ018_3 | sba_srcdoc_rpts5 | FQ021_96 | FU017_1 | FQ032_96 | FQ032o | FQ023_3 | FQ040_3 | mcm_srcdoc_rpts4 | FQ043_96 | FQ043o | FQ054_96 | FQ054o | FQ065_96 | FQ065o | FQ076_96 | FQ076o | FQ082_96 | FQ082o | FQ084_3 | FQ087_96 | FQ087o | FQ0200_96 | FQ0200o | FQ067_6 | FQ071_3 | FQ030_96 | FQ030o. | dtp3_srcdoc_rpts4 | pneum_srcdoc_rpts4 | FQ077_96 | FQ077o | FQ033_1 | FQ033_96 | FQ033o | FQ033_2 | FQ063_2 | FQ066_1 | FQ066_2 | FQ077_2 | FQ067_96 | FQ067o | FQ220_4 | FQ066_4 | FQ056_2 | FQ220_3 | FQ022_1 | FQ023_4 | FQ055_1 | FQ063_3 | FQ066_3 | FQ074_3 | FQ077_3 | FQ078_1 | FQ098_3 | FQ019_5 | FQ033_4 | FQ033_5 | FQ044_2 | FQ044_4 | FQ082_3 | FQ063_4 | FQ016_3 | FQ077_4 | FQ089_1 | FQ220_2 | FQ023_5 | FQ034_5 | FQ022_4 | FQ022_5 | FQ066_5 | FQ044_3 | FQ044_5 | FQ077_5 | FQ052_5 | FQ016_2 | FQ055_5 | FQ098_5 | FQ0201_1 | FQ0201_2 | FQ0201_5 | FQ0203_4 | FQ021_3 | FQ032_3 | FQ043_3 | FQ065_3 | FQ076_3 | FQ051_3 | FQ0200_3 | FQ030_5 | FQ055_4 | FU019_3 | FQ0201_96 | FQ0201o | FQ044_1 | FQ021_2 | FQ032_2 | FQ087_2 | FQ088_1 | FQ088_2 | FQ220_5 | FU017_2 | FQ018_2 | FQ073_1 | FU017_3 | FQ093_96 | FQ093o | FQ084_96 | FQ084o | FQ019_3 | FQ022_3 | FQ041_3 | FQ040_96 | FQ040o | FQ029_96 | FQ029o | FQ0200_2 | FQ087_3 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| May 11, 2024 11:39:38 AM | May 11, 2024 11:39:38 AM | May 11, 2024 6:45:54 AM | May 11, 2024 11:38:52 AM | 358450074052320 | 636019945784174 | 89251011910457841740 | 0925586798 | impacteval | 2653 | 10 | May 11, 2024 | 22 | 005 | Shebele | 38 | 10 | Elwaye | 10-Shebele-38-10 | 4 | 2 | 1 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 2 | 2 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 20 | 25 | 30 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 20 | 25 | 30 | 20 | 20 | 1 | 1 | 0 | 0 | 25 | 25 | 1 | 1 | 0 | 0 | 30 | 30 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 12 | 13 | 14 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 12 | 13 | 15 | 12 | 12 | 1 | 1 | 0 | 0 | 13 | 13 | 1 | 1 | 0 | 0 | 14 | 15 | 0.9333333333333333 | 0.93 | 0.06999999999999995 | 0.07 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 3 | 5 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 3 | 5 | 2 | 2 | 1 | 1 | 0 | 0 | 3 | 3 | 1 | 1 | 0 | 0 | 5 | 5 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 2 | 2 | 2 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 33 | 25 | 20 | 2 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 33 | 25 | 20 | 33 | 33 | 1 | 1 | 0 | 0 | 25 | 25 | 1 | 1 | 0 | 0 | 20 | 20 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 26 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 3 | 3 | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 3 | 3 | 9 | 3 | 3 | 3 | 3 | 0 | 0 | 0 | 0 | 3 | 3 | 1 | 1 | 1 | 1 | 3 | 3 | 3 | 3 | 0 | 0 | 0 | 0 | 3 | 3 | 1 | 1 | 1 | 1 | 3 | 3 | 3 | 3 | 3 | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 3 | 3 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 23 | 1 | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 3 | 1 | 1 | 1 | 0.9900990099009901 | 3 | 3 | 1 | 1 | 1 | 0.9900990099009901 | 3 | 3 | 1 | 1 | 1 | 0.9900990099009901 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 3 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 3 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | uuid:4424f033-5489-45d4-bfbc-6e0ebfd50113 | 10-Shebele-38-10 | 2405110616 | APPROVED | uuid:4424f033-5489-45d4-bfbc-6e0ebfd50113 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| May 21, 2024 10:35:59 AM | May 21, 2024 10:35:59 AM | May 20, 2024 5:45:41 AM | May 21, 2024 10:36:00 AM | 353316097356771 | 636019954001565 | 89251011910540015658 | impacteval | 6155 | 1 | May 20, 2024 | 4 | NULL | 002 | 1 | 003 | Abisiniya | 1-002-1-003 | 4 | 1 | 1 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 4 | 4 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 21 | 17 | 16 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 21 | 17 | 16 | 21 | 21 | 1 | 1 | 0 | 0 | 17 | 17 | 1 | 1 | 0 | 0 | 16 | 16 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 2 | 1 | 2 | 1 | 1 | 1 | 0 | 1 | 0 | NULL | 65 | 30 | 34 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 65 | 30 | 34 | 65 | 65 | 1 | 1 | 0 | 0 | 30 | 30 | 1 | 1 | 0 | 0 | 34 | 34 | 1 | 1 | 0 | 0 | NULL | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 2 | 1 | 2 | 1 | 1 | 1 | 0 | 1 | 0 | NULL | 121 | 142 | 117 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 117 | 137 | 117 | 121 | 117 | 1.0341880341880343 | 1.03 | 0.030000000000000027 | 0.03 | 142 | 137 | 1.0364963503649636 | 1.04 | 0.040000000000000036 | 0.04 | 117 | 117 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 5 | 5 | 1 | 1 | 0 | 0 | 2 | 2 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 2 | 2 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 5 | 8 | 7 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 5 | 7 | 7 | 5 | 5 | 1 | 1 | 0 | 0 | 8 | 7 | 1.1428571428571428 | 1.14 | 0.1399999999999999 | 0.14 | 7 | 7 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 12 | 13 | 0.9230769230769231 | 0.92 | 0.07999999999999996 | 0.08 | 1 | 28 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 1 | NULL | 1 | NULL | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 2 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 3 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 2 | 0 | 1 | 1 | 1 | 1 | 0 | NULL | NULL | NULL | NULL | 0 | 0 | 1 | 1 | 0 | 1 | 2 | 1 | 9.0255357 38.7278997 2415.0 8.0 | uuid:143c7e5a-e334-4c3b-beac-d229562312cf | 1-002-1-003 | 2405131211 | APPROVED | uuid:143c7e5a-e334-4c3b-beac-d229562312cf | NULL | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 5 | 2 | 1 | 1 | 1 | 0 | 5 | 2 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | Locally prepared Malaria register at laboratory department | 1 | 1 | 1 | 2 | 1 | 2 | 1 | 1 | 1 | 2 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 12 | 0 | 12 | 1 | 13 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | EP collect, Kobo tool | Epidemiologic weekly Bulletin | 12 | 12 | Community forums, general population | 0 | 1 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |||||||||||||||||||||||||||||||||||||||||||||||||||
| May 11, 2024 11:41:09 AM | May 11, 2024 11:41:09 AM | May 11, 2024 11:00:10 AM | May 11, 2024 11:41:59 AM | 353316091282544 | impacteval | 2509 | 1 | May 11, 2024 | 1 | 123 | Addis Ababa | 1 | 001 | Abebe Bikila health center | 1-Addis Ababa -1-001 | 4 | 1 | 1 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | NULL | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 50 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 50 | 0 | 0 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 0 | 0 | 0 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 150 | NULL | NULL | 0 | 0 | 50 | 50 | 0 | 0 | 50 | 50 | 1 | 1 | 1 | 1 | NULL | NULL | 0 | 0 | 50 | 50 | 0 | 0 | 50 | 50 | 1 | 1 | 1 | 1 | NULL | NULL | NULL | 0 | 0 | 0 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 5 | 1 | 2 | 5 | 2 | 3 | 2 | 5 | 2 | 5 | 0.04 | 0.04 | 0.1 | 0.09900990099009901 | 2 | 3 | 0.04 | 0.04 | 0.06 | 0.0594059405940594 | 2 | 5 | 0.04 | 0.04 | 0.1 | 0.09900990099009901 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 9.0519763 38.7435365 2562.0 4.8 | uuid:2abce57d-5cb5-46e9-8524-ed5f9918bad2 | 1-Addis Ababa -1-001 | 2405110931 | APPROVED | uuid:2abce57d-5cb5-46e9-8524-ed5f9918bad2 | 1 | 1 | NULL | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 1 | 1 | 0 | 0 | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 1 | 1 | 1 | 50 | 50 | 50 | 1 | 1 | 1 | 0 | 0 | 1 | NULL | NULL | 1 | 1 | 1 | 50 | 50 | 50 | 1 | 1 | 1 | 50 | 50 | 50 | NULL | NULL | NULL | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | NULL | NULL | 50 | 50 | 50 | 1 | 1 | 1 | 50 | 50 | 50 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 50 | 50 | 0 | 1 | 50 | 50 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 1 | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 1 | NULL | Outlier | 50 | 50 | 50 | 50 | 50 | 50 | 50 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| May 21, 2024 4:09:26 PM | May 21, 2024 4:09:26 PM | May 21, 2024 5:27:37 AM | May 21, 2024 4:10:10 PM | 353316091470263 | impacteval | 9333 | 1 | May 21, 2024 | 3 | NULL | 002 | 1 | 003 | Addis Raey Health center | 1-002-1-003 | 4 | 1 | 1 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 4 | 4 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 27 | 26 | 25 | 2 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | NULL | 27 | 26 | 25 | 27 | 27 | 1 | 1 | 0 | 0 | 26 | 26 | 1 | 1 | 0 | 0 | 25 | 25 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 27 | 32 | 35 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 27 | 32 | 32 | 27 | 27 | 1 | 1 | 0 | 0 | 32 | 32 | 1 | 1 | 0 | 0 | 35 | 32 | 1.09375 | 1.09 | 0.09000000000000008 | 0.09 | NULL | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 512 | 619 | 525 | 2 | 2 | 2 | 1 | 1 | 1 | 0 | 0 | 0 | NULL | 512 | 512 | 523 | 512 | 512 | 1 | 1 | 0 | 0 | 619 | 512 | 1.208984375 | 1.21 | 0.20999999999999996 | 0.21 | 525 | 523 | 1.0038240917782026 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 10 | 10 | 1 | 1 | 0 | 0 | 5 | 5 | 1 | 1 | 0 | 0 | 6 | 6 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 13 | 14 | 0.9285714285714286 | 0.93 | 0.06999999999999995 | 0.07 | 19 | 14 | 1.3571428571428572 | 1.36 | 0.3600000000000001 | 0.36 | 14 | 16 | 0.875 | 0.88 | 0.12 | 0.12 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | NULL | 32 | 38 | 31 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 21 | 21 | 30 | 32 | 21 | 1.5238095238095237 | 1.52 | 0.52 | 0.52 | 38 | 21 | 1.8095238095238095 | 1.81 | 0.81 | 0.81 | 31 | 30 | 1.0333333333333334 | 1.03 | 0.030000000000000027 | 0.03 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 30 | 30 | 1 | 1 | 0 | 0 | 1 | 26 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 1 | NULL | 1 | NULL | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 2 | 0 | 1 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 3 | 1 | 1 | 1 | 1 | 1 | 1 | 3 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 2 | 1 | 9.0367719 38.7369115 2451.0 5.833 | uuid:2bb13ab8-5a27-44aa-9919-d7cc2819dd87 | 1-002-1-003 | 2405131211 | APPROVED | uuid:2bb13ab8-5a27-44aa-9919-d7cc2819dd87 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | NULL | 1 | 1 | 0 | 0 | 0 | 1 | NULL | NULL | NULL | 1 | 1 | 1 | 10 | 5 | 6 | 1 | 2 | 2 | NULL | 10 | 5 | 6 | 1 | 1 | 0 | 0 | 0 | 1 | NULL | NULL | 1 | 1 | 1 | 13 | 19 | 14 | 1 | 1 | 2 | NULL | 14 | 14 | 16 | 1 | NULL | NULL | NULL | 1 | 1 | 0 | 0 | 0 | 1 | NULL | 1 | 1 | 1 | NULL | NULL | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 30 | 0 | 30 | 1 | 30 | 0 | NULL | NULL | NULL | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | Not giving attention | 1 | Staff turnover | 1 | Delivery register, CAC register, Integrated adolescent and Youth Health service register | 1 | Negligence | 1 | 1 | VCT register, Delivery register, TB register, ANC register, ICT register, EOPD register, Integrated ... | 1 | Not giving attention | 1 | Not giving attention | 1 | 1 | EOPD register | 1 | Not giving attention | NULL | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |||||||||||||||||||||||||||||||||||||||||||||
| May 21, 2024 5:59:33 PM | May 21, 2024 5:59:33 PM | May 21, 2024 6:24:13 AM | May 21, 2024 6:00:05 PM | 353316091282544 | impacteval | 11772 | 1 | May 21, 2024 | 1 | NULL | 002 | 1 | 003 | Woreda ten health center | 1-002-1-003 | 4 | 1 | 1 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 3 | 3 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 6 | 5 | 7 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 6 | 5 | 7 | 6 | 6 | 1 | 1 | 0 | 0 | 5 | 5 | 1 | 1 | 0 | 0 | 7 | 7 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 14 | 19 | 14 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 14 | 18 | 14 | 14 | 14 | 1 | 1 | 0 | 0 | 19 | 18 | 1.0555555555555556 | 1.06 | 0.06000000000000005 | 0.06 | 14 | 14 | 1 | 1 | 0 | 0 | NULL | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 32 | 38 | 44 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 32 | 40 | 44 | 32 | 32 | 1 | 1 | 0 | 0 | 38 | 40 | 0.95 | 0.95 | 0.050000000000000044 | 0.05 | 44 | 44 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 4 | 3 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 3 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 1 | 1 | 1 | 3 | 1 | 3 | 3 | 2 | 2 | 2 | 1 | 2 | 2 | 1 | 1 | 2 | 1 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 28 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | 1 | NULL | 1 | NULL | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 2 | 0 | 1 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 3 | 1 | 1 | 1 | 1 | 3 | 3 | 3 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 9.0490019 38.7170332 2524.0 5.0 | uuid:417d2bbf-2b66-427c-b38c-7f9eccb8035b | 1-002-1-003 | 2405131211 | APPROVED | uuid:417d2bbf-2b66-427c-b38c-7f9eccb8035b | 1 | 1 | NULL | NULL | 1 | NULL | NULL | NULL | NULL | 1 | NULL | 1 | 0 | 0 | 0 | 1 | NULL | NULL | 1 | NULL | 1 | 1 | 1 | 3 | 4 | 3 | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 0 | 0 | 0 | 1 | 1 | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 0 | 0 | 0 | 1 | 1 | NULL | 1 | 1 | 1 | NULL | NULL | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 | NULL | NULL | NULL | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 1 | 1 | NULL | NULL | NULL | NULL | 1 | Delivery service register Postnatal care register | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | Emergency OPD register | NULL | NULL | NULL | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | dhis2 | NULL | NULL | dhis2 | NULL | NULL | 1 | dhis2 | NULL | dhis2 | 1 | NULL | 1 | dhis2 | NULL | 1 | dhis2 | dhis2 | NULL | dhis2 | NULL | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL |
Showing 5 sample records. Hover over cells to see full content.
ethprism_facility_office_checklist
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| CompletionDate | text | Yes | NULL | Date/time field | |
| SubmissionDate | text | Yes | NULL | Date/time field | |
| starttime | text | Yes | NULL | Date/time field | |
| endtime | text | Yes | NULL | Date/time field | |
| deviceid | text | Yes | NULL | ||
| subscriberid | text | Yes | NULL | ||
| simid | text | Yes | NULL | ||
| devicephonenum | text | Yes | NULL | Phone number field | |
| username | text | Yes | NULL | Name or title field | |
| duration | text | Yes | NULL | ||
| caseid | text | Yes | NULL | ||
| FOC105 | text | Yes | NULL | ||
| intro1 | text | Yes | NULL | ||
| FOC101 | text | Yes | NULL | ||
| FOC102 | text | Yes | NULL | ||
| FOC103 | text | Yes | NULL | ||
| FOC104 | text | Yes | NULL | ||
| admin_lvl | text | Yes | NULL | ||
| admin_lvl2 | text | Yes | NULL | ||
| FOC106 | text | Yes | NULL | ||
| FOC107 | text | Yes | NULL | ||
| FOC108 | text | Yes | NULL | ||
| tmp_foc106 | text | Yes | NULL | ||
| tmp_foc107 | text | Yes | NULL | ||
| tmp_foc108 | text | Yes | NULL | ||
| siteid | text | Yes | NULL | ||
| FOC109f | text | Yes | NULL | ||
| FOC110f | text | Yes | NULL | ||
| FOC111 | text | Yes | NULL | ||
| intro2 | text | Yes | NULL | ||
| FOC112 | text | Yes | NULL | ||
| FOC114 | text | Yes | NULL | ||
| FOC115_1 | text | Yes | NULL | ||
| FOC116_1 | text | Yes | NULL | ||
| FOC116_3 | text | Yes | NULL | ||
| FOC032_label6 | text | Yes | NULL | ||
| FOC032bg | text | Yes | NULL | ||
| FOC032bh | text | Yes | NULL | ||
| FOC032da | text | Yes | NULL | ||
| FOC032db | text | Yes | NULL | ||
| FOC032dc | text | Yes | NULL | ||
| FOC032dd | text | Yes | NULL | ||
| FOC032de | text | Yes | NULL | ||
| FOC032df | text | Yes | NULL | ||
| FOC032dg | text | Yes | NULL | ||
| FOC032dh | text | Yes | NULL | ||
| FOC032di | text | Yes | NULL | ||
| FOC032dj | text | Yes | NULL | ||
| FOC032dk | text | Yes | NULL | ||
| FOC032dl | text | Yes | NULL | ||
| FOC032dm | text | Yes | NULL | ||
| FOC032dn | text | Yes | NULL | ||
| FOC032bi | text | Yes | NULL | ||
| FOC032bj | text | Yes | NULL | ||
| FOC032bk | text | Yes | NULL | ||
| FOC032bl | text | Yes | NULL | ||
| FOC032bm | text | Yes | NULL | ||
| FOC032bn | text | Yes | NULL | ||
| FOC032bo | text | Yes | NULL | ||
| FOC032bp | text | Yes | NULL | ||
| FOC032bq | text | Yes | NULL | ||
| FOC032br | text | Yes | NULL | ||
| avail_reg_stock1 | text | Yes | NULL | ||
| FOC034bg | text | Yes | NULL | ||
| FOC035bg | text | Yes | NULL | ||
| FOC034bh | text | Yes | NULL | ||
| FOC034da | text | Yes | NULL | ||
| FOC034db | text | Yes | NULL | ||
| FOC034dc | text | Yes | NULL | ||
| FOC034dd | text | Yes | NULL | ||
| FOC034de | text | Yes | NULL | ||
| avail_reg_stock3 | text | Yes | NULL | ||
| S100 | text | Yes | NULL | ||
| S101_1 | text | Yes | NULL | ||
| S102_1 | text | Yes | NULL | ||
| S103_2_1 | text | Yes | NULL | ||
| reg_purp_1 | text | Yes | NULL | ||
| S104_6_1 | text | Yes | NULL | ||
| reg_org_1 | text | Yes | NULL | ||
| tmp_curr_yr | text | Yes | NULL | ||
| foc036_note3 | text | Yes | NULL | Descriptive text field | |
| FOC036_3m | text | Yes | NULL | ||
| FOC036_3f | text | Yes | NULL | ||
| FOC036_6 | text | Yes | NULL | ||
| foc036_note11 | text | Yes | NULL | Descriptive text field | |
| FOC036_11m | text | Yes | NULL | ||
| FOC036_11f | text | Yes | NULL | ||
| FOC036_12 | text | Yes | NULL | ||
| foc036_note12 | text | Yes | NULL | Descriptive text field | |
| FOC036_12m | text | Yes | NULL | ||
| FOC036_12f | text | Yes | NULL | ||
| FOC037_11 | text | Yes | NULL | ||
| FOC038_11 | text | Yes | NULL | ||
| FOC039_11 | text | Yes | NULL | ||
| foc041_note | text | Yes | NULL | Descriptive text field | |
| FOC041_1_1 | text | Yes | NULL | ||
| FOC041_2_1 | text | Yes | NULL | ||
| FOC041_3_4_1 | text | Yes | NULL | ||
| FOC044 | text | Yes | NULL | ||
| gps_note | text | Yes | NULL | Descriptive text field | |
| FOC113 | text | Yes | NULL | ||
| note_end | text | Yes | NULL | Descriptive text field | |
| instanceID | text | Yes | NULL | ||
| instanceName | text | Yes | NULL | Name or title field | |
| formdef_version | text | Yes | NULL | ||
| review_quality | text | Yes | NULL | ||
| review_status | text | Yes | NULL | ||
| KEY | text | Yes | NULL | ||
| FOC115_2 | text | Yes | NULL | ||
| FOC116_2 | text | Yes | NULL | ||
| FOC032_label1 | text | Yes | NULL | ||
| FOC032a | text | Yes | NULL | ||
| FOC032b | text | Yes | NULL | ||
| FOC032c | text | Yes | NULL | ||
| FOC032d | text | Yes | NULL | ||
| FOC032e | text | Yes | NULL | ||
| FOC032f | text | Yes | NULL | ||
| FOC032g | text | Yes | NULL | ||
| FOC032h | text | Yes | NULL | ||
| FOC032i | text | Yes | NULL | ||
| FOC032j | text | Yes | NULL | ||
| FOC032k | text | Yes | NULL | ||
| FOC032l | text | Yes | NULL | ||
| FOC032m | text | Yes | NULL | ||
| FOC032_label2 | text | Yes | NULL | ||
| FOC032n | text | Yes | NULL | ||
| FOC032o | text | Yes | NULL | ||
| FOC032p | text | Yes | NULL | ||
| FOC032r | text | Yes | NULL | ||
| FOC032s | text | Yes | NULL | ||
| FOC032t | text | Yes | NULL | ||
| FOC032u | text | Yes | NULL | ||
| FOC032v | text | Yes | NULL | ||
| FOC032w | text | Yes | NULL | ||
| FOC032x | text | Yes | NULL | ||
| FOC032z | text | Yes | NULL | ||
| FOC032_label3 | text | Yes | NULL | ||
| FOC032aa | text | Yes | NULL | ||
| FOC032ab | text | Yes | NULL | ||
| FOC032ac | text | Yes | NULL | ||
| FOC032ad | text | Yes | NULL | ||
| FOC032ae | text | Yes | NULL | ||
| FOC032af | text | Yes | NULL | ||
| FOC032ag | text | Yes | NULL | ||
| FOC032ah | text | Yes | NULL | ||
| FOC032ai | text | Yes | NULL | ||
| FOC032ak | text | Yes | NULL | ||
| FOC032al | text | Yes | NULL | ||
| FOC032am | text | Yes | NULL | ||
| FOC032_label4 | text | Yes | NULL | ||
| FOC032an | text | Yes | NULL | ||
| FOC032ao | text | Yes | NULL | ||
| FOC032ap | text | Yes | NULL | ||
| FOC032aq | text | Yes | NULL | ||
| FOC032ar | text | Yes | NULL | ||
| FOC032as | text | Yes | NULL | ||
| FOC032at | text | Yes | NULL | ||
| FOC032au | text | Yes | NULL | ||
| FOC032av | text | Yes | NULL | ||
| FOC032aw | text | Yes | NULL | ||
| FOC032ax | text | Yes | NULL | ||
| FOC032ay | text | Yes | NULL | ||
| FOC032_label5 | text | Yes | NULL | ||
| FOC032az | text | Yes | NULL | ||
| FOC032ba | text | Yes | NULL | ||
| FOC032bb | text | Yes | NULL | ||
| FOC032bc | text | Yes | NULL | ||
| FOC032bd | text | Yes | NULL | ||
| FOC032be | text | Yes | NULL | ||
| FOC032bf | text | Yes | NULL | ||
| FOC032ca | text | Yes | NULL | ||
| FOC032cb | text | Yes | NULL | ||
| FOC034a | text | Yes | NULL | ||
| FOC035a | text | Yes | NULL | ||
| FOC034e | text | Yes | NULL | ||
| FOC035e | text | Yes | NULL | ||
| FOC034j | text | Yes | NULL | ||
| FOC034k | text | Yes | NULL | ||
| FOC034l | text | Yes | NULL | ||
| FOC034m | text | Yes | NULL | ||
| FOC034n | text | Yes | NULL | ||
| FOC034aa | text | Yes | NULL | ||
| FOC034ap | text | Yes | NULL | ||
| FOC034aq | text | Yes | NULL | ||
| FOC034ar | text | Yes | NULL | ||
| avail_reg_stock2 | text | Yes | NULL | ||
| foc036_note1 | text | Yes | NULL | Descriptive text field | |
| FOC036_1m | text | Yes | NULL | ||
| FOC036_1f | text | Yes | NULL | ||
| foc036_note2 | text | Yes | NULL | Descriptive text field | |
| FOC036_2m | text | Yes | NULL | ||
| FOC036_2f | text | Yes | NULL | ||
| foc036_note4 | text | Yes | NULL | Descriptive text field | |
| FOC036_4m | text | Yes | NULL | ||
| FOC036_4f | text | Yes | NULL | ||
| foc036_note5 | text | Yes | NULL | Descriptive text field | |
| FOC036_5m | text | Yes | NULL | ||
| FOC036_5f | text | Yes | NULL | ||
| foc036_note6 | text | Yes | NULL | Descriptive text field | |
| FOC036_6m | text | Yes | NULL | ||
| FOC036_6f | text | Yes | NULL | ||
| foc036_note7 | text | Yes | NULL | Descriptive text field | |
| FOC036_7m | text | Yes | NULL | ||
| FOC036_7f | text | Yes | NULL | ||
| foc036_note8 | text | Yes | NULL | Descriptive text field | |
| FOC036_8m | text | Yes | NULL | ||
| FOC036_8f | text | Yes | NULL | ||
| foc036_note9 | text | Yes | NULL | Descriptive text field | |
| FOC036_9m | text | Yes | NULL | ||
| FOC036_9f | text | Yes | NULL | ||
| foc036_note10 | text | Yes | NULL | Descriptive text field | |
| FOC036_10m | text | Yes | NULL | ||
| FOC036_10f | text | Yes | NULL | ||
| FOC037_7 | text | Yes | NULL | ||
| FOC038_7 | text | Yes | NULL | ||
| FOC039_2 | text | Yes | NULL | ||
| FOC039_7 | text | Yes | NULL | ||
| FOC042 | text | Yes | NULL | ||
| FOC043 | text | Yes | NULL | ||
| FOC045 | text | Yes | NULL | ||
| FOC046 | text | Yes | NULL | ||
| FOC034b | text | Yes | NULL | ||
| FOC034c | text | Yes | NULL | ||
| FOC034d | text | Yes | NULL | ||
| FOC034f | text | Yes | NULL | ||
| FOC034g | text | Yes | NULL | ||
| FOC035l | text | Yes | NULL | ||
| FOC034r | text | Yes | NULL | ||
| FOC034s | text | Yes | NULL | ||
| FOC034t | text | Yes | NULL | ||
| FOC034v | text | Yes | NULL | ||
| FOC034w | text | Yes | NULL | ||
| FOC034ac | text | Yes | NULL | ||
| FOC034ae | text | Yes | NULL | ||
| FOC034ah | text | Yes | NULL | ||
| FOC034ai | text | Yes | NULL | ||
| FOC034ak | text | Yes | NULL | ||
| FOC034al | text | Yes | NULL | ||
| FOC034am | text | Yes | NULL | ||
| FOC034an | text | Yes | NULL | ||
| FOC034ao | text | Yes | NULL | ||
| FOC034as | text | Yes | NULL | ||
| FOC034at | text | Yes | NULL | ||
| FOC034au | text | Yes | NULL | ||
| FOC034av | text | Yes | NULL | ||
| FOC034aw | text | Yes | NULL | ||
| FOC034ax | text | Yes | NULL | ||
| FOC034ay | text | Yes | NULL | ||
| FOC034az | text | Yes | NULL | ||
| FOC034ba | text | Yes | NULL | ||
| FOC034bb | text | Yes | NULL | ||
| FOC034bc | text | Yes | NULL | ||
| FOC034bd | text | Yes | NULL | ||
| FOC035bd | text | Yes | NULL | ||
| FOC034be | text | Yes | NULL | ||
| FOC034bf | text | Yes | NULL | ||
| FOC034ca | text | Yes | NULL | ||
| FOC034cb | text | Yes | NULL | ||
| FOC037_2 | text | Yes | NULL | ||
| FOC038_3 | text | Yes | NULL | ||
| FOC041_3_1_1 | text | Yes | NULL | ||
| FOC041_1_2 | text | Yes | NULL | ||
| FOC041_2_2 | text | Yes | NULL | ||
| FOC041_3_2_2 | text | Yes | NULL | ||
| FOC041_3_4_2 | text | Yes | NULL | ||
| FOC034o | text | Yes | NULL | ||
| FOC034p | text | Yes | NULL | ||
| FOC034ab | text | Yes | NULL | ||
| FOC034ad | text | Yes | NULL | ||
| FOC034ag | text | Yes | NULL | ||
| FOC035ao | text | Yes | NULL | ||
| FOC035at | text | Yes | NULL | ||
| FOC041_3_5_1 | text | Yes | NULL | ||
| FOC041_3_1_2 | text | Yes | NULL | ||
| FOC041_3_5_2 | text | Yes | NULL | ||
| FOC034h | text | Yes | NULL | ||
| FOC034i | text | Yes | NULL | ||
| FOC034u | text | Yes | NULL | ||
| FOC034af | text | Yes | NULL | ||
| FOC035ar | text | Yes | NULL | ||
| FOC037_3 | text | Yes | NULL | ||
| FOC041_3_2_1 | text | Yes | NULL | ||
| FOC041_3_3_1 | text | Yes | NULL | ||
| FOC041_3_3_2 | text | Yes | NULL | ||
| FOC041_1_3 | text | Yes | NULL | ||
| FOC041_2_3 | text | Yes | NULL | ||
| FOC041_3_1_3 | text | Yes | NULL | ||
| FOC041_3_2_3 | text | Yes | NULL | ||
| FOC041_3_3_3 | text | Yes | NULL | ||
| FOC041_3_4_3 | text | Yes | NULL | ||
| FOC041_3_5_3 | text | Yes | NULL | ||
| FOC041_3_6_3 | text | Yes | NULL | ||
| FOC041_3_7_3 | text | Yes | NULL | ||
| FOC109h | text | Yes | NULL | ||
| FOC110h | text | Yes | NULL | ||
| FOC032_label7 | text | Yes | NULL | ||
| FOC032bs | text | Yes | NULL | ||
| FOC032bt | text | Yes | NULL | ||
| FOC032bu | text | Yes | NULL | ||
| FOC032bv | text | Yes | NULL | ||
| FOC032bw | text | Yes | NULL | ||
| FOC032bx | text | Yes | NULL | ||
| FOC034bu | text | Yes | NULL | ||
| FOC034bv | text | Yes | NULL | ||
| FOC034bw | text | Yes | NULL | ||
| FOC034bx | text | Yes | NULL | ||
| foc047_note1 | text | Yes | NULL | Descriptive text field | |
| FOC047_1m | text | Yes | NULL | ||
| FOC047_1f | text | Yes | NULL | ||
| foc047_note2 | text | Yes | NULL | Descriptive text field | |
| FOC047_2m | text | Yes | NULL | ||
| FOC047_2f | text | Yes | NULL | ||
| foc047_note3 | text | Yes | NULL | Descriptive text field | |
| FOC047_3m | text | Yes | NULL | ||
| FOC047_3f | text | Yes | NULL | ||
| FOC047_4 | text | Yes | NULL | ||
| foc047_note4 | text | Yes | NULL | Descriptive text field | |
| FOC047_4m | text | Yes | NULL | ||
| FOC047_4f | text | Yes | NULL | ||
| FOC048 | text | Yes | NULL | ||
| FOC048m | text | Yes | NULL | ||
| FOC048f | text | Yes | NULL | ||
| FOC049_3 | text | Yes | NULL | ||
| FOC050_3 | text | Yes | NULL | ||
| FOC051_3 | text | Yes | NULL | ||
| foc053_note | text | Yes | NULL | Descriptive text field | |
| FOC053_1_1 | text | Yes | NULL | ||
| FOC053_2_1 | text | Yes | NULL | ||
| FOC053_3_5_1 | text | Yes | NULL | ||
| FOC053_3_7_1 | text | Yes | NULL | ||
| FOC053_1_2 | text | Yes | NULL | ||
| FOC053_2_2 | text | Yes | NULL | ||
| FOC053_3_2_2 | text | Yes | NULL | ||
| FOC053_3_5_2 | text | Yes | NULL | ||
| FOC054 | text | Yes | NULL | ||
| FOC055 | text | Yes | NULL | ||
| FOC035ay | text | Yes | NULL | ||
| FOC037_1 | text | Yes | NULL | ||
| FOC038_2 | text | Yes | NULL | ||
| FOC039_1 | text | Yes | NULL | ||
| FOC039_3 | text | Yes | NULL | ||
| FOC039_6 | text | Yes | NULL | ||
| FOC034bi | text | Yes | NULL | ||
| FOC034bj | text | Yes | NULL | ||
| FOC034bk | text | Yes | NULL | ||
| FOC034bl | text | Yes | NULL | ||
| FOC034bm | text | Yes | NULL | ||
| FOC034bn | text | Yes | NULL | ||
| FOC037_6 | text | Yes | NULL | ||
| FOC038_6 | text | Yes | NULL | ||
| FOC034x | text | Yes | NULL | ||
| FOC038_1 | text | Yes | NULL | ||
| FOC034df | text | Yes | NULL | ||
| FOC034bo | text | Yes | NULL | ||
| FOC034bp | text | Yes | NULL | ||
| FOC034bq | text | Yes | NULL | ||
| FOC034br | text | Yes | NULL | ||
| FOC041_3_6_1 | text | Yes | NULL | ||
| FOC041_3_6_2 | text | Yes | NULL | ||
| FOC035b | text | Yes | NULL | ||
| FOC035c | text | Yes | NULL | ||
| FOC035d | text | Yes | NULL | ||
| FOC035h | text | Yes | NULL | ||
| FOC035i | text | Yes | NULL | ||
| FOC035k | text | Yes | NULL | ||
| FOC035w | text | Yes | NULL | ||
| FOC035an | text | Yes | NULL | ||
| FOC035ap | text | Yes | NULL | ||
| FOC035aq | text | Yes | NULL | ||
| FOC035as | text | Yes | NULL | ||
| FOC035au | text | Yes | NULL | ||
| FOC035av | text | Yes | NULL | ||
| FOC035aw | text | Yes | NULL | ||
| FOC035ax | text | Yes | NULL | ||
| FOC035az | text | Yes | NULL | ||
| FOC035ba | text | Yes | NULL | ||
| FOC035bb | text | Yes | NULL | ||
| FOC035bc | text | Yes | NULL | ||
| FOC035be | text | Yes | NULL | ||
| FOC037_4 | text | Yes | NULL | ||
| FOC037_5 | text | Yes | NULL | ||
| FOC037_8 | text | Yes | NULL | ||
| FOC037_9 | text | Yes | NULL | ||
| FOC038_9 | text | Yes | NULL | ||
| FOC039_8 | text | Yes | NULL | ||
| FOC041_3_7_2 | text | Yes | NULL | ||
| FOC034dg | text | Yes | NULL | ||
| FOC034dh | text | Yes | NULL | ||
| FOC034di | text | Yes | NULL | ||
| FOC034dj | text | Yes | NULL | ||
| FOC034dl | text | Yes | NULL | ||
| FOC034dm | text | Yes | NULL | ||
| FOC034dn | text | Yes | NULL | ||
| FOC034dk | text | Yes | NULL | ||
| FOC035da | text | Yes | NULL | ||
| FOC035de | text | Yes | NULL | ||
| FOC034bs | text | Yes | NULL | ||
| FOC050_1 | text | Yes | NULL | ||
| FOC050_2 | text | Yes | NULL | ||
| FOC051_2 | text | Yes | NULL | ||
| FOC053_3_1_1 | text | Yes | NULL | ||
| FOC053_3_2_1 | text | Yes | NULL | ||
| FOC053_3_1_2 | text | Yes | NULL | ||
| FOC053_1_3 | text | Yes | NULL | ||
| FOC053_2_3 | text | Yes | NULL | ||
| FOC053_3_1_3 | text | Yes | NULL | ||
| FOC053_3_2_3 | text | Yes | NULL | ||
| FOC053_1_4 | text | Yes | NULL | ||
| FOC053_1o_4 | text | Yes | NULL | ||
| FOC053_2_4 | text | Yes | NULL | ||
| FOC053_3_1_4 | text | Yes | NULL | ||
| FOC053_3_5_4 | text | Yes | NULL | ||
| FOC053_3_6_4 | text | Yes | NULL | ||
| FOC035f | text | Yes | NULL | ||
| FOC035g | text | Yes | NULL | ||
| FOC038_8 | text | Yes | NULL | ||
| FOC035m | text | Yes | NULL | ||
| FOC035n | text | Yes | NULL | ||
| FOC037_10 | text | Yes | NULL | ||
| FOC038_4 | text | Yes | NULL | ||
| FOC038_5 | text | Yes | NULL | ||
| FOC038_10 | text | Yes | NULL | ||
| FOC039_4 | text | Yes | NULL | ||
| FOC039_5 | text | Yes | NULL | ||
| FOC039_9 | text | Yes | NULL | ||
| FOC039_10 | text | Yes | NULL | ||
| FOC041_1_4 | text | Yes | NULL | ||
| FOC041_2_4 | text | Yes | NULL | ||
| FOC041_3_1_4 | text | Yes | NULL | ||
| FOC041_3_2_4 | text | Yes | NULL | ||
| FOC041_3_3_4 | text | Yes | NULL | ||
| FOC041_3_4_4 | text | Yes | NULL | ||
| FOC041_3_5_4 | text | Yes | NULL | ||
| FOC041_3_6_4 | text | Yes | NULL | ||
| FOC041_3_7_4 | text | Yes | NULL | ||
| FOC041_1_5 | text | Yes | NULL | ||
| FOC041_2_5 | text | Yes | NULL | ||
| FOC041_3_1_5 | text | Yes | NULL | ||
| FOC041_3_2_5 | text | Yes | NULL | ||
| FOC041_3_3_5 | text | Yes | NULL | ||
| FOC051_1 | text | Yes | NULL | ||
| FOC032q | text | Yes | NULL | ||
| FOC032y | text | Yes | NULL | ||
| FOC032aj | text | Yes | NULL | ||
| FOC034q | text | Yes | NULL | ||
| FOC034y | text | Yes | NULL | ||
| FOC049_1 | text | Yes | NULL | ||
| FOC049_2 | text | Yes | NULL | ||
| FOC053_3_3_1 | text | Yes | NULL | ||
| FOC053_3_4_1 | text | Yes | NULL | ||
| FOC053_3_6_1 | text | Yes | NULL | ||
| FOC053_3_3_2 | text | Yes | NULL | ||
| FOC053_3_4_2 | text | Yes | NULL | ||
| FOC053_3_6_2 | text | Yes | NULL | ||
| FOC053_3_7_2 | text | Yes | NULL | ||
| FOC053_3_3_3 | text | Yes | NULL | ||
| FOC053_3_4_3 | text | Yes | NULL | ||
| FOC053_3_5_3 | text | Yes | NULL | ||
| FOC053_3_6_3 | text | Yes | NULL | ||
| FOC053_3_7_3 | text | Yes | NULL | ||
| S103_5_1 | text | Yes | NULL | ||
| S104_4_1 | text | Yes | NULL | ||
| S101_2 | text | Yes | NULL | ||
| S102_2 | text | Yes | NULL | ||
| S103_5_2 | text | Yes | NULL | ||
| reg_purp_2 | text | Yes | NULL | ||
| S104_4_2 | text | Yes | NULL | ||
| reg_org_2 | text | Yes | NULL | ||
| FOC034aj | text | Yes | NULL | ||
| FOC035bs | text | Yes | NULL | ||
| FOC035j | text | Yes | NULL | ||
| FOC035o | text | Yes | NULL | ||
| FOC035p | text | Yes | NULL | ||
| FOC035q | text | Yes | NULL | ||
| FOC035r | text | Yes | NULL | ||
| FOC035s | text | Yes | NULL | ||
| FOC035t | text | Yes | NULL | ||
| FOC035u | text | Yes | NULL | ||
| FOC035v | text | Yes | NULL | ||
| FOC035x | text | Yes | NULL | ||
| FOC035y | text | Yes | NULL | ||
| FOC035aa | text | Yes | NULL | ||
| FOC035ab | text | Yes | NULL | ||
| FOC035ac | text | Yes | NULL | ||
| FOC035ad | text | Yes | NULL | ||
| FOC035ae | text | Yes | NULL | ||
| FOC035af | text | Yes | NULL | ||
| FOC035ag | text | Yes | NULL | ||
| FOC035ah | text | Yes | NULL | ||
| FOC035ai | text | Yes | NULL | ||
| FOC035aj | text | Yes | NULL | ||
| FOC035ak | text | Yes | NULL | ||
| FOC035al | text | Yes | NULL | ||
| FOC035am | text | Yes | NULL | ||
| FOC035bf | text | Yes | NULL | ||
| FOC035ca | text | Yes | NULL | ||
| FOC035cb | text | Yes | NULL | ||
| FOC035bu | text | Yes | NULL | ||
| FOC115_96 | text | Yes | NULL | ||
| FOC115_Other | text | Yes | NULL | ||
| FOC035dd | text | Yes | NULL | ||
| FOC035dj | text | Yes | NULL | ||
| FOC035dk | text | Yes | NULL | ||
| FOC041_3_4_5 | text | Yes | NULL | ||
| FOC041_3_5_5 | text | Yes | NULL | ||
| FOC041_1_6 | text | Yes | NULL | ||
| FOC041_2_6 | text | Yes | NULL | ||
| FOC041_3_1_6 | text | Yes | NULL | ||
| FOC041_3_2_6 | text | Yes | NULL | ||
| FOC041_3_3_6 | text | Yes | NULL | ||
| FOC041_3_4_6 | text | Yes | NULL | ||
| FOC041_3_5_6 | text | Yes | NULL | ||
| FOC041_1_7 | text | Yes | NULL | ||
| FOC041_2_7 | text | Yes | NULL | ||
| FOC041_3_1_7 | text | Yes | NULL | ||
| FOC041_3_2_7 | text | Yes | NULL | ||
| FOC041_3_3_7 | text | Yes | NULL | ||
| FOC035bw | text | Yes | NULL | ||
| FOC035bx | text | Yes | NULL | ||
| FOC035bh | text | Yes | NULL | ||
| FOC102_Other | text | Yes | NULL | ||
| FOC116_96 | text | Yes | NULL | ||
| FOC116_Other | text | Yes | NULL | ||
| FOC032_1 | text | Yes | NULL | ||
| FOC032_2 | text | Yes | NULL | ||
| FOC032_3 | text | Yes | NULL | ||
| FOC032_4 | text | Yes | NULL | ||
| FOC032_5 | text | Yes | NULL | ||
| FOC032_6 | text | Yes | NULL | ||
| FOC032_7 | text | Yes | NULL | ||
| FOC032_8 | text | Yes | NULL | ||
| FOC032_9 | text | Yes | NULL | ||
| FOC032_10 | text | Yes | NULL | ||
| FOC032_11 | text | Yes | NULL | ||
| FOC032_12 | text | Yes | NULL | ||
| FOC032_13 | text | Yes | NULL | ||
| FOC032_14 | text | Yes | NULL | ||
| FOC032_15 | text | Yes | NULL | ||
| FOC032_16 | text | Yes | NULL | ||
| FOC032_17 | text | Yes | NULL | ||
| FOC032_18 | text | Yes | NULL | ||
| FOC032_19 | text | Yes | NULL | ||
| FOC032_20 | text | Yes | NULL | ||
| FOC032_21 | text | Yes | NULL | ||
| FOC032_22 | text | Yes | NULL | ||
| FOC032_23 | text | Yes | NULL | ||
| FOC032_24 | text | Yes | NULL | ||
| FOC032_25 | text | Yes | NULL | ||
| FOC032_26 | text | Yes | NULL | ||
| FOC032_27 | text | Yes | NULL | ||
| FOC032_28 | text | Yes | NULL | ||
| FOC032_29 | text | Yes | NULL | ||
| FOC032_30 | text | Yes | NULL | ||
| FOC032_31 | text | Yes | NULL | ||
| FOC032_32 | text | Yes | NULL | ||
| FOC032_33 | text | Yes | NULL | ||
| FOC032_34 | text | Yes | NULL | ||
| FOC032_35 | text | Yes | NULL | ||
| FOC032_36 | text | Yes | NULL | ||
| FOC032_37 | text | Yes | NULL | ||
| FOC032_38 | text | Yes | NULL | ||
| FOC032_39 | text | Yes | NULL | ||
| FOC032_40 | text | Yes | NULL | ||
| FOC032_41 | text | Yes | NULL | ||
| FOC032_42 | text | Yes | NULL | ||
| FOC032_43 | text | Yes | NULL | ||
| FOC032_44 | text | Yes | NULL | ||
| FOC032_45 | text | Yes | NULL | ||
| FOC032_46 | text | Yes | NULL | ||
| FOC032_47 | text | Yes | NULL | ||
| FOC032_48 | text | Yes | NULL | ||
| FOC032_49 | text | Yes | NULL | ||
| FOC032_50 | text | Yes | NULL | ||
| FOC032_51 | text | Yes | NULL | ||
| FOC032_52 | text | Yes | NULL | ||
| FOC032_53 | text | Yes | NULL | ||
| FOC032_54 | text | Yes | NULL | ||
| FOC032_55 | text | Yes | NULL | ||
| FOC032_56 | text | Yes | NULL | ||
| FOC032_57 | text | Yes | NULL | ||
| FOC032_58 | text | Yes | NULL | ||
| FOC032_59 | text | Yes | NULL | ||
| FOC032_60 | text | Yes | NULL | ||
| FOC032_61 | text | Yes | NULL | ||
| FOC032_62 | text | Yes | NULL | ||
| FOC032_63 | text | Yes | NULL | ||
| FOC032_64 | text | Yes | NULL | ||
| FOC032_65 | text | Yes | NULL | ||
| FOC032_66 | text | Yes | NULL | ||
| FOC032_67 | text | Yes | NULL | ||
| FOC032_68 | text | Yes | NULL | ||
| FOC032_69 | text | Yes | NULL | ||
| FOC032_70 | text | Yes | NULL | ||
| FOC032_71 | text | Yes | NULL | ||
| FOC032_72 | text | Yes | NULL | ||
| FOC032_73 | text | Yes | NULL | ||
| FOC032_74 | text | Yes | NULL | ||
| FOC032_75 | text | Yes | NULL | ||
| FOC032_76 | text | Yes | NULL | ||
| FOC032_77 | text | Yes | NULL | ||
| FOC032_78 | text | Yes | NULL | ||
| FOC032_79 | text | Yes | NULL | ||
| FOC032_80 | text | Yes | NULL | ||
| FOC032_81 | text | Yes | NULL | ||
| FOC032_82 | text | Yes | NULL | ||
| FOC032_83 | text | Yes | NULL | ||
| FOC032_84 | text | Yes | NULL | ||
| FOC032_85 | text | Yes | NULL | ||
| FOC032_86 | text | Yes | NULL | ||
| FOC034_1 | text | Yes | NULL | ||
| FOC035_1 | text | Yes | NULL | ||
| FOC034_2 | text | Yes | NULL | ||
| FOC035_2 | text | Yes | NULL | ||
| FOC034_3 | text | Yes | NULL | ||
| FOC035_3 | text | Yes | NULL | ||
| FOC034_4 | text | Yes | NULL | ||
| FOC035_4 | text | Yes | NULL | ||
| FOC034_5 | text | Yes | NULL | ||
| FOC035_5 | text | Yes | NULL | ||
| FOC034_18 | text | Yes | NULL | ||
| FOC035_18 | text | Yes | NULL | ||
| FOC034_34 | text | Yes | NULL | ||
| FOC035_34 | text | Yes | NULL | ||
| FOC034_42 | text | Yes | NULL | ||
| FOC035_42 | text | Yes | NULL | ||
| FOC034_58 | text | Yes | NULL | ||
| FOC034_59 | text | Yes | NULL | ||
| FOC034_60 | text | Yes | NULL | ||
| FOC034_61 | text | Yes | NULL | ||
| FOC034_65 | text | Yes | NULL | ||
| FOC034_6 | text | Yes | NULL | ||
| FOC034_7 | text | Yes | NULL | ||
| FOC034_8 | text | Yes | NULL | ||
| FOC034_9 | text | Yes | NULL | ||
| FOC034_10 | text | Yes | NULL | ||
| FOC034_11 | text | Yes | NULL | ||
| FOC034_12 | text | Yes | NULL | ||
| FOC034_13 | text | Yes | NULL | ||
| FOC034_14 | text | Yes | NULL | ||
| FOC034_15 | text | Yes | NULL | ||
| FOC034_16 | text | Yes | NULL | ||
| FOC034_17 | text | Yes | NULL | ||
| FOC034_19 | text | Yes | NULL | ||
| FOC034_20 | text | Yes | NULL | ||
| FOC034_22 | text | Yes | NULL | ||
| FOC034_23 | text | Yes | NULL | ||
| FOC034_24 | text | Yes | NULL | ||
| FOC034_25 | text | Yes | NULL | ||
| FOC034_26 | text | Yes | NULL | ||
| FOC034_27 | text | Yes | NULL | ||
| FOC034_28 | text | Yes | NULL | ||
| FOC034_29 | text | Yes | NULL | ||
| FOC034_30 | text | Yes | NULL | ||
| FOC034_31 | text | Yes | NULL | ||
| FOC034_32 | text | Yes | NULL | ||
| FOC034_33 | text | Yes | NULL | ||
| FOC034_35 | text | Yes | NULL | ||
| FOC034_36 | text | Yes | NULL | ||
| FOC034_37 | text | Yes | NULL | ||
| FOC034_38 | text | Yes | NULL | ||
| FOC034_39 | text | Yes | NULL | ||
| FOC034_40 | text | Yes | NULL | ||
| FOC034_41 | text | Yes | NULL | ||
| FOC034_43 | text | Yes | NULL | ||
| FOC034_44 | text | Yes | NULL | ||
| FOC034_45 | text | Yes | NULL | ||
| FOC034_46 | text | Yes | NULL | ||
| FOC034_47 | text | Yes | NULL | ||
| FOC034_48 | text | Yes | NULL | ||
| FOC034_49 | text | Yes | NULL | ||
| FOC034_50 | text | Yes | NULL | ||
| FOC034_51 | text | Yes | NULL | ||
| FOC034_52 | text | Yes | NULL | ||
| FOC034_53 | text | Yes | NULL | ||
| FOC034_54 | text | Yes | NULL | ||
| FOC034_55 | text | Yes | NULL | ||
| FOC034_56 | text | Yes | NULL | ||
| FOC034_57 | text | Yes | NULL | ||
| FOC034_62 | text | Yes | NULL | ||
| FOC034_63 | text | Yes | NULL | ||
| FOC034_64 | text | Yes | NULL | ||
| FOC034_66 | text | Yes | NULL | ||
| FOC034_67 | text | Yes | NULL | ||
| FOC034_68 | text | Yes | NULL | ||
| FOC034_69 | text | Yes | NULL | ||
| FOC034_70 | text | Yes | NULL | ||
| FOC034_71 | text | Yes | NULL | ||
| FOC034_72 | text | Yes | NULL | ||
| FOC034_73 | text | Yes | NULL | ||
| FOC034_74 | text | Yes | NULL | ||
| FOC034_75 | text | Yes | NULL | ||
| FOC034_76 | text | Yes | NULL | ||
| FOC034_77 | text | Yes | NULL | ||
| FOC034_78 | text | Yes | NULL | ||
| FOC034_79 | text | Yes | NULL | ||
| FOC034_80 | text | Yes | NULL | ||
| FOC034_81 | text | Yes | NULL | ||
| FOC034_82 | text | Yes | NULL | ||
| FOC034_83 | text | Yes | NULL | ||
| FOC034_84 | text | Yes | NULL | ||
| FOC034_85 | text | Yes | NULL | ||
| FOC034_86 | text | Yes | NULL | ||
| FOC035_22 | text | Yes | NULL | ||
| FOC041_1_8 | text | Yes | NULL | ||
| FOC041_2_8 | text | Yes | NULL | ||
| FOC041_3_1_8 | text | Yes | NULL | ||
| FOC041_3_2_8 | text | Yes | NULL | ||
| FOC041_1_9 | text | Yes | NULL | ||
| FOC041_2_9 | text | Yes | NULL | ||
| FOC041_3_1_9 | text | Yes | NULL | ||
| FOC041_3_2_9 | text | Yes | NULL | ||
| FOC041_1_10 | text | Yes | NULL | ||
| FOC041_2_10 | text | Yes | NULL | ||
| FOC041_3_1_10 | text | Yes | NULL | ||
| FOC041_3_2_10 | text | Yes | NULL | ||
| FOC041_1_11 | text | Yes | NULL | ||
| FOC041_2_11 | text | Yes | NULL | ||
| FOC041_3_1_11 | text | Yes | NULL | ||
| FOC041_3_2_11 | text | Yes | NULL | ||
| FOC041_1_12 | text | Yes | NULL | ||
| FOC041_2_12 | text | Yes | NULL | ||
| FOC041_3_1_12 | text | Yes | NULL | ||
| FOC041_3_2_12 | text | Yes | NULL | ||
| FOC041_1_13 | text | Yes | NULL | ||
| FOC041_2_13 | text | Yes | NULL | ||
| FOC041_3_1_13 | text | Yes | NULL | ||
| FOC041_3_2_13 | text | Yes | NULL | ||
| FOC035_7 | text | Yes | NULL | ||
| FOC035_9 | text | Yes | NULL | ||
| FOC035_12 | text | Yes | NULL | ||
| FOC035_48 | text | Yes | NULL | ||
| FOC035_51 | text | Yes | NULL | ||
| FOC035_56 | text | Yes | NULL | ||
| FOC035_62 | text | Yes | NULL | ||
| S103_9_1 | text | Yes | NULL | ||
| FOC041_3_96_1 | text | Yes | NULL | ||
| FOC041_3o_1 | text | Yes | NULL | ||
| FOC041_3_96_2 | text | Yes | NULL | ||
| FOC041_3o_2 | text | Yes | NULL | ||
| FOC107_Other | text | Yes | NULL | ||
| FOC035bv | text | Yes | NULL | ||
| female_rhis | text | Yes | NULL | ||
| FOC032do | text | Yes | NULL | ||
| FOC032dp | text | Yes | NULL | ||
| FOC034do | text | Yes | NULL | ||
| FOC034dp | text | Yes | NULL | ||
| FOC037_96 | text | Yes | NULL | ||
| FOC037o | text | Yes | NULL | ||
| FOC038_96 | text | Yes | NULL | ||
| FOC038o | text | Yes | NULL | ||
| FOC039_96 | text | Yes | NULL | ||
| FOC039o | text | Yes | NULL | ||
| FOC035_30 | text | Yes | NULL | ||
| FOC053_1o_1 | text | Yes | NULL | ||
| FOC035_23 | text | Yes | NULL | ||
| FOC035_36 | text | Yes | NULL | ||
| FOC035_39 | text | Yes | NULL | ||
| FOC035_53 | text | Yes | NULL | ||
| FOC035_54 | text | Yes | NULL | ||
| FOC035_64 | text | Yes | NULL | ||
| FOC035_77 | text | Yes | NULL | ||
| FOC035_79 | text | Yes | NULL | ||
| FOC035_81 | text | Yes | NULL | ||
| FOC041_3_96_3 | text | Yes | NULL | ||
| FOC041_3o_3 | text | Yes | NULL | ||
| FOC035_17 | text | Yes | NULL | ||
| FOC035_26 | text | Yes | NULL | ||
| FOC035_28 | text | Yes | NULL | ||
| FOC035_35 | text | Yes | NULL | ||
| FOC035_38 | text | Yes | NULL | ||
| FOC035_45 | text | Yes | NULL | ||
| FOC035_46 | text | Yes | NULL | ||
| FOC035_47 | text | Yes | NULL | ||
| FOC035_49 | text | Yes | NULL | ||
| FOC035_55 | text | Yes | NULL | ||
| FOC035_57 | text | Yes | NULL | ||
| FOC035_60 | text | Yes | NULL | ||
| FOC035_61 | text | Yes | NULL | ||
| FOC035_63 | text | Yes | NULL | ||
| FOC035_65 | text | Yes | NULL | ||
| FOC035_68 | text | Yes | NULL | ||
| FOC035_71 | text | Yes | NULL | ||
| FOC035_72 | text | Yes | NULL | ||
| FOC035_74 | text | Yes | NULL | ||
| FOC035_75 | text | Yes | NULL | ||
| FOC035_78 | text | Yes | NULL | ||
| FOC035_80 | text | Yes | NULL | ||
| FOC035_83 | text | Yes | NULL | ||
| FOC035_84 | text | Yes | NULL | ||
| FOC035_85 | text | Yes | NULL | ||
| FOC035df | text | Yes | NULL | ||
| FOC035dl | text | Yes | NULL | ||
| FOC035dm | text | Yes | NULL | ||
| FOC035dn | text | Yes | NULL | ||
| FOC035do | text | Yes | NULL | ||
| FOC035dp | text | Yes | NULL | ||
| FOC035bi | text | Yes | NULL | ||
| FOC035bm | text | Yes | NULL | ||
| FOC035_16 | text | Yes | NULL | ||
| FOC035_37 | text | Yes | NULL | ||
| FOC035_69 | text | Yes | NULL | ||
| FOC035dh | text | Yes | NULL | ||
| FOC035bk | text | Yes | NULL | ||
| FOC035_40 | text | Yes | NULL | ||
| S103_96_1 | text | Yes | NULL | ||
| S102_19_1 | text | Yes | NULL | ||
| FOC035_52 | text | Yes | NULL | ||
| FOC035bl | text | Yes | NULL | ||
| FOC035bn | text | Yes | NULL | ||
| FOC035_29 | text | Yes | NULL | ||
| FOC035_41 | text | Yes | NULL | ||
| FOC035_58 | text | Yes | NULL | ||
| FOC035_59 | text | Yes | NULL | ||
| FOC035_82 | text | Yes | NULL | ||
| FOC035_66 | text | Yes | NULL | ||
| FOC035db | text | Yes | NULL | ||
| FOC035dc | text | Yes | NULL | ||
| FOC035di | text | Yes | NULL | ||
| FOC035bj | text | Yes | NULL | ||
| FOC035bo | text | Yes | NULL | ||
| FOC035bp | text | Yes | NULL | ||
| FOC035bq | text | Yes | NULL | ||
| FOC035br | text | Yes | NULL | ||
| FOC035_6 | text | Yes | NULL | ||
| FOC035_11 | text | Yes | NULL | ||
| FOC035_13 | text | Yes | NULL | ||
| FOC035_14 | text | Yes | NULL | ||
| FOC035_15 | text | Yes | NULL | ||
| FOC035_24 | text | Yes | NULL | ||
| FOC035_67 | text | Yes | NULL | ||
| FOC035_70 | text | Yes | NULL | ||
| FOC035_8 | text | Yes | NULL | ||
| FOC035_10 | text | Yes | NULL | ||
| FOC035_19 | text | Yes | NULL | ||
| S103_11_1 | text | Yes | NULL | ||
| S104_1_1 | text | Yes | NULL | ||
| S103_11_2 | text | Yes | NULL | ||
| S104_5_2 | text | Yes | NULL | ||
| S103_96_2 | text | Yes | NULL | ||
| S102_19_2 | text | Yes | NULL | ||
| S104_1_2 | text | Yes | NULL | ||
| FOC035_20 | text | Yes | NULL | ||
| FOC035_25 | text | Yes | NULL | ||
| FOC041_1o_1 | text | Yes | NULL | ||
| S103_3_1 | text | Yes | NULL | ||
| S103_6_1 | text | Yes | NULL | ||
| S103_14_1 | text | Yes | NULL | ||
| S104_2_1 | text | Yes | NULL | ||
| FOC035_73 | text | Yes | NULL | ||
| FOC041_3_96_4 | text | Yes | NULL | ||
| FOC041_3o_4 | text | Yes | NULL | ||
| FOC041_3_96_5 | text | Yes | NULL | ||
| FOC041_3o_5 | text | Yes | NULL | ||
| FOC035_44 | text | Yes | NULL | ||
| FOC035_50 | text | Yes | NULL | ||
| FOC035_76 | text | Yes | NULL | ||
| FOC035_27 | text | Yes | NULL | ||
| FOC035_31 | text | Yes | NULL | ||
| FOC035dg | text | Yes | NULL | ||
| FOC050_96 | text | Yes | NULL | ||
| FOC050o | text | Yes | NULL | ||
| FOC041_1_14 | text | Yes | NULL | ||
| FOC041_2_14 | text | Yes | NULL | ||
| FOC041_3_1_14 | text | Yes | NULL | ||
| FOC041_1_15 | text | Yes | NULL | ||
| FOC041_2_15 | text | Yes | NULL | ||
| FOC041_3_1_15 | text | Yes | NULL | ||
| FOC041_1_16 | text | Yes | NULL | ||
| FOC041_2_16 | text | Yes | NULL | ||
| FOC041_3_1_16 | text | Yes | NULL | ||
| FOC041_1_17 | text | Yes | NULL | ||
| FOC041_2_17 | text | Yes | NULL | ||
| FOC041_3_1_17 | text | Yes | NULL | ||
| FOC041_1_18 | text | Yes | NULL | ||
| FOC041_2_18 | text | Yes | NULL | ||
| FOC041_3_1_18 | text | Yes | NULL | ||
| FOC041_1_19 | text | Yes | NULL | ||
| FOC041_2_19 | text | Yes | NULL | ||
| FOC041_3_1_19 | text | Yes | NULL | ||
| FOC041_3_2_19 | text | Yes | NULL | ||
| FOC041_3_3_19 | text | Yes | NULL | ||
| FOC041_3_4_19 | text | Yes | NULL | ||
| FOC041_3_5_19 | text | Yes | NULL | ||
| FOC041_1_20 | text | Yes | NULL | ||
| FOC041_2_20 | text | Yes | NULL | ||
| FOC041_3_1_20 | text | Yes | NULL | ||
| FOC041_3_3_20 | text | Yes | NULL | ||
| FOC041_3_4_20 | text | Yes | NULL | ||
| FOC041_3_5_20 | text | Yes | NULL | ||
| FOC041_1_21 | text | Yes | NULL | ||
| FOC041_2_21 | text | Yes | NULL | ||
| FOC041_3_1_21 | text | Yes | NULL | ||
| FOC041_3_2_21 | text | Yes | NULL | ||
| FOC041_3_3_21 | text | Yes | NULL | ||
| FOC041_3_5_21 | text | Yes | NULL | ||
| FOC041_3_7_21 | text | Yes | NULL | ||
| FOC041_1_22 | text | Yes | NULL | ||
| FOC041_2_22 | text | Yes | NULL | ||
| FOC041_3_1_22 | text | Yes | NULL | ||
| FOC041_3_2_22 | text | Yes | NULL | ||
| FOC041_3_3_22 | text | Yes | NULL | ||
| FOC041_3_4_22 | text | Yes | NULL | ||
| FOC041_3_5_22 | text | Yes | NULL | ||
| FOC041_3_7_22 | text | Yes | NULL | ||
| FOC041_1_23 | text | Yes | NULL | ||
| FOC041_2_23 | text | Yes | NULL | ||
| FOC041_3_1_23 | text | Yes | NULL | ||
| FOC041_3_2_23 | text | Yes | NULL | ||
| FOC041_3_3_23 | text | Yes | NULL | ||
| FOC041_3_4_23 | text | Yes | NULL | ||
| FOC041_1_24 | text | Yes | NULL | ||
| FOC041_2_24 | text | Yes | NULL | ||
| FOC041_3_1_24 | text | Yes | NULL | ||
| FOC041_3_2_24 | text | Yes | NULL | ||
| FOC041_3_3_24 | text | Yes | NULL | ||
| FOC041_3_4_24 | text | Yes | NULL | ||
| FOC041_3_5_24 | text | Yes | NULL | ||
| FOC041_1_25 | text | Yes | NULL | ||
| FOC041_2_25 | text | Yes | NULL | ||
| FOC041_3_1_25 | text | Yes | NULL | ||
| FOC041_3_2_25 | text | Yes | NULL | ||
| FOC041_3_3_25 | text | Yes | NULL | ||
| FOC041_3_4_25 | text | Yes | NULL | ||
| FOC041_3_5_25 | text | Yes | NULL | ||
| FOC041_3_7_25 | text | Yes | NULL | ||
| FOC041_1_26 | text | Yes | NULL | ||
| FOC041_2_26 | text | Yes | NULL | ||
| FOC041_3_3_26 | text | Yes | NULL | ||
| FOC041_3_7_26 | text | Yes | NULL | ||
| FOC041_1_27 | text | Yes | NULL | ||
| FOC041_2_27 | text | Yes | NULL | ||
| FOC041_3_1_27 | text | Yes | NULL | ||
| FOC041_3_2_27 | text | Yes | NULL | ||
| FOC041_3_4_27 | text | Yes | NULL | ||
| FOC041_3_5_27 | text | Yes | NULL | ||
| FOC041_3_7_27 | text | Yes | NULL | ||
| FOC035_32 | text | Yes | NULL | ||
| FOC035_33 | text | Yes | NULL | ||
| S103_13_1 | text | Yes | NULL | ||
| S103_4_1 | text | Yes | NULL | ||
| S104_7_1 | text | Yes | NULL | ||
| S103_9_2 | text | Yes | NULL | ||
| FOC035_86 | text | Yes | NULL | ||
| FOC053_1o_2 | text | Yes | NULL | ||
| S103_1_1 | text | Yes | NULL | ||
| FOC041_1o_2 | text | Yes | NULL | ||
| FOC041_3_6_6 | text | Yes | NULL | ||
| S103_17_1 | text | Yes | NULL | ||
| S103_3_2 | text | Yes | NULL | ||
| FOC049_96 | text | Yes | NULL | ||
| FOC049o | text | Yes | NULL | ||
| FOC053_1o_3 | text | Yes | NULL | ||
| FOC053_3_2_4 | text | Yes | NULL | ||
| FOC041_3_6_5 | text | Yes | NULL | ||
| S103_12_1 | text | Yes | NULL | ||
| S104_2_2 | text | Yes | NULL | ||
| S104_7_2 | text | Yes | NULL | ||
| S101_3 | text | Yes | NULL | ||
| S102_3 | text | Yes | NULL | ||
| S103_11_3 | text | Yes | NULL | ||
| reg_purp_3 | text | Yes | NULL | ||
| S104_3_3 | text | Yes | NULL | ||
| S101_4 | text | Yes | NULL | ||
| S102_4 | text | Yes | NULL | ||
| S103_10_4 | text | Yes | NULL | ||
| S102_10_4 | text | Yes | NULL | ||
| S104_2_4 | text | Yes | NULL | ||
| S103_18_1 | text | Yes | NULL | ||
| S103_7_1 | text | Yes | NULL |
This table has no foreign key relationships.
| CompletionDate | SubmissionDate | starttime | endtime | deviceid | subscriberid | simid | devicephonenum | username | duration | caseid | FOC105 | intro1 | FOC101 | FOC102 | FOC103 | FOC104 | admin_lvl | admin_lvl2 | FOC106 | FOC107 | FOC108 | tmp_foc106 | tmp_foc107 | tmp_foc108 | siteid | FOC109f | FOC110f | FOC111 | intro2 | FOC112 | FOC114 | FOC115_1 | FOC116_1 | FOC116_3 | FOC032_label6 | FOC032bg | FOC032bh | FOC032da | FOC032db | FOC032dc | FOC032dd | FOC032de | FOC032df | FOC032dg | FOC032dh | FOC032di | FOC032dj | FOC032dk | FOC032dl | FOC032dm | FOC032dn | FOC032bi | FOC032bj | FOC032bk | FOC032bl | FOC032bm | FOC032bn | FOC032bo | FOC032bp | FOC032bq | FOC032br | avail_reg_stock1 | FOC034bg | FOC035bg | FOC034bh | FOC034da | FOC034db | FOC034dc | FOC034dd | FOC034de | avail_reg_stock3 | S100 | S101_1 | S102_1 | S103_2_1 | reg_purp_1 | S104_6_1 | reg_org_1 | tmp_curr_yr | foc036_note3 | FOC036_3m | FOC036_3f | FOC036_6 | foc036_note11 | FOC036_11m | FOC036_11f | FOC036_12 | foc036_note12 | FOC036_12m | FOC036_12f | FOC037_11 | FOC038_11 | FOC039_11 | foc041_note | FOC041_1_1 | FOC041_2_1 | FOC041_3_4_1 | FOC044 | gps_note | FOC113 | note_end | instanceID | instanceName | formdef_version | review_quality | review_status | KEY | FOC115_2 | FOC116_2 | FOC032_label1 | FOC032a | FOC032b | FOC032c | FOC032d | FOC032e | FOC032f | FOC032g | FOC032h | FOC032i | FOC032j | FOC032k | FOC032l | FOC032m | FOC032_label2 | FOC032n | FOC032o | FOC032p | FOC032r | FOC032s | FOC032t | FOC032u | FOC032v | FOC032w | FOC032x | FOC032z | FOC032_label3 | FOC032aa | FOC032ab | FOC032ac | FOC032ad | FOC032ae | FOC032af | FOC032ag | FOC032ah | FOC032ai | FOC032ak | FOC032al | FOC032am | FOC032_label4 | FOC032an | FOC032ao | FOC032ap | FOC032aq | FOC032ar | FOC032as | FOC032at | FOC032au | FOC032av | FOC032aw | FOC032ax | FOC032ay | FOC032_label5 | FOC032az | FOC032ba | FOC032bb | FOC032bc | FOC032bd | FOC032be | FOC032bf | FOC032ca | FOC032cb | FOC034a | FOC035a | FOC034e | FOC035e | FOC034j | FOC034k | FOC034l | FOC034m | FOC034n | FOC034aa | FOC034ap | FOC034aq | FOC034ar | avail_reg_stock2 | foc036_note1 | FOC036_1m | FOC036_1f | foc036_note2 | FOC036_2m | FOC036_2f | foc036_note4 | FOC036_4m | FOC036_4f | foc036_note5 | FOC036_5m | FOC036_5f | foc036_note6 | FOC036_6m | FOC036_6f | foc036_note7 | FOC036_7m | FOC036_7f | foc036_note8 | FOC036_8m | FOC036_8f | foc036_note9 | FOC036_9m | FOC036_9f | foc036_note10 | FOC036_10m | FOC036_10f | FOC037_7 | FOC038_7 | FOC039_2 | FOC039_7 | FOC042 | FOC043 | FOC045 | FOC046 | FOC034b | FOC034c | FOC034d | FOC034f | FOC034g | FOC035l | FOC034r | FOC034s | FOC034t | FOC034v | FOC034w | FOC034ac | FOC034ae | FOC034ah | FOC034ai | FOC034ak | FOC034al | FOC034am | FOC034an | FOC034ao | FOC034as | FOC034at | FOC034au | FOC034av | FOC034aw | FOC034ax | FOC034ay | FOC034az | FOC034ba | FOC034bb | FOC034bc | FOC034bd | FOC035bd | FOC034be | FOC034bf | FOC034ca | FOC034cb | FOC037_2 | FOC038_3 | FOC041_3_1_1 | FOC041_1_2 | FOC041_2_2 | FOC041_3_2_2 | FOC041_3_4_2 | FOC034o | FOC034p | FOC034ab | FOC034ad | FOC034ag | FOC035ao | FOC035at | FOC041_3_5_1 | FOC041_3_1_2 | FOC041_3_5_2 | FOC034h | FOC034i | FOC034u | FOC034af | FOC035ar | FOC037_3 | FOC041_3_2_1 | FOC041_3_3_1 | FOC041_3_3_2 | FOC041_1_3 | FOC041_2_3 | FOC041_3_1_3 | FOC041_3_2_3 | FOC041_3_3_3 | FOC041_3_4_3 | FOC041_3_5_3 | FOC041_3_6_3 | FOC041_3_7_3 | FOC109h | FOC110h | FOC032_label7 | FOC032bs | FOC032bt | FOC032bu | FOC032bv | FOC032bw | FOC032bx | FOC034bu | FOC034bv | FOC034bw | FOC034bx | foc047_note1 | FOC047_1m | FOC047_1f | foc047_note2 | FOC047_2m | FOC047_2f | foc047_note3 | FOC047_3m | FOC047_3f | FOC047_4 | foc047_note4 | FOC047_4m | FOC047_4f | FOC048 | FOC048m | FOC048f | FOC049_3 | FOC050_3 | FOC051_3 | foc053_note | FOC053_1_1 | FOC053_2_1 | FOC053_3_5_1 | FOC053_3_7_1 | FOC053_1_2 | FOC053_2_2 | FOC053_3_2_2 | FOC053_3_5_2 | FOC054 | FOC055 | FOC035ay | FOC037_1 | FOC038_2 | FOC039_1 | FOC039_3 | FOC039_6 | FOC034bi | FOC034bj | FOC034bk | FOC034bl | FOC034bm | FOC034bn | FOC037_6 | FOC038_6 | FOC034x | FOC038_1 | FOC034df | FOC034bo | FOC034bp | FOC034bq | FOC034br | FOC041_3_6_1 | FOC041_3_6_2 | FOC035b | FOC035c | FOC035d | FOC035h | FOC035i | FOC035k | FOC035w | FOC035an | FOC035ap | FOC035aq | FOC035as | FOC035au | FOC035av | FOC035aw | FOC035ax | FOC035az | FOC035ba | FOC035bb | FOC035bc | FOC035be | FOC037_4 | FOC037_5 | FOC037_8 | FOC037_9 | FOC038_9 | FOC039_8 | FOC041_3_7_2 | FOC034dg | FOC034dh | FOC034di | FOC034dj | FOC034dl | FOC034dm | FOC034dn | FOC034dk | FOC035da | FOC035de | FOC034bs | FOC050_1 | FOC050_2 | FOC051_2 | FOC053_3_1_1 | FOC053_3_2_1 | FOC053_3_1_2 | FOC053_1_3 | FOC053_2_3 | FOC053_3_1_3 | FOC053_3_2_3 | FOC053_1_4 | FOC053_1o_4 | FOC053_2_4 | FOC053_3_1_4 | FOC053_3_5_4 | FOC053_3_6_4 | FOC035f | FOC035g | FOC038_8 | FOC035m | FOC035n | FOC037_10 | FOC038_4 | FOC038_5 | FOC038_10 | FOC039_4 | FOC039_5 | FOC039_9 | FOC039_10 | FOC041_1_4 | FOC041_2_4 | FOC041_3_1_4 | FOC041_3_2_4 | FOC041_3_3_4 | FOC041_3_4_4 | FOC041_3_5_4 | FOC041_3_6_4 | FOC041_3_7_4 | FOC041_1_5 | FOC041_2_5 | FOC041_3_1_5 | FOC041_3_2_5 | FOC041_3_3_5 | FOC051_1 | FOC032q | FOC032y | FOC032aj | FOC034q | FOC034y | FOC049_1 | FOC049_2 | FOC053_3_3_1 | FOC053_3_4_1 | FOC053_3_6_1 | FOC053_3_3_2 | FOC053_3_4_2 | FOC053_3_6_2 | FOC053_3_7_2 | FOC053_3_3_3 | FOC053_3_4_3 | FOC053_3_5_3 | FOC053_3_6_3 | FOC053_3_7_3 | S103_5_1 | S104_4_1 | S101_2 | S102_2 | S103_5_2 | reg_purp_2 | S104_4_2 | reg_org_2 | FOC034aj | FOC035bs | FOC035j | FOC035o | FOC035p | FOC035q | FOC035r | FOC035s | FOC035t | FOC035u | FOC035v | FOC035x | FOC035y | FOC035aa | FOC035ab | FOC035ac | FOC035ad | FOC035ae | FOC035af | FOC035ag | FOC035ah | FOC035ai | FOC035aj | FOC035ak | FOC035al | FOC035am | FOC035bf | FOC035ca | FOC035cb | FOC035bu | FOC115_96 | FOC115_Other | FOC035dd | FOC035dj | FOC035dk | FOC041_3_4_5 | FOC041_3_5_5 | FOC041_1_6 | FOC041_2_6 | FOC041_3_1_6 | FOC041_3_2_6 | FOC041_3_3_6 | FOC041_3_4_6 | FOC041_3_5_6 | FOC041_1_7 | FOC041_2_7 | FOC041_3_1_7 | FOC041_3_2_7 | FOC041_3_3_7 | FOC035bw | FOC035bx | FOC035bh | FOC102_Other | FOC116_96 | FOC116_Other | FOC032_1 | FOC032_2 | FOC032_3 | FOC032_4 | FOC032_5 | FOC032_6 | FOC032_7 | FOC032_8 | FOC032_9 | FOC032_10 | FOC032_11 | FOC032_12 | FOC032_13 | FOC032_14 | FOC032_15 | FOC032_16 | FOC032_17 | FOC032_18 | FOC032_19 | FOC032_20 | FOC032_21 | FOC032_22 | FOC032_23 | FOC032_24 | FOC032_25 | FOC032_26 | FOC032_27 | FOC032_28 | FOC032_29 | FOC032_30 | FOC032_31 | FOC032_32 | FOC032_33 | FOC032_34 | FOC032_35 | FOC032_36 | FOC032_37 | FOC032_38 | FOC032_39 | FOC032_40 | FOC032_41 | FOC032_42 | FOC032_43 | FOC032_44 | FOC032_45 | FOC032_46 | FOC032_47 | FOC032_48 | FOC032_49 | FOC032_50 | FOC032_51 | FOC032_52 | FOC032_53 | FOC032_54 | FOC032_55 | FOC032_56 | FOC032_57 | FOC032_58 | FOC032_59 | FOC032_60 | FOC032_61 | FOC032_62 | FOC032_63 | FOC032_64 | FOC032_65 | FOC032_66 | FOC032_67 | FOC032_68 | FOC032_69 | FOC032_70 | FOC032_71 | FOC032_72 | FOC032_73 | FOC032_74 | FOC032_75 | FOC032_76 | FOC032_77 | FOC032_78 | FOC032_79 | FOC032_80 | FOC032_81 | FOC032_82 | FOC032_83 | FOC032_84 | FOC032_85 | FOC032_86 | FOC034_1 | FOC035_1 | FOC034_2 | FOC035_2 | FOC034_3 | FOC035_3 | FOC034_4 | FOC035_4 | FOC034_5 | FOC035_5 | FOC034_18 | FOC035_18 | FOC034_34 | FOC035_34 | FOC034_42 | FOC035_42 | FOC034_58 | FOC034_59 | FOC034_60 | FOC034_61 | FOC034_65 | FOC034_6 | FOC034_7 | FOC034_8 | FOC034_9 | FOC034_10 | FOC034_11 | FOC034_12 | FOC034_13 | FOC034_14 | FOC034_15 | FOC034_16 | FOC034_17 | FOC034_19 | FOC034_20 | FOC034_22 | FOC034_23 | FOC034_24 | FOC034_25 | FOC034_26 | FOC034_27 | FOC034_28 | FOC034_29 | FOC034_30 | FOC034_31 | FOC034_32 | FOC034_33 | FOC034_35 | FOC034_36 | FOC034_37 | FOC034_38 | FOC034_39 | FOC034_40 | FOC034_41 | FOC034_43 | FOC034_44 | FOC034_45 | FOC034_46 | FOC034_47 | FOC034_48 | FOC034_49 | FOC034_50 | FOC034_51 | FOC034_52 | FOC034_53 | FOC034_54 | FOC034_55 | FOC034_56 | FOC034_57 | FOC034_62 | FOC034_63 | FOC034_64 | FOC034_66 | FOC034_67 | FOC034_68 | FOC034_69 | FOC034_70 | FOC034_71 | FOC034_72 | FOC034_73 | FOC034_74 | FOC034_75 | FOC034_76 | FOC034_77 | FOC034_78 | FOC034_79 | FOC034_80 | FOC034_81 | FOC034_82 | FOC034_83 | FOC034_84 | FOC034_85 | FOC034_86 | FOC035_22 | FOC041_1_8 | FOC041_2_8 | FOC041_3_1_8 | FOC041_3_2_8 | FOC041_1_9 | FOC041_2_9 | FOC041_3_1_9 | FOC041_3_2_9 | FOC041_1_10 | FOC041_2_10 | FOC041_3_1_10 | FOC041_3_2_10 | FOC041_1_11 | FOC041_2_11 | FOC041_3_1_11 | FOC041_3_2_11 | FOC041_1_12 | FOC041_2_12 | FOC041_3_1_12 | FOC041_3_2_12 | FOC041_1_13 | FOC041_2_13 | FOC041_3_1_13 | FOC041_3_2_13 | FOC035_7 | FOC035_9 | FOC035_12 | FOC035_48 | FOC035_51 | FOC035_56 | FOC035_62 | S103_9_1 | FOC041_3_96_1 | FOC041_3o_1 | FOC041_3_96_2 | FOC041_3o_2 | FOC107_Other | FOC035bv | female_rhis | FOC032do | FOC032dp | FOC034do | FOC034dp | FOC037_96 | FOC037o | FOC038_96 | FOC038o | FOC039_96 | FOC039o | FOC035_30 | FOC053_1o_1 | FOC035_23 | FOC035_36 | FOC035_39 | FOC035_53 | FOC035_54 | FOC035_64 | FOC035_77 | FOC035_79 | FOC035_81 | FOC041_3_96_3 | FOC041_3o_3 | FOC035_17 | FOC035_26 | FOC035_28 | FOC035_35 | FOC035_38 | FOC035_45 | FOC035_46 | FOC035_47 | FOC035_49 | FOC035_55 | FOC035_57 | FOC035_60 | FOC035_61 | FOC035_63 | FOC035_65 | FOC035_68 | FOC035_71 | FOC035_72 | FOC035_74 | FOC035_75 | FOC035_78 | FOC035_80 | FOC035_83 | FOC035_84 | FOC035_85 | FOC035df | FOC035dl | FOC035dm | FOC035dn | FOC035do | FOC035dp | FOC035bi | FOC035bm | FOC035_16 | FOC035_37 | FOC035_69 | FOC035dh | FOC035bk | FOC035_40 | S103_96_1 | S102_19_1 | FOC035_52 | FOC035bl | FOC035bn | FOC035_29 | FOC035_41 | FOC035_58 | FOC035_59 | FOC035_82 | FOC035_66 | FOC035db | FOC035dc | FOC035di | FOC035bj | FOC035bo | FOC035bp | FOC035bq | FOC035br | FOC035_6 | FOC035_11 | FOC035_13 | FOC035_14 | FOC035_15 | FOC035_24 | FOC035_67 | FOC035_70 | FOC035_8 | FOC035_10 | FOC035_19 | S103_11_1 | S104_1_1 | S103_11_2 | S104_5_2 | S103_96_2 | S102_19_2 | S104_1_2 | FOC035_20 | FOC035_25 | FOC041_1o_1 | S103_3_1 | S103_6_1 | S103_14_1 | S104_2_1 | FOC035_73 | FOC041_3_96_4 | FOC041_3o_4 | FOC041_3_96_5 | FOC041_3o_5 | FOC035_44 | FOC035_50 | FOC035_76 | FOC035_27 | FOC035_31 | FOC035dg | FOC050_96 | FOC050o | FOC041_1_14 | FOC041_2_14 | FOC041_3_1_14 | FOC041_1_15 | FOC041_2_15 | FOC041_3_1_15 | FOC041_1_16 | FOC041_2_16 | FOC041_3_1_16 | FOC041_1_17 | FOC041_2_17 | FOC041_3_1_17 | FOC041_1_18 | FOC041_2_18 | FOC041_3_1_18 | FOC041_1_19 | FOC041_2_19 | FOC041_3_1_19 | FOC041_3_2_19 | FOC041_3_3_19 | FOC041_3_4_19 | FOC041_3_5_19 | FOC041_1_20 | FOC041_2_20 | FOC041_3_1_20 | FOC041_3_3_20 | FOC041_3_4_20 | FOC041_3_5_20 | FOC041_1_21 | FOC041_2_21 | FOC041_3_1_21 | FOC041_3_2_21 | FOC041_3_3_21 | FOC041_3_5_21 | FOC041_3_7_21 | FOC041_1_22 | FOC041_2_22 | FOC041_3_1_22 | FOC041_3_2_22 | FOC041_3_3_22 | FOC041_3_4_22 | FOC041_3_5_22 | FOC041_3_7_22 | FOC041_1_23 | FOC041_2_23 | FOC041_3_1_23 | FOC041_3_2_23 | FOC041_3_3_23 | FOC041_3_4_23 | FOC041_1_24 | FOC041_2_24 | FOC041_3_1_24 | FOC041_3_2_24 | FOC041_3_3_24 | FOC041_3_4_24 | FOC041_3_5_24 | FOC041_1_25 | FOC041_2_25 | FOC041_3_1_25 | FOC041_3_2_25 | FOC041_3_3_25 | FOC041_3_4_25 | FOC041_3_5_25 | FOC041_3_7_25 | FOC041_1_26 | FOC041_2_26 | FOC041_3_3_26 | FOC041_3_7_26 | FOC041_1_27 | FOC041_2_27 | FOC041_3_1_27 | FOC041_3_2_27 | FOC041_3_4_27 | FOC041_3_5_27 | FOC041_3_7_27 | FOC035_32 | FOC035_33 | S103_13_1 | S103_4_1 | S104_7_1 | S103_9_2 | FOC035_86 | FOC053_1o_2 | S103_1_1 | FOC041_1o_2 | FOC041_3_6_6 | S103_17_1 | S103_3_2 | FOC049_96 | FOC049o | FOC053_1o_3 | FOC053_3_2_4 | FOC041_3_6_5 | S103_12_1 | S104_2_2 | S104_7_2 | S101_3 | S102_3 | S103_11_3 | reg_purp_3 | S104_3_3 | S101_4 | S102_4 | S103_10_4 | S102_10_4 | S104_2_4 | S103_18_1 | S103_7_1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| May 11, 2024 11:07:22 AM | May 11, 2024 11:07:22 AM | May 11, 2024 8:27:55 AM | May 11, 2024 11:06:25 AM | 353685107141013 | impacteval | 4372 | 8 | May 11, 2024 | 9 | 004 | 6 | 2 | 1 | Tsgh | 17 | 008 | Tsgh | 17 | 008 | 8-Tsgh-17-008 | Hhxh | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 99 | 99 | 99 | 99 | 0 | 0 | 99 | 99 | 99 | 0 | 0 | 0 | 99 | 0 | 0 | 0 | 1 | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | Yy | 1 | 1 | 1 | 2024 | 2 | 2 | 2 | 3 | 5 | 2 | 3 | 1 | 1 | 1 | 11 | 2 | 1 | 1 | 9.0518675 38.7435564 2562.7998046875 30.507 | uuid:49d0fc8e-1b7e-4974-9335-131a822debf6 | 8-Tsgh-17-008 | 2405111114 | APPROVED | uuid:49d0fc8e-1b7e-4974-9335-131a822debf6 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |||||||||||||||||||
| May 11, 2024 11:18:41 AM | May 11, 2024 11:18:41 AM | May 11, 2024 11:05:25 AM | May 11, 2024 11:20:03 AM | 353316097350832 | collect123 (not yet authenticated) | 878 | 6 | May 11, 2024 | 24 | 890 | 4 | 2 | 2 | Gedio zone | 6 | 789 | Gedio zone | 6 | 789 | 6-Gedio zone-6-789 | Chichu health center | 1 | 1 | 1 | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 1 | NULL | NULL | NULL | NULL | NULL | NULL | 2024 | 0 | 25 | M | 2 | 5 | M | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | 1 | 9.0519083 38.7435404 2562.7998046875 25.325 | uuid:adfb4b34-814a-467c-8b00-2becdba2082b | 6-Gedio zone-6-789 | 2405111114 | APPROVED | uuid:adfb4b34-814a-467c-8b00-2becdba2082b | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 99 | 99 | 99 | 99 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 99 | 0 | 0 | 99 | 0 | 0 | 99 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 28 | 1 | 25 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 12 | 25 | 22 | 2 | 5 | 25 | 32 | 5 | 14 | 0 | 23 | 0 | 2 | 9 | 4 | 0 | 3 | 9 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |||||||||||||||||||||||||||||
| May 11, 2024 11:19:07 AM | May 11, 2024 11:19:07 AM | May 11, 2024 10:56:29 AM | May 11, 2024 11:18:52 AM | 353316097351970 | impacteval | 1178 | 8 | May 11, 2024 | 6 | 123 | 4 | 2 | 2 | EB | 16 | 123 | EB | 16 | 123 | 8-EB-16-123 | Er | 2 | 1 | 1 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 0 | NULL | NULL | NULL | NULL | NULL | NULL | 2024 | 1 | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | 2 | 1 | NULL | 1 | uuid:7ce21d40-ae46-4251-9868-ef6d90b1d00e | 8-EB-16-123 | 2405111114 | APPROVED | uuid:7ce21d40-ae46-4251-9868-ef6d90b1d00e | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 99 | 99 | 1 | 1 | 1 | 99 | 1 | 1 | 99 | 1 | 1 | 0 | 1 | 0 | 1 | 99 | 99 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | NULL | 0 | NULL | NULL | 0 | 1 | 0 | 0 | 0 | 0 | 0 | NULL | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | NULL | NULL | NULL | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | NULL | NULL | 1 | NULL | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 10 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 13 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 3 | 2 | 1 | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |||||||||||||||||||||||||||||
| May 11, 2024 11:19:12 AM | May 11, 2024 11:19:12 AM | May 11, 2024 11:01:43 AM | May 11, 2024 11:19:35 AM | 358493096661140 | 636019912908522 | 89251011810129085223 | impacteval | 1071 | 8 | May 11, 2024 | 8 | 004 | 4 | 2 | 2 | 003 | 16 | 002 | 003 | 16 | 002 | 8-003-16-002 | Ginir hc | 2 | 1 | 1 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 0 | NULL | NULL | NULL | NULL | NULL | NULL | 2024 | 2 | 2 | 4 | 1 | 1 | 0 | 0 | 0 | NULL | NULL | NULL | 7 | 2 | NULL | 1 | uuid:3be90e63-e3e2-4bb9-9458-6a6638ed4075 | 8-003-16-002 | 2405111114 | APPROVED | uuid:3be90e63-e3e2-4bb9-9458-6a6638ed4075 | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 99 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 99 | 1 | 1 | 1 | 1 | 1 | 1 | 99 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | NULL | 0 | NULL | 0 | 0 | 0 | 0 | NULL | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 2 | 2 | 1 | 1 | 2 | 2 | 2 | 2 | NULL | NULL | 1 | NULL | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | NULL | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | NULL | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 2 | 2 | NULL | NULL | 0 | 0 | 0 | 0 | 0 | 7 | 4 | 1 | 1 | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |||||||||||||||||||||||||||
| May 11, 2024 11:20:39 AM | May 11, 2024 11:20:39 AM | May 11, 2024 8:06:06 AM | May 11, 2024 11:20:07 AM | 353316097351350 | empacteval (not yet authenticated) | 1164 | sidama | May 11, 2024 | Kelemu Fentie | 005 | 4 | 2 | 2 | Ajaib01 | Wodegenet | 001 | Ajaib01 | Wodegenet | 001 | sidama-Ajaib01-Wodegenet-001 | Wodogenet | 1 | 1 | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 0 | NULL | NULL | NULL | NULL | NULL | NULL | 2024 | 5 | 3 | Medical laboratory | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | 3 | 3 | 1 | 1 | 9.051742 38.7435561 2553.699951171875 23.446 | uuid:629caf28-3f24-4769-8f3b-89ee20ab7ba4 | sidama-Ajaib01-Wodegenet-001 | 2405101029 | APPROVED | uuid:629caf28-3f24-4769-8f3b-89ee20ab7ba4 | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 99 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | NULL | 0 | NULL | 0 | 0 | 0 | 0 | NULL | 0 | 0 | 0 | 1 | 0 | 0 | 2 | 3 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 5 | 2 | NULL | 1 | NULL | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | NULL | 0 | 0 | 0 | 0 | NULL | 0 | 0 | 0 | 0 | 0 | 0 | NULL | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | NULL | 0 | 0 | 0 | NULL | 0 | 0 | 0 | 0 | 1 | NULL | 1 | 2 | 1 | 1 | 1 | NULL | 0 | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | 0 | 0 | 0 | 0 | 7 | 1 | 1 | 1 | 1 | 7 | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL |
Showing 5 sample records. Hover over cells to see full content.
ethprism_healthpost_level_rhis_performance_diagnostic
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| CompletionDate | text | Yes | NULL | Date/time field | |
| SubmissionDate | text | Yes | NULL | Date/time field | |
| starttime | text | Yes | NULL | Date/time field | |
| endtime | text | Yes | NULL | Date/time field | |
| deviceid | text | Yes | NULL | ||
| subscriberid | text | Yes | NULL | ||
| simid | text | Yes | NULL | ||
| devicephonenum | text | Yes | NULL | Phone number field | |
| username | text | Yes | NULL | Name or title field | |
| duration | text | Yes | NULL | ||
| caseid | text | Yes | NULL | ||
| HPQ104 | text | Yes | NULL | ||
| HPQ101 | text | Yes | NULL | ||
| HPQ102 | text | Yes | NULL | ||
| HPQ105 | text | Yes | NULL | ||
| HPQ106 | text | Yes | NULL | ||
| HPQ106_Other | text | Yes | NULL | ||
| HPQ107 | text | Yes | NULL | ||
| HPQ108 | text | Yes | NULL | ||
| siteid | text | Yes | NULL | ||
| HPQ109 | text | Yes | NULL | ||
| intro | text | Yes | NULL | ||
| HPQ110 | text | Yes | NULL | ||
| revw_mos_note | text | Yes | NULL | Descriptive text field | |
| Month1 | text | Yes | NULL | ||
| month1_fmt | text | Yes | NULL | ||
| Month2 | text | Yes | NULL | ||
| month2_fmt | text | Yes | NULL | ||
| Month3 | text | Yes | NULL | ||
| month3_fmt | text | Yes | NULL | ||
| HPQ010 | text | Yes | NULL | ||
| HPQ011 | text | Yes | NULL | ||
| HPQ012a | text | Yes | NULL | ||
| HPQ012b | text | Yes | NULL | ||
| HPQ013 | text | Yes | NULL | ||
| HPQ014 | text | Yes | NULL | ||
| HPQ015 | text | Yes | NULL | ||
| HPQ016 | text | Yes | NULL | ||
| hpq017_label | text | Yes | NULL | ||
| HPQ017a | text | Yes | NULL | ||
| HPQ017b | text | Yes | NULL | ||
| HPQ017c | text | Yes | NULL | ||
| HPQ017d | text | Yes | NULL | ||
| HPQ018 | text | Yes | NULL | ||
| hpq019_note1 | text | Yes | NULL | Descriptive text field | |
| hpq019_note2 | text | Yes | NULL | Descriptive text field | |
| HPQ019_1a | text | Yes | NULL | ||
| HPQ019_2a | text | Yes | NULL | ||
| HPQ019_3a | text | Yes | NULL | ||
| dtp3_src_avail1 | text | Yes | NULL | ||
| dtp3_src_avail2 | text | Yes | NULL | ||
| dtp3_src_avail3 | text | Yes | NULL | ||
| dtp3_src_avail_note | text | Yes | NULL | Descriptive text field | |
| dtp3_src_compl1 | text | Yes | NULL | ||
| dtp3_src_compl2 | text | Yes | NULL | ||
| dtp3_src_compl3 | text | Yes | NULL | ||
| dtp3_src_compl_note | text | Yes | NULL | Descriptive text field | |
| HPQ021_1 | text | Yes | NULL | ||
| HPQ021_2 | text | Yes | NULL | ||
| HPQ019_1b | text | Yes | NULL | ||
| HPQ019_2b | text | Yes | NULL | ||
| HPQ019_3b | text | Yes | NULL | ||
| hpq022_note1 | text | Yes | NULL | Descriptive text field | |
| hpq022_note2 | text | Yes | NULL | Descriptive text field | |
| HPQ022_1a | text | Yes | NULL | ||
| HPQ022_2a | text | Yes | NULL | ||
| HPQ022_3a | text | Yes | NULL | ||
| dtp3_rpt_avail1 | text | Yes | NULL | ||
| dtp3_rpt_avail2 | text | Yes | NULL | ||
| dtp3_rpt_avail3 | text | Yes | NULL | ||
| dtp3_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| dtp3_rpt_compl1 | text | Yes | NULL | ||
| dtp3_rpt_compl2 | text | Yes | NULL | ||
| dtp3_rpt_compl3 | text | Yes | NULL | ||
| dtp3_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| HPQ023_1 | text | Yes | NULL | ||
| HPQ023_2 | text | Yes | NULL | ||
| dtp3_srcdoc_rpts7 | text | Yes | NULL | ||
| tmp_hpq019_1b | text | Yes | NULL | ||
| tmp_hpq022_1b | text | Yes | NULL | ||
| tmp_dtp3_vf1 | text | Yes | NULL | ||
| dtp3_vf1 | text | Yes | NULL | ||
| tmp_dtp3_vf1_diff | text | Yes | NULL | ||
| dtp3_vf1_diff | text | Yes | NULL | ||
| tmp_hpq019_2b | text | Yes | NULL | ||
| tmp_hpq022_2b | text | Yes | NULL | ||
| tmp_dtp3_vf2 | text | Yes | NULL | ||
| dtp3_vf2 | text | Yes | NULL | ||
| tmp_dtp3_vf2_diff | text | Yes | NULL | ||
| dtp3_vf2_diff | text | Yes | NULL | ||
| tmp_hpq019_3b | text | Yes | NULL | ||
| tmp_hpq022_3b | text | Yes | NULL | ||
| tmp_dtp3_vf3 | text | Yes | NULL | ||
| dtp3_vf3 | text | Yes | NULL | ||
| tmp_dtp3_vf3_diff | text | Yes | NULL | ||
| dtp3_vf3_diff | text | Yes | NULL | ||
| HPQ026 | text | Yes | NULL | ||
| mcm_src_avail1 | text | Yes | NULL | ||
| mcm_src_avail2 | text | Yes | NULL | ||
| mcm_src_avail3 | text | Yes | NULL | ||
| mcm_src_compl1 | text | Yes | NULL | ||
| mcm_src_compl2 | text | Yes | NULL | ||
| mcm_src_compl3 | text | Yes | NULL | ||
| mcm_rpt_avail1 | text | Yes | NULL | ||
| mcm_rpt_avail2 | text | Yes | NULL | ||
| mcm_rpt_avail3 | text | Yes | NULL | ||
| mcm_rpt_compl1 | text | Yes | NULL | ||
| mcm_rpt_compl2 | text | Yes | NULL | ||
| mcm_rpt_compl3 | text | Yes | NULL | ||
| tmp_hpq030_1b | text | Yes | NULL | ||
| tmp_hpq033_1b | text | Yes | NULL | ||
| tmp_mcm_vf1 | text | Yes | NULL | ||
| mcm_vf1 | text | Yes | NULL | ||
| tmp_mcm_vf1_diff | text | Yes | NULL | ||
| mcm_vf1_diff | text | Yes | NULL | ||
| tmp_hpq030_2b | text | Yes | NULL | ||
| tmp_hpq033_2b | text | Yes | NULL | ||
| tmp_mcm_vf2 | text | Yes | NULL | ||
| mcm_vf2 | text | Yes | NULL | ||
| tmp_mcm_vf2_diff | text | Yes | NULL | ||
| mcm_vf2_diff | text | Yes | NULL | ||
| tmp_hpq030_3b | text | Yes | NULL | ||
| tmp_hpq033_3b | text | Yes | NULL | ||
| tmp_mcm_vf3 | text | Yes | NULL | ||
| mcm_vf3 | text | Yes | NULL | ||
| tmp_mcm_vf3_diff | text | Yes | NULL | ||
| mcm_vf3_diff | text | Yes | NULL | ||
| HPQ038 | text | Yes | NULL | ||
| HPQ039 | text | Yes | NULL | ||
| hpq040label | text | Yes | NULL | ||
| HPQ040a | text | Yes | NULL | ||
| HPQ040b | text | Yes | NULL | ||
| HPQ040c | text | Yes | NULL | ||
| HPQ040d | text | Yes | NULL | ||
| HPQ041_4 | text | Yes | NULL | ||
| HPQ041_96 | text | Yes | NULL | ||
| HPQ041o | text | Yes | NULL | ||
| hpq042_note1 | text | Yes | NULL | Descriptive text field | |
| hpq042_note2 | text | Yes | NULL | Descriptive text field | |
| HPQ042_1a | text | Yes | NULL | ||
| HPQ042_2a | text | Yes | NULL | ||
| HPQ042_3a | text | Yes | NULL | ||
| malaria_src_avail1 | text | Yes | NULL | ||
| malaria_src_avail2 | text | Yes | NULL | ||
| malaria_src_avail3 | text | Yes | NULL | ||
| malaria_src_avail_note | text | Yes | NULL | Descriptive text field | |
| malaria_src_compl1 | text | Yes | NULL | ||
| malaria_src_compl2 | text | Yes | NULL | ||
| malaria_src_compl3 | text | Yes | NULL | ||
| malaria_src_compl_note | text | Yes | NULL | Descriptive text field | |
| HPQ044_1 | text | Yes | NULL | ||
| HPQ044_2 | text | Yes | NULL | ||
| HPQ042_1b | text | Yes | NULL | ||
| HPQ042_2b | text | Yes | NULL | ||
| HPQ042_3b | text | Yes | NULL | ||
| hpq045_note1 | text | Yes | NULL | Descriptive text field | |
| hpq045_note2 | text | Yes | NULL | Descriptive text field | |
| HPQ045_1a | text | Yes | NULL | ||
| HPQ045_2a | text | Yes | NULL | ||
| HPQ045_3a | text | Yes | NULL | ||
| malaria_rpt_avail1 | text | Yes | NULL | ||
| malaria_rpt_avail2 | text | Yes | NULL | ||
| malaria_rpt_avail3 | text | Yes | NULL | ||
| malaria_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| malaria_rpt_compl1 | text | Yes | NULL | ||
| malaria_rpt_compl2 | text | Yes | NULL | ||
| malaria_rpt_compl3 | text | Yes | NULL | ||
| malaria_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| HPQ046_1 | text | Yes | NULL | ||
| malaria_srcdoc_rpts7 | text | Yes | NULL | ||
| tmp_hpq042_1b | text | Yes | NULL | ||
| tmp_hpq045_1b | text | Yes | NULL | ||
| tmp_malaria_vf1 | text | Yes | NULL | ||
| malaria_vf1 | text | Yes | NULL | ||
| tmp_malaria_vf1_diff | text | Yes | NULL | ||
| malaria_vf1_diff | text | Yes | NULL | ||
| tmp_hpq042_2b | text | Yes | NULL | ||
| tmp_hpq045_2b | text | Yes | NULL | ||
| tmp_malaria_vf2 | text | Yes | NULL | ||
| malaria_vf2 | text | Yes | NULL | ||
| tmp_malaria_vf2_diff | text | Yes | NULL | ||
| malaria_vf2_diff | text | Yes | NULL | ||
| tmp_hpq042_3b | text | Yes | NULL | ||
| tmp_hpq045_3b | text | Yes | NULL | ||
| tmp_malaria_vf3 | text | Yes | NULL | ||
| malaria_vf3 | text | Yes | NULL | ||
| tmp_malaria_vf3_diff | text | Yes | NULL | ||
| malaria_vf3_diff | text | Yes | NULL | ||
| HPQ049 | text | Yes | NULL | ||
| HPQ050 | text | Yes | NULL | ||
| hpq051_label | text | Yes | NULL | ||
| HPQ051a | text | Yes | NULL | ||
| HPQ051b | text | Yes | NULL | ||
| HPQ051c | text | Yes | NULL | ||
| HPQ051d | text | Yes | NULL | ||
| HPQ052_4 | text | Yes | NULL | ||
| hpq053_note1 | text | Yes | NULL | Descriptive text field | |
| hpq053_note2 | text | Yes | NULL | Descriptive text field | |
| HPQ053_1a | text | Yes | NULL | ||
| HPQ053_2a | text | Yes | NULL | ||
| HPQ053_3a | text | Yes | NULL | ||
| pneum_src_avail1 | text | Yes | NULL | ||
| pneum_src_avail2 | text | Yes | NULL | ||
| pneum_src_avail3 | text | Yes | NULL | ||
| pneum_src_avail_note | text | Yes | NULL | Descriptive text field | |
| pneum_src_compl1 | text | Yes | NULL | ||
| pneum_src_compl2 | text | Yes | NULL | ||
| pneum_src_compl3 | text | Yes | NULL | ||
| pneum_src_compl_note | text | Yes | NULL | Descriptive text field | |
| HPQ055_1 | text | Yes | NULL | ||
| HPQ055_2 | text | Yes | NULL | ||
| pneum_srcdoc_rpts4 | text | Yes | NULL | ||
| hpq056_note1 | text | Yes | NULL | Descriptive text field | |
| hpq056_note2 | text | Yes | NULL | Descriptive text field | |
| HPQ056_1a | text | Yes | NULL | ||
| HPQ056_2a | text | Yes | NULL | ||
| HPQ056_3a | text | Yes | NULL | ||
| pneum_rpt_avail1 | text | Yes | NULL | ||
| pneum_rpt_avail2 | text | Yes | NULL | ||
| pneum_rpt_avail3 | text | Yes | NULL | ||
| pneum_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| pneum_rpt_compl1 | text | Yes | NULL | ||
| pneum_rpt_compl2 | text | Yes | NULL | ||
| pneum_rpt_compl3 | text | Yes | NULL | ||
| pneum_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| HPQ057_1 | text | Yes | NULL | ||
| pneum_srcdoc_rpts7 | text | Yes | NULL | ||
| tmp_hpq053_1b | text | Yes | NULL | ||
| tmp_hpq056_1b | text | Yes | NULL | ||
| tmp_pneum_vf1 | text | Yes | NULL | ||
| pneum_vf1 | text | Yes | NULL | ||
| tmp_pneum_vf1_diff | text | Yes | NULL | ||
| pneum_vf1_diff | text | Yes | NULL | ||
| tmp_hpq053_2b | text | Yes | NULL | ||
| tmp_hpq056_2b | text | Yes | NULL | ||
| tmp_pneum_vf2 | text | Yes | NULL | ||
| pneum_vf2 | text | Yes | NULL | ||
| tmp_pneum_vf2_diff | text | Yes | NULL | ||
| pneum_vf2_diff | text | Yes | NULL | ||
| tmp_hpq053_3b | text | Yes | NULL | ||
| tmp_hpq056_3b | text | Yes | NULL | ||
| tmp_pneum_vf3 | text | Yes | NULL | ||
| pneum_vf3 | text | Yes | NULL | ||
| tmp_pneum_vf3_diff | text | Yes | NULL | ||
| pneum_vf3_diff | text | Yes | NULL | ||
| HPQ060a | text | Yes | NULL | ||
| HPQ060b | text | Yes | NULL | ||
| HPQ061 | text | Yes | NULL | ||
| HPQ063 | text | Yes | NULL | ||
| HPQ064 | text | Yes | NULL | ||
| HPQ065 | text | Yes | NULL | ||
| HPQ069 | text | Yes | NULL | ||
| HPQ071_note1 | text | Yes | NULL | Descriptive text field | |
| HPQ071a | text | Yes | NULL | ||
| HPQ071b | text | Yes | NULL | ||
| HPQ071c | text | Yes | NULL | ||
| HPQ071d | text | Yes | NULL | ||
| HPQ071_note2 | text | Yes | NULL | Descriptive text field | |
| HPQ071e | text | Yes | NULL | ||
| HPQ071f | text | Yes | NULL | ||
| HPQ071g | text | Yes | NULL | ||
| HPU001 | text | Yes | NULL | ||
| hpu003_rcd | text | Yes | NULL | ||
| HPU003 | text | Yes | NULL | ||
| HPU004 | text | Yes | NULL | ||
| HPU007 | text | Yes | NULL | ||
| hpu007_rcd | text | Yes | NULL | ||
| HPU009 | text | Yes | NULL | ||
| HPU016 | text | Yes | NULL | ||
| HPU017 | text | Yes | NULL | ||
| HPU020 | text | Yes | NULL | ||
| HPU028 | text | Yes | NULL | ||
| HPU030 | text | Yes | NULL | ||
| HPU031 | text | Yes | NULL | ||
| gps_note | text | Yes | NULL | Descriptive text field | |
| HPQ111 | text | Yes | NULL | ||
| note_end | text | Yes | NULL | Descriptive text field | |
| instanceID | text | Yes | NULL | ||
| instanceName | text | Yes | NULL | Name or title field | |
| formdef_version | text | Yes | NULL | ||
| review_quality | text | Yes | NULL | ||
| review_status | text | Yes | NULL | ||
| KEY | text | Yes | NULL | ||
| dtp3_srcdoc_rpts4 | text | Yes | NULL | ||
| malaria_srcdoc_rpts4 | text | Yes | NULL | ||
| HPQ046_2 | text | Yes | NULL | ||
| HPU021 | text | Yes | NULL | ||
| HPU022 | text | Yes | NULL | ||
| HPU023 | text | Yes | NULL | ||
| HPU024 | text | Yes | NULL | ||
| HPU025 | text | Yes | NULL | ||
| HPU026 | text | Yes | NULL | ||
| hpq061_note | text | Yes | NULL | Descriptive text field | |
| hpq062_label1 | text | Yes | NULL | ||
| HPQ062_1_ser | text | Yes | NULL | ||
| HPQ062_1_dis | text | Yes | NULL | ||
| hpq062_label2 | text | Yes | NULL | ||
| HPQ062_2_ser | text | Yes | NULL | ||
| HPQ062_2_dis | text | Yes | NULL | ||
| hpq062_label3 | text | Yes | NULL | ||
| HPQ062_3_ser | text | Yes | NULL | ||
| HPQ062_3_dis | text | Yes | NULL | ||
| dtp3_srcdoc_rpts5 | text | Yes | NULL | ||
| HPQ023_96 | text | Yes | NULL | ||
| HPQ023o | text | Yes | NULL | ||
| HPQ054_3 | text | Yes | NULL | ||
| HPQ057_3 | text | Yes | NULL | ||
| dtp3_srcdoc_rpts8 | text | Yes | NULL | ||
| HPQ022_1b | text | Yes | NULL | ||
| HPQ022_2b | text | Yes | NULL | ||
| HPQ022_3b | text | Yes | NULL | ||
| dtp3_vf1_note | text | Yes | NULL | Descriptive text field | |
| dtp3_vf2_note | text | Yes | NULL | Descriptive text field | |
| dtp3_vf3_note | text | Yes | NULL | Descriptive text field | |
| dtp3_vf_note | text | Yes | NULL | Descriptive text field | |
| HPQ025_1 | text | Yes | NULL | ||
| HPQ027 | text | Yes | NULL | ||
| hpq028_label | text | Yes | NULL | ||
| HPQ028a | text | Yes | NULL | ||
| HPQ028b | text | Yes | NULL | ||
| HPQ028c | text | Yes | NULL | ||
| HPQ028d | text | Yes | NULL | ||
| HPQ029_3 | text | Yes | NULL | ||
| hpq030_note1 | text | Yes | NULL | Descriptive text field | |
| hpq030_note2 | text | Yes | NULL | Descriptive text field | |
| HPQ030_1a | text | Yes | NULL | ||
| HPQ030_2a | text | Yes | NULL | ||
| HPQ030_3a | text | Yes | NULL | ||
| mcm_src_avail_note | text | Yes | NULL | Descriptive text field | |
| mcm_src_compl_note | text | Yes | NULL | Descriptive text field | |
| mcm_srcdoc_rpts5 | text | Yes | NULL | ||
| HPQ030_1b | text | Yes | NULL | ||
| HPQ030_2b | text | Yes | NULL | ||
| HPQ030_3b | text | Yes | NULL | ||
| hpq033_note1 | text | Yes | NULL | Descriptive text field | |
| hpq033_note2 | text | Yes | NULL | Descriptive text field | |
| HPQ033_1a | text | Yes | NULL | ||
| HPQ033_2a | text | Yes | NULL | ||
| HPQ033_3a | text | Yes | NULL | ||
| mcm_rpt_avail_note | text | Yes | NULL | Descriptive text field | |
| mcm_rpt_compl_note | text | Yes | NULL | Descriptive text field | |
| mcm_srcdoc_rpts8 | text | Yes | NULL | ||
| HPQ033_1b | text | Yes | NULL | ||
| HPQ033_2b | text | Yes | NULL | ||
| HPQ033_3b | text | Yes | NULL | ||
| mcm_vf1_note | text | Yes | NULL | Descriptive text field | |
| mcm_vf2_note | text | Yes | NULL | Descriptive text field | |
| mcm_vf3_note | text | Yes | NULL | Descriptive text field | |
| mcm_vf_note | text | Yes | NULL | Descriptive text field | |
| HPQ036_2 | text | Yes | NULL | ||
| HPQ041_5 | text | Yes | NULL | ||
| malaria_srcdoc_rpts5 | text | Yes | NULL | ||
| malaria_srcdoc_rpts8 | text | Yes | NULL | ||
| HPQ045_1b | text | Yes | NULL | ||
| HPQ045_2b | text | Yes | NULL | ||
| HPQ045_3b | text | Yes | NULL | ||
| malaria_vf1_note | text | Yes | NULL | Descriptive text field | |
| malaria_vf2_note | text | Yes | NULL | Descriptive text field | |
| malaria_vf3_note | text | Yes | NULL | Descriptive text field | |
| malaria_vf_note | text | Yes | NULL | Descriptive text field | |
| HPQ048_2 | text | Yes | NULL | ||
| HPQ052_5 | text | Yes | NULL | ||
| pneum_srcdoc_rpts5 | text | Yes | NULL | ||
| HPQ053_1b | text | Yes | NULL | ||
| HPQ053_2b | text | Yes | NULL | ||
| HPQ053_3b | text | Yes | NULL | ||
| pneum_srcdoc_rpts8 | text | Yes | NULL | ||
| HPQ056_1b | text | Yes | NULL | ||
| HPQ056_2b | text | Yes | NULL | ||
| HPQ056_3b | text | Yes | NULL | ||
| pneum_vf1_note | text | Yes | NULL | Descriptive text field | |
| pneum_vf2_note | text | Yes | NULL | Descriptive text field | |
| pneum_vf3_note | text | Yes | NULL | Descriptive text field | |
| pneum_vf_note | text | Yes | NULL | Descriptive text field | |
| HPQ070_note1 | text | Yes | NULL | Descriptive text field | |
| HPQ070_1a | text | Yes | NULL | ||
| HPQ070_1b | text | Yes | NULL | ||
| HPQ070_note2 | text | Yes | NULL | Descriptive text field | |
| HPQ070_2a | text | Yes | NULL | ||
| HPQ070_2b | text | Yes | NULL | ||
| HPQ070_note3 | text | Yes | NULL | Descriptive text field | |
| HPQ070_3a | text | Yes | NULL | ||
| HPQ070_3b | text | Yes | NULL | ||
| HPQ070_note4 | text | Yes | NULL | Descriptive text field | |
| HPQ070_4a | text | Yes | NULL | ||
| HPQ070_4b | text | Yes | NULL | ||
| HPQ070_note5 | text | Yes | NULL | Descriptive text field | |
| HPQ070_5a | text | Yes | NULL | ||
| HPQ070_5b | text | Yes | NULL | ||
| hpu008_note | text | Yes | NULL | Descriptive text field | |
| HPU008a | text | Yes | NULL | ||
| HPU008b | text | Yes | NULL | ||
| HPU018 | text | Yes | NULL | ||
| HPU027 | text | Yes | NULL | ||
| HPQ021_4 | text | Yes | NULL | ||
| HPQ023_3 | text | Yes | NULL | ||
| HPQ034_2 | text | Yes | NULL | ||
| HPQ035_2 | text | Yes | NULL | ||
| HPQ041_2 | text | Yes | NULL | ||
| HPQ043_3 | text | Yes | NULL | ||
| HPQ046_3 | text | Yes | NULL | ||
| HPQ047_2 | text | Yes | NULL | ||
| HPQ052_3 | text | Yes | NULL | ||
| HPQ029_2 | text | Yes | NULL | ||
| HPQ032_2 | text | Yes | NULL | ||
| HPQ034_3 | text | Yes | NULL | ||
| mcm_srcdoc_rpts7 | text | Yes | NULL | ||
| HPQ052_2 | text | Yes | NULL | ||
| HPQ025_6 | text | Yes | NULL | ||
| HPQ025_96 | text | Yes | NULL | ||
| HPQ025o | text | Yes | NULL | ||
| HPQ029_96 | text | Yes | NULL | ||
| HPQ029o | text | Yes | NULL | ||
| HPQ031_3 | text | Yes | NULL | ||
| mcm_srcdoc_rpts4 | text | Yes | NULL | ||
| HPQ035_96 | text | Yes | NULL | ||
| HPQ035o | text | Yes | NULL | ||
| HPQ055_96 | text | Yes | NULL | ||
| HPQ055o | text | Yes | NULL | ||
| HPU013_label | text | Yes | NULL | ||
| HPU013_01 | text | Yes | NULL | ||
| HPU013_02 | text | Yes | NULL | ||
| HPU013_03 | text | Yes | NULL | ||
| HPU029 | text | Yes | NULL | ||
| HPQ021_96 | text | Yes | NULL | ||
| HPQ021o. | text | Yes | NULL | ||
| HPQ025_2 | text | Yes | NULL | ||
| HPQ032_96 | text | Yes | NULL | ||
| HPQ032o | text | Yes | NULL | ||
| HPQ034_96 | text | Yes | NULL | ||
| HPQ034o | text | Yes | NULL | ||
| HPQ044_96 | text | Yes | NULL | ||
| HPQ044o | text | Yes | NULL | ||
| HPQ046_96 | text | Yes | NULL | ||
| HPQ046o | text | Yes | NULL | ||
| HPQ057_96 | text | Yes | NULL | ||
| HPQ057o | text | Yes | NULL | ||
| HPQ059_6 | text | Yes | NULL | ||
| HPQ048_3 | text | Yes | NULL | ||
| HPQ029_1 | text | Yes | NULL | ||
| HPQ036_3 | text | Yes | NULL | ||
| HPQ058_5 | text | Yes | NULL | ||
| HPQ059_1 | text | Yes | NULL | ||
| HPQ059_4 | text | Yes | NULL | ||
| HPQ025_3 | text | Yes | NULL | ||
| hpu002_label1 | text | Yes | NULL | ||
| HPU002a | text | Yes | NULL | ||
| HPU002b | text | Yes | NULL | ||
| HPU002c | text | Yes | NULL | ||
| HPU002d | text | Yes | NULL | ||
| hpu002_label2 | text | Yes | NULL | ||
| HPU002e | text | Yes | NULL | ||
| HPU002f | text | Yes | NULL | ||
| HPU002g | text | Yes | NULL | ||
| HPU002h | text | Yes | NULL | ||
| HPQ021_5 | text | Yes | NULL | ||
| HPQ055_5 | text | Yes | NULL | ||
| HPQ036_96 | text | Yes | NULL | ||
| HPQ036o | text | Yes | NULL | ||
| HPQ054_1 | text | Yes | NULL | ||
| HPQ036_6 | text | Yes | NULL | ||
| HPQ044_5 | text | Yes | NULL | ||
| HPQ048_96 | text | Yes | NULL | ||
| HPQ048o | text | Yes | NULL | ||
| hpu006_label1 | text | Yes | NULL | ||
| HPU006_01 | text | Yes | NULL | ||
| HPU006_02 | text | Yes | NULL | ||
| HPU006_03 | text | Yes | NULL | ||
| HPU006_04 | text | Yes | NULL | ||
| HPU006_05 | text | Yes | NULL | ||
| HPU006_06 | text | Yes | NULL | ||
| HPU006_07 | text | Yes | NULL | ||
| HPQ040do | text | Yes | NULL | ||
| HPQ041_3 | text | Yes | NULL | ||
| HPQ047_1 | text | Yes | NULL | ||
| HPQ058_1 | text | Yes | NULL | ||
| HPQ058_2 | text | Yes | NULL | ||
| HPQ029_4 | text | Yes | NULL | ||
| HPQ066_label1 | text | Yes | NULL | ||
| HPQ066_01_ser | text | Yes | NULL | ||
| HPQ066_01_dis | text | Yes | NULL | ||
| HPQ066_label2 | text | Yes | NULL | ||
| HPQ066_02_ser | text | Yes | NULL | ||
| HPQ066_02_dis | text | Yes | NULL | ||
| HPQ066_label3 | text | Yes | NULL | ||
| HPQ066_03_ser | text | Yes | NULL | ||
| HPQ066_03_dis | text | Yes | NULL | ||
| HPQ067 | text | Yes | NULL | ||
| HPQ068 | text | Yes | NULL | ||
| HPQ059_2 | text | Yes | NULL | ||
| HPQ048_1 | text | Yes | NULL | ||
| HPQ048_6 | text | Yes | NULL | ||
| HPQ052_96 | text | Yes | NULL | ||
| HPQ052o | text | Yes | NULL | ||
| HPQ018o | text | Yes | NULL | ||
| HPQ035_1 | text | Yes | NULL | ||
| HPQ059_5 | text | Yes | NULL | ||
| HPQ041_1 | text | Yes | NULL | ||
| HPQ052_1 | text | Yes | NULL | ||
| HPQ058_4 | text | Yes | NULL | ||
| HPQ070_5a_other | text | Yes | NULL | ||
| HPQ070_5b_other | text | Yes | NULL | ||
| HPU010 | text | Yes | NULL | ||
| HPU011 | text | Yes | NULL | ||
| HPU012 | text | Yes | NULL | ||
| HPU014_note | text | Yes | NULL | Descriptive text field | |
| HPU014a | text | Yes | NULL | ||
| HPU014b | text | Yes | NULL | ||
| HPU014c | text | Yes | NULL | ||
| HPU014d | text | Yes | NULL | ||
| HPU014e | text | Yes | NULL | ||
| HPU015a_label | text | Yes | NULL | ||
| HPU015a_01 | text | Yes | NULL | ||
| HPU015a_02 | text | Yes | NULL | ||
| HPU015a_03 | text | Yes | NULL | ||
| HPU015a_04 | text | Yes | NULL | ||
| HPU015a_05 | text | Yes | NULL | ||
| HPU015a_06 | text | Yes | NULL | ||
| HPU015a_07 | text | Yes | NULL | ||
| HPU015b | text | Yes | NULL | ||
| HPU015c | text | Yes | NULL | ||
| HPU015d_label1 | text | Yes | NULL | ||
| HPU015d_01 | text | Yes | NULL | ||
| HPU015d_02 | text | Yes | NULL | ||
| HPU015d_03 | text | Yes | NULL | ||
| HPU015d_04 | text | Yes | NULL | ||
| HPU015d_05 | text | Yes | NULL | ||
| HPU015d_06 | text | Yes | NULL | ||
| HPU015d_07 | text | Yes | NULL | ||
| HPU015e | text | Yes | NULL | ||
| HPU015f | text | Yes | NULL | ||
| HPQ059_3 | text | Yes | NULL | ||
| HPQ032_5 | text | Yes | NULL | ||
| HPQ035_4 | text | Yes | NULL | ||
| HPQ036_5 | text | Yes | NULL | ||
| HPQ047_5 | text | Yes | NULL | ||
| HPQ048_4 | text | Yes | NULL | ||
| HPQ025_5 | text | Yes | NULL | ||
| HPQ032_1 | text | Yes | NULL | ||
| HPQ034_1 | text | Yes | NULL | ||
| HPQ031_2 | text | Yes | NULL | ||
| HPQ031_96 | text | Yes | NULL | ||
| HPQ031o | text | Yes | NULL | ||
| HPQ020_3 | text | Yes | NULL | ||
| HPQ020_96 | text | Yes | NULL | ||
| HPQ020o | text | Yes | NULL | ||
| HPQ036_1 | text | Yes | NULL | ||
| HPQ032_4 | text | Yes | NULL | ||
| HPQ048_5 | text | Yes | NULL | ||
| HPQ055_4 | text | Yes | NULL | ||
| HPQ021_3 | text | Yes | NULL | ||
| HPQ035_5 | text | Yes | NULL | ||
| HPQ044_4 | text | Yes | NULL | ||
| HPQ047_96 | text | Yes | NULL | ||
| HPQ047o | text | Yes | NULL | ||
| HPQ054_96 | text | Yes | NULL | ||
| HPQ054o | text | Yes | NULL | ||
| HPQ017do | text | Yes | NULL | ||
| HPQ044_3 | text | Yes | NULL | ||
| HPQ055_3 | text | Yes | NULL | ||
| HPQ032_3 | text | Yes | NULL | ||
| HPQ035_3 | text | Yes | NULL | ||
| HPQ047_3 | text | Yes | NULL | ||
| HPQ058_3 | text | Yes | NULL | ||
| HPQ043_96 | text | Yes | NULL | ||
| HPQ043o | text | Yes | NULL | ||
| HPQ059_96 | text | Yes | NULL | ||
| HPQ059o | text | Yes | NULL | ||
| HPQ025_4 | text | Yes | NULL | ||
| HPQ047_4 | text | Yes | NULL | ||
| HPQ031_1 | text | Yes | NULL | ||
| hpu005_note_1 | text | Yes | NULL | Descriptive text field | |
| HPU005a_1 | text | Yes | NULL | ||
| HPU005b_1 | text | Yes | NULL | ||
| HPU005c_1 | text | Yes | NULL | ||
| HPU005d_1 | text | Yes | NULL | ||
| HPQ036_4 | text | Yes | NULL | ||
| HPQ057_2 | text | Yes | NULL |
This table has no foreign key relationships.
| CompletionDate | SubmissionDate | starttime | endtime | deviceid | subscriberid | simid | devicephonenum | username | duration | caseid | HPQ104 | HPQ101 | HPQ102 | HPQ105 | HPQ106 | HPQ106_Other | HPQ107 | HPQ108 | siteid | HPQ109 | intro | HPQ110 | revw_mos_note | Month1 | month1_fmt | Month2 | month2_fmt | Month3 | month3_fmt | HPQ010 | HPQ011 | HPQ012a | HPQ012b | HPQ013 | HPQ014 | HPQ015 | HPQ016 | hpq017_label | HPQ017a | HPQ017b | HPQ017c | HPQ017d | HPQ018 | hpq019_note1 | hpq019_note2 | HPQ019_1a | HPQ019_2a | HPQ019_3a | dtp3_src_avail1 | dtp3_src_avail2 | dtp3_src_avail3 | dtp3_src_avail_note | dtp3_src_compl1 | dtp3_src_compl2 | dtp3_src_compl3 | dtp3_src_compl_note | HPQ021_1 | HPQ021_2 | HPQ019_1b | HPQ019_2b | HPQ019_3b | hpq022_note1 | hpq022_note2 | HPQ022_1a | HPQ022_2a | HPQ022_3a | dtp3_rpt_avail1 | dtp3_rpt_avail2 | dtp3_rpt_avail3 | dtp3_rpt_avail_note | dtp3_rpt_compl1 | dtp3_rpt_compl2 | dtp3_rpt_compl3 | dtp3_rpt_compl_note | HPQ023_1 | HPQ023_2 | dtp3_srcdoc_rpts7 | tmp_hpq019_1b | tmp_hpq022_1b | tmp_dtp3_vf1 | dtp3_vf1 | tmp_dtp3_vf1_diff | dtp3_vf1_diff | tmp_hpq019_2b | tmp_hpq022_2b | tmp_dtp3_vf2 | dtp3_vf2 | tmp_dtp3_vf2_diff | dtp3_vf2_diff | tmp_hpq019_3b | tmp_hpq022_3b | tmp_dtp3_vf3 | dtp3_vf3 | tmp_dtp3_vf3_diff | dtp3_vf3_diff | HPQ026 | mcm_src_avail1 | mcm_src_avail2 | mcm_src_avail3 | mcm_src_compl1 | mcm_src_compl2 | mcm_src_compl3 | mcm_rpt_avail1 | mcm_rpt_avail2 | mcm_rpt_avail3 | mcm_rpt_compl1 | mcm_rpt_compl2 | mcm_rpt_compl3 | tmp_hpq030_1b | tmp_hpq033_1b | tmp_mcm_vf1 | mcm_vf1 | tmp_mcm_vf1_diff | mcm_vf1_diff | tmp_hpq030_2b | tmp_hpq033_2b | tmp_mcm_vf2 | mcm_vf2 | tmp_mcm_vf2_diff | mcm_vf2_diff | tmp_hpq030_3b | tmp_hpq033_3b | tmp_mcm_vf3 | mcm_vf3 | tmp_mcm_vf3_diff | mcm_vf3_diff | HPQ038 | HPQ039 | hpq040label | HPQ040a | HPQ040b | HPQ040c | HPQ040d | HPQ041_4 | HPQ041_96 | HPQ041o | hpq042_note1 | hpq042_note2 | HPQ042_1a | HPQ042_2a | HPQ042_3a | malaria_src_avail1 | malaria_src_avail2 | malaria_src_avail3 | malaria_src_avail_note | malaria_src_compl1 | malaria_src_compl2 | malaria_src_compl3 | malaria_src_compl_note | HPQ044_1 | HPQ044_2 | HPQ042_1b | HPQ042_2b | HPQ042_3b | hpq045_note1 | hpq045_note2 | HPQ045_1a | HPQ045_2a | HPQ045_3a | malaria_rpt_avail1 | malaria_rpt_avail2 | malaria_rpt_avail3 | malaria_rpt_avail_note | malaria_rpt_compl1 | malaria_rpt_compl2 | malaria_rpt_compl3 | malaria_rpt_compl_note | HPQ046_1 | malaria_srcdoc_rpts7 | tmp_hpq042_1b | tmp_hpq045_1b | tmp_malaria_vf1 | malaria_vf1 | tmp_malaria_vf1_diff | malaria_vf1_diff | tmp_hpq042_2b | tmp_hpq045_2b | tmp_malaria_vf2 | malaria_vf2 | tmp_malaria_vf2_diff | malaria_vf2_diff | tmp_hpq042_3b | tmp_hpq045_3b | tmp_malaria_vf3 | malaria_vf3 | tmp_malaria_vf3_diff | malaria_vf3_diff | HPQ049 | HPQ050 | hpq051_label | HPQ051a | HPQ051b | HPQ051c | HPQ051d | HPQ052_4 | hpq053_note1 | hpq053_note2 | HPQ053_1a | HPQ053_2a | HPQ053_3a | pneum_src_avail1 | pneum_src_avail2 | pneum_src_avail3 | pneum_src_avail_note | pneum_src_compl1 | pneum_src_compl2 | pneum_src_compl3 | pneum_src_compl_note | HPQ055_1 | HPQ055_2 | pneum_srcdoc_rpts4 | hpq056_note1 | hpq056_note2 | HPQ056_1a | HPQ056_2a | HPQ056_3a | pneum_rpt_avail1 | pneum_rpt_avail2 | pneum_rpt_avail3 | pneum_rpt_avail_note | pneum_rpt_compl1 | pneum_rpt_compl2 | pneum_rpt_compl3 | pneum_rpt_compl_note | HPQ057_1 | pneum_srcdoc_rpts7 | tmp_hpq053_1b | tmp_hpq056_1b | tmp_pneum_vf1 | pneum_vf1 | tmp_pneum_vf1_diff | pneum_vf1_diff | tmp_hpq053_2b | tmp_hpq056_2b | tmp_pneum_vf2 | pneum_vf2 | tmp_pneum_vf2_diff | pneum_vf2_diff | tmp_hpq053_3b | tmp_hpq056_3b | tmp_pneum_vf3 | pneum_vf3 | tmp_pneum_vf3_diff | pneum_vf3_diff | HPQ060a | HPQ060b | HPQ061 | HPQ063 | HPQ064 | HPQ065 | HPQ069 | HPQ071_note1 | HPQ071a | HPQ071b | HPQ071c | HPQ071d | HPQ071_note2 | HPQ071e | HPQ071f | HPQ071g | HPU001 | hpu003_rcd | HPU003 | HPU004 | HPU007 | hpu007_rcd | HPU009 | HPU016 | HPU017 | HPU020 | HPU028 | HPU030 | HPU031 | gps_note | HPQ111 | note_end | instanceID | instanceName | formdef_version | review_quality | review_status | KEY | dtp3_srcdoc_rpts4 | malaria_srcdoc_rpts4 | HPQ046_2 | HPU021 | HPU022 | HPU023 | HPU024 | HPU025 | HPU026 | hpq061_note | hpq062_label1 | HPQ062_1_ser | HPQ062_1_dis | hpq062_label2 | HPQ062_2_ser | HPQ062_2_dis | hpq062_label3 | HPQ062_3_ser | HPQ062_3_dis | dtp3_srcdoc_rpts5 | HPQ023_96 | HPQ023o | HPQ054_3 | HPQ057_3 | dtp3_srcdoc_rpts8 | HPQ022_1b | HPQ022_2b | HPQ022_3b | dtp3_vf1_note | dtp3_vf2_note | dtp3_vf3_note | dtp3_vf_note | HPQ025_1 | HPQ027 | hpq028_label | HPQ028a | HPQ028b | HPQ028c | HPQ028d | HPQ029_3 | hpq030_note1 | hpq030_note2 | HPQ030_1a | HPQ030_2a | HPQ030_3a | mcm_src_avail_note | mcm_src_compl_note | mcm_srcdoc_rpts5 | HPQ030_1b | HPQ030_2b | HPQ030_3b | hpq033_note1 | hpq033_note2 | HPQ033_1a | HPQ033_2a | HPQ033_3a | mcm_rpt_avail_note | mcm_rpt_compl_note | mcm_srcdoc_rpts8 | HPQ033_1b | HPQ033_2b | HPQ033_3b | mcm_vf1_note | mcm_vf2_note | mcm_vf3_note | mcm_vf_note | HPQ036_2 | HPQ041_5 | malaria_srcdoc_rpts5 | malaria_srcdoc_rpts8 | HPQ045_1b | HPQ045_2b | HPQ045_3b | malaria_vf1_note | malaria_vf2_note | malaria_vf3_note | malaria_vf_note | HPQ048_2 | HPQ052_5 | pneum_srcdoc_rpts5 | HPQ053_1b | HPQ053_2b | HPQ053_3b | pneum_srcdoc_rpts8 | HPQ056_1b | HPQ056_2b | HPQ056_3b | pneum_vf1_note | pneum_vf2_note | pneum_vf3_note | pneum_vf_note | HPQ070_note1 | HPQ070_1a | HPQ070_1b | HPQ070_note2 | HPQ070_2a | HPQ070_2b | HPQ070_note3 | HPQ070_3a | HPQ070_3b | HPQ070_note4 | HPQ070_4a | HPQ070_4b | HPQ070_note5 | HPQ070_5a | HPQ070_5b | hpu008_note | HPU008a | HPU008b | HPU018 | HPU027 | HPQ021_4 | HPQ023_3 | HPQ034_2 | HPQ035_2 | HPQ041_2 | HPQ043_3 | HPQ046_3 | HPQ047_2 | HPQ052_3 | HPQ029_2 | HPQ032_2 | HPQ034_3 | mcm_srcdoc_rpts7 | HPQ052_2 | HPQ025_6 | HPQ025_96 | HPQ025o | HPQ029_96 | HPQ029o | HPQ031_3 | mcm_srcdoc_rpts4 | HPQ035_96 | HPQ035o | HPQ055_96 | HPQ055o | HPU013_label | HPU013_01 | HPU013_02 | HPU013_03 | HPU029 | HPQ021_96 | HPQ021o. | HPQ025_2 | HPQ032_96 | HPQ032o | HPQ034_96 | HPQ034o | HPQ044_96 | HPQ044o | HPQ046_96 | HPQ046o | HPQ057_96 | HPQ057o | HPQ059_6 | HPQ048_3 | HPQ029_1 | HPQ036_3 | HPQ058_5 | HPQ059_1 | HPQ059_4 | HPQ025_3 | hpu002_label1 | HPU002a | HPU002b | HPU002c | HPU002d | hpu002_label2 | HPU002e | HPU002f | HPU002g | HPU002h | HPQ021_5 | HPQ055_5 | HPQ036_96 | HPQ036o | HPQ054_1 | HPQ036_6 | HPQ044_5 | HPQ048_96 | HPQ048o | hpu006_label1 | HPU006_01 | HPU006_02 | HPU006_03 | HPU006_04 | HPU006_05 | HPU006_06 | HPU006_07 | HPQ040do | HPQ041_3 | HPQ047_1 | HPQ058_1 | HPQ058_2 | HPQ029_4 | HPQ066_label1 | HPQ066_01_ser | HPQ066_01_dis | HPQ066_label2 | HPQ066_02_ser | HPQ066_02_dis | HPQ066_label3 | HPQ066_03_ser | HPQ066_03_dis | HPQ067 | HPQ068 | HPQ059_2 | HPQ048_1 | HPQ048_6 | HPQ052_96 | HPQ052o | HPQ018o | HPQ035_1 | HPQ059_5 | HPQ041_1 | HPQ052_1 | HPQ058_4 | HPQ070_5a_other | HPQ070_5b_other | HPU010 | HPU011 | HPU012 | HPU014_note | HPU014a | HPU014b | HPU014c | HPU014d | HPU014e | HPU015a_label | HPU015a_01 | HPU015a_02 | HPU015a_03 | HPU015a_04 | HPU015a_05 | HPU015a_06 | HPU015a_07 | HPU015b | HPU015c | HPU015d_label1 | HPU015d_01 | HPU015d_02 | HPU015d_03 | HPU015d_04 | HPU015d_05 | HPU015d_06 | HPU015d_07 | HPU015e | HPU015f | HPQ059_3 | HPQ032_5 | HPQ035_4 | HPQ036_5 | HPQ047_5 | HPQ048_4 | HPQ025_5 | HPQ032_1 | HPQ034_1 | HPQ031_2 | HPQ031_96 | HPQ031o | HPQ020_3 | HPQ020_96 | HPQ020o | HPQ036_1 | HPQ032_4 | HPQ048_5 | HPQ055_4 | HPQ021_3 | HPQ035_5 | HPQ044_4 | HPQ047_96 | HPQ047o | HPQ054_96 | HPQ054o | HPQ017do | HPQ044_3 | HPQ055_3 | HPQ032_3 | HPQ035_3 | HPQ047_3 | HPQ058_3 | HPQ043_96 | HPQ043o | HPQ059_96 | HPQ059o | HPQ025_4 | HPQ047_4 | HPQ031_1 | hpu005_note_1 | HPU005a_1 | HPU005b_1 | HPU005c_1 | HPU005d_1 | HPQ036_4 | HPQ057_2 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| May 16, 2024 6:41:06 PM | May 16, 2024 6:41:06 PM | May 16, 2024 6:34:41 AM | May 16, 2024 5:10:48 PM | 353316097351731 | 636010009237967 | 89251012200092379671 | impacteval | 1158 | 10 | May 15, 2024 | 18 | jarar | 46 | bilcilbur | 001 | antenki | 10-jarar-46-001 | 2 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 3 | 2 | 2 | 2 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | paper prepared by the staff | 2 | 2 | 2 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 3 | 3 | 3 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 26 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 6 | 0 | 0 | 0 | 8.0018278 43.1814528 1101.0 5.0 | uuid:9fbaf29c-bec7-45cf-94eb-b2ed66d89676 | 10-jarar-46-001 | 2405141313 | APPROVED | uuid:9fbaf29c-bec7-45cf-94eb-b2ed66d89676 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| May 16, 2024 6:41:09 PM | May 16, 2024 6:41:09 PM | May 16, 2024 7:16:45 AM | May 16, 2024 5:54:36 PM | 353316097351731 | 636010009237967 | 89251012200092379671 | impacteval | 985 | 10 | May 16, 2024 | 18 | jarar | 46 | degah madow | 001 | muduley | 10-jarar-46-001 | 2 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 3 | 3 | 3 | 3 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | NULL | NULL | NULL | NULL | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | NULL | NULL | 3 | 3 | 3 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | NULL | NULL | NULL | NULL | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 0 | 0 | 0 | NULL | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 0 | 0 | 0 | NULL | 0 | 0 | 0 | NULL | NULL | NULL | 1 | 26 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 5 | 0 | 0 | 0 | 8.0041131 43.0761671 1014.0 5.0 | uuid:4fce137f-5f6e-4523-9c7e-674cdb38cdaa | 10-jarar-46-001 | 2405141313 | APPROVED | uuid:4fce137f-5f6e-4523-9c7e-674cdb38cdaa | 1 | 1 | 1 | 1 | 1 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| May 17, 2024 2:53:01 AM | May 17, 2024 2:53:01 AM | May 16, 2024 11:36:40 AM | May 16, 2024 6:53:21 PM | 353316097350972 | impacteval | 1987 | 10 | May 16, 2024 | 21 | Jarar | 46 | Dhagax madaw | 002 | Kugtaa | 10-Jarar-46-002 | 2 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 3 | 2 | 2 | 2 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | NULL | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 0 | 0 | 0 | NULL | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 0 | 0 | 0 | NULL | 0 | 0 | 0 | NULL | NULL | NULL | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 0 | 0 | 0 | NULL | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 0 | 0 | 0 | NULL | 0 | 0 | 0 | NULL | NULL | NULL | 1 | 28 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 6 | 0 | 0 | 0 | 8.0813111 42.9208458 1092.0 5.0 | uuid:e60b33e2-5a42-49e3-acbc-d87b3d7362f1 | 10-Jarar-46-002 | 2405141313 | APPROVED | uuid:e60b33e2-5a42-49e3-acbc-d87b3d7362f1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 0 | 0 | 0 | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| May 17, 2024 3:00:44 AM | May 17, 2024 3:00:44 AM | May 15, 2024 7:24:12 AM | May 16, 2024 4:56:28 PM | 353316096857647 | impacteval | 2328 | 10 | May 15, 2024 | 19 | Jarar | 46 | Bilcilbur | 003 | Mandoyalay | 10-Jarar-46-003 | 2 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 3 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | NULL | 3 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | NULL | NULL | 3 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 0 | 0 | 0 | NULL | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 0 | 0 | 0 | NULL | 0 | 0 | 0 | NULL | NULL | NULL | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | NULL | NULL | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | NULL | 1 | 26 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 0 | 0 | 1 | 8.4387046 43.3017575 1226.0 5.0 | uuid:b6519dcf-f6e2-4d83-8cf7-7fbf87483f63 | 10-Jarar-46-003 | 2405141313 | APPROVED | uuid:b6519dcf-f6e2-4d83-8cf7-7fbf87483f63 | NULL | NULL | NULL | 0 | 0 | 0 | NULL | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | Telegram Report | 1 | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| May 17, 2024 6:47:51 PM | May 17, 2024 6:47:51 PM | May 17, 2024 4:26:36 AM | May 17, 2024 6:48:58 PM | 357812080569962 | impacteval | 2166 | 6 | May 17, 2024 | 27 | 02 | 4 | NULL | 002 | Mender sebat HP | 6-02-4-002 | 2 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 3 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | NULL | 0 | 2 | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | NULL | NULL | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 2 | 2 | 1 | 1 | 0 | 0 | 4 | 3 | 1.3333333333333333 | 1.33 | 0.33000000000000007 | 0.33 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | 6 | 1.1666666666666667 | 1.17 | 0.16999999999999993 | 0.17 | 9 | 9 | 1 | 1 | 0 | 0 | 8 | 7 | 1.1428571428571428 | 1.14 | 0.1399999999999999 | 0.14 | 1 | 1 | 1 | 0 | 0 | 0 | NULL | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | NULL | 47 | 44 | 16 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | NULL | 47 | 31 | 1.5161290322580645 | 1.52 | 0.52 | 0.52 | 44 | 42 | 1.0476190476190477 | 1.05 | 0.050000000000000044 | 0.05 | 16 | 20 | 0.8 | 0.8 | 0.19999999999999996 | 0.2 | 1 | 1 | 1 | 0 | 0 | 0 | NULL | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | NULL | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 0.999 | 0.999 | 1 | 1 | 0 | 0 | 1 | 21 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 3 | 0 | 0 | 0 | 8.0275812 34.5622855 485.0 5.4 | uuid:3490159f-b4ef-48c6-b11d-f94710306ca0 | 6-02-4-002 | 2405141313 | APPROVED | uuid:3490159f-b4ef-48c6-b11d-f94710306ca0 | NULL | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | NULL | NULL | NULL | NULL | 0 | 2 | 3 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 7 | 9 | 8 | 1 | 1 | 1 | 6 | 9 | 7 | 1 | 1 | 31 | 42 | 20 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL |
Showing 5 sample records. Hover over cells to see full content.
ethprism_national_prism_woreda_level_diagnostic
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| SubmissionDate | text | Yes | NULL | Date/time field | |
| starttime | text | Yes | NULL | Date/time field | |
| endtime | text | Yes | NULL | Date/time field | |
| deviceid | text | Yes | NULL | ||
| subscriberid | text | Yes | NULL | ||
| simid | text | Yes | NULL | ||
| devicephonenum | text | Yes | NULL | Phone number field | |
| username | text | Yes | NULL | Name or title field | |
| duration | text | Yes | NULL | ||
| caseid | text | Yes | NULL | ||
| DQ104 | text | Yes | NULL | ||
| intvwr_vst_DQ101 | text | Yes | NULL | ||
| intvwr_vst_DQ102 | text | Yes | NULL | ||
| intvwr_vst_DQ102_Other | text | Yes | NULL | ||
| distr_unit_id_DQ105 | text | Yes | NULL | ||
| distr_unit_id_DQ106 | text | Yes | NULL | ||
| distr_unit_id_DQ106_Other | text | Yes | NULL | ||
| distr_unit_id_DQ108 | text | Yes | NULL | ||
| siteid | text | Yes | NULL | ||
| gen_info_DQ109 | text | Yes | NULL | ||
| part1_dqa_revw_mos_Month1 | text | Yes | NULL | ||
| part1_dqa_revw_mos_month1_fmt | text | Yes | NULL | ||
| part1_dqa_revw_mos_Month2 | text | Yes | NULL | ||
| part1_dqa_revw_mos_month2_fmt | text | Yes | NULL | ||
| part1_dqa_revw_mos_Month3 | text | Yes | NULL | ||
| part1_dqa_revw_mos_month3_fmt | text | Yes | NULL | ||
| part1_dqa_resrcs1_DQ010 | text | Yes | NULL | ||
| part1_dqa_resrcs1_DQ011 | text | Yes | NULL | ||
| part1_dqa_dq011_rcd | text | Yes | NULL | ||
| part1_dqa_resrcs2_DQ012a | text | Yes | NULL | ||
| part1_dqa_resrcs2_DQ012b | text | Yes | NULL | ||
| part1_dqa_resrcs3_DQ013a | text | Yes | NULL | ||
| part1_dqa_resrcs3_DQ013b | text | Yes | NULL | ||
| part1_dqa_dq013b_rcd | text | Yes | NULL | ||
| part1_dqa_rptg_compl1_DQ014a | text | Yes | NULL | ||
| part1_dqa_rptg_compl1_DQ014b | text | Yes | NULL | ||
| part1_dqa_rptg_compl2_DQ015_1a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl2_DQ015_1a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl2_DQ015_1a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl2_DQ015_1a_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl3_DQ015_1b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl3_DQ015_1b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl3_DQ015_1b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl3_DQ015_1b_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl4_DQ015_1c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl4_DQ015_1c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl4_DQ015_1c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl4_DQ015_1c_qrtr | text | Yes | NULL | ||
| part1_dqa_primary_Hosp | text | Yes | NULL | ||
| part1_dqa_dq_calc_1_dq015_1tot_ser | text | Yes | NULL | ||
| part1_dqa_dq_calc_1_dq015_1tot_ipd | text | Yes | NULL | ||
| part1_dqa_dq_calc_1_dq015_1tot_opd | text | Yes | NULL | ||
| part1_dqa_dq_calc_1_dq015_1tot_qrtr | text | Yes | NULL | ||
| part1_dqa_dq_calc_1_dq015_1_tot | text | Yes | NULL | ||
| part1_dqa_rptg_compl5_DQ015_2a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl5_DQ015_2a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl5_DQ015_2a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl5_DQ015_2a_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl6_DQ015_2b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl6_DQ015_2b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl6_DQ015_2b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl6_DQ015_2b_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl7_DQ015_2c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl7_DQ015_2c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl7_DQ015_2c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl7_DQ015_2c_qrtr | text | Yes | NULL | ||
| part1_dqa_dq_calc_2_dq015_2tot_ser | text | Yes | NULL | ||
| part1_dqa_dq_calc_2_dq015_2tot_ipd | text | Yes | NULL | ||
| part1_dqa_dq_calc_2_dq015_2tot_opd | text | Yes | NULL | ||
| part1_dqa_dq_calc_2_dq015_2tot_qrtr | text | Yes | NULL | ||
| part1_dqa_dq_calc_2_dq015_2_tot | text | Yes | NULL | ||
| part1_dqa_rptg_compl8_DQ015_3a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl8_DQ015_3a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl8_DQ015_3a_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl9_DQ015_3b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl9_DQ015_3b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl9_DQ015_3b_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl10_DQ015_3c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl10_DQ015_3c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl10_DQ015_3c_qrtr | text | Yes | NULL | ||
| part1_dqa_dq_calc_3_dq015_3tot_ser | text | Yes | NULL | ||
| part1_dqa_dq_calc_3_dq015_3tot_opd | text | Yes | NULL | ||
| part1_dqa_dq_calc_3_dq015_3tot_qrtr | text | Yes | NULL | ||
| part1_dqa_dq_calc_3_dq015_3_tot | text | Yes | NULL | ||
| part1_dqa_rptg_compl11_DQ015_4a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl11_DQ015_4a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl11_DQ015_4a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl11_DQ015_4a_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl12_DQ015_4b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl12_DQ015_4b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl12_DQ015_4b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl12_DQ015_4b_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl13_DQ015_4c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl13_DQ015_4c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl13_DQ015_4c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl13_DQ015_4c_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl14_dq015_4tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl14_dq015_4tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl14_dq015_4tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl14_dq015_4tot_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl14_dq015_4_tot | text | Yes | NULL | ||
| part1_dqa_dq015_tot_ser | text | Yes | NULL | ||
| part1_dqa_dq015_tot_ipd | text | Yes | NULL | ||
| part1_dqa_dq015_tot_opd | text | Yes | NULL | ||
| part1_dqa_dq015_tot_qrtr | text | Yes | NULL | ||
| part1_dqa_dq015_tot | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act1_DQ016_A1a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act1_DQ016_A1a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act1_DQ016_A1a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act2_DQ016_A1b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act2_DQ016_A1b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act2_DQ016_A1b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act3_DQ016_A1c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act3_DQ016_A1c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act3_DQ016_A1c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_tmp_dq016a1a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_tmp_dq016a1a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_tmp_dq016a1a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_tmp_dq016a1b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_tmp_dq016a1b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_tmp_dq016a1b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_tmp_dq016a1c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_tmp_dq016a1c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_tmp_dq016a1c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_dq016a1_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_dq016a1_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_dq016a1_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_tmp_rptg_ser_complns_hosp1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_rptg_ser_complns_hosp1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_tmp_rptg_ipd_complns_hosp1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_rptg_ipd_complns_hosp1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_tmp_rptg_opd_complns_hosp1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospA_rptg_opd_complns_hosp1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act4_DQ016_A2a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act4_DQ016_A2a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act4_DQ016_A2a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act5_DQ016_A2b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act5_DQ016_A2b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act5_DQ016_A2b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act6_DQ016_A2c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act6_DQ016_A2c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act6_DQ016_A2c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_tmp_dq016a2a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_tmp_dq016a2a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_tmp_dq016a2a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_tmp_dq016a2b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_tmp_dq016a2b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_tmp_dq016a2b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_tmp_dq016a2c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_tmp_dq016a2c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_tmp_dq016a2c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_dq016a2_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_dq016a2_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_dq016a2_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_tmp_rptg_ser_complns_hc1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_rptg_ser_complns_hc1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_tmp_rptg_ipd_complns_hc1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_rptg_ipd_complns_hc1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_tmp_rptg_opd_complns_hc1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcA_rptg_opd_complns_hc1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act7_DQ016_A3a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act7_DQ016_A3a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act8_DQ016_A3b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act8_DQ016_A3b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act9_DQ016_A3c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act9_DQ016_A3c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpA_tmp_dq016a3a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpA_tmp_dq016a3a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpA_tmp_dq016a3b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpA_tmp_dq016a3b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpA_tmp_dq016a3c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpA_tmp_dq016a3c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpA_dq016a3_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpA_dq016a3_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpA_tmp_rptg_ser_complns_hp1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpA_rptg_ser_complns_hp1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpA_tmp_rptg_opd_complns_hp1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpA_rptg_opd_complns_hp1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act10_DQ016_A4a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act10_DQ016_A4a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act10_DQ016_A4a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act11_DQ016_A4b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act11_DQ016_A4b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act11_DQ016_A4b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act12_DQ016_A4c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act12_DQ016_A4c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act12_DQ016_A4c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_tmp_dq016a4a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_tmp_dq016a4a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_tmp_dq016a4a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_tmp_dq016a4b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_tmp_dq016a4b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_tmp_dq016a4b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_tmp_dq016a4c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_tmp_dq016a4c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_tmp_dq016a4c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_dq016a4_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_dq016a4_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_dq016a4_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_tmp_rptg_ser_complns_pc1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_rptg_ser_complns_pc1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_tmp_rptg_ipd_complns_pc1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_rptg_ipd_complns_pc1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_tmp_rptg_opd_complns_pc1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priA_rptg_opd_complns_pc1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_tmp_dq016a1_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_tmp_dq016a1_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_tmp_dq016a1_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_tmp_dq016a2_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_tmp_dq016a2_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_tmp_dq016a2_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_tmp_dq016a3_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_tmp_dq016a3_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_tmp_dq016a4_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_tmp_dq016a4_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_tmp_dq016a4_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_dq016a_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_dq016a_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_dq016a_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_tmp_rptg_complns_sertot1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_rptg_complns_sertot1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_tmp_rptg_complns_ipdtot1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_rptg_complns_ipdtot1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_tmp_rptg_complns_opdtot1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total1_rptg_complns_opdtot1 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act1b_DQ016_B1a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act1b_DQ016_B1a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act1b_DQ016_B1a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act2b_DQ016_B1b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act2b_DQ016_B1b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act2b_DQ016_B1b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act3b_DQ016_B1c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act3b_DQ016_B1c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act3b_DQ016_B1c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_tmp_dq016b1a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_tmp_dq016b1a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_tmp_dq016b1a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_tmp_dq016b1b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_tmp_dq016b1b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_tmp_dq016b1b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_tmp_dq016b1c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_tmp_dq016b1c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_tmp_dq016b1c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_dq016b1_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_dq016b1_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_dq016b1_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_tmp_rptg_ser_complns_hosp2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_rptg_ser_complns_hosp2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_tmp_rptg_ipd_complns_hosp2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_rptg_ipd_complns_hosp2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_tmp_rptg_opd_complns_hosp2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospB_rptg_opd_complns_hosp2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act4b_DQ016_B2a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act4b_DQ016_B2a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act4b_DQ016_B2a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act5b_DQ016_B2b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act5b_DQ016_B2b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act5b_DQ016_B2b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act6b_DQ016_B2c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act6b_DQ016_B2c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act6b_DQ016_B2c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_tmp_dq016b2a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_tmp_dq016b2a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_tmp_dq016b2a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_tmp_dq016b2b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_tmp_dq016b2b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_tmp_dq016b2b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_tmp_dq016b2c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_tmp_dq016b2c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_tmp_dq016b2c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_dq016b2_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_dq016b2_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_dq016b2_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_tmp_rptg_ser_complns_hc2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_rptg_ser_complns_hc2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_tmp_rptg_ipd_complns_hc2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_rptg_ipd_complns_hc2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_tmp_rptg_opd_complns_hc2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcB_rptg_opd_complns_hc2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act7b_DQ016_B3a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act7b_DQ016_B3a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act8b_DQ016_B3b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act8b_DQ016_B3b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act9b_DQ016_B3c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act9b_DQ016_B3c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpB_tmp_dq016b3a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpB_tmp_dq016b3a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpB_tmp_dq016b3b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpB_tmp_dq016b3b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpB_tmp_dq016b3c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpB_tmp_dq016b3c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpB_dq016b3_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpB_dq016b3_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpB_tmp_rptg_ser_complns_hp2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpB_rptg_ser_complns_hp2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpB_tmp_rptg_opd_complns_hp2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpB_rptg_opd_complns_hp2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act10b_DQ016_B4a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act10b_DQ016_B4a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act10b_DQ016_B4a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act11b_DQ016_B4b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act11b_DQ016_B4b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act11b_DQ016_B4b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act12b_DQ016_B4c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act12b_DQ016_B4c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act12b_DQ016_B4c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_tmp_dq016b4a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_tmp_dq016b4a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_tmp_dq016b4a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_tmp_dq016b4b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_tmp_dq016b4b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_tmp_dq016b4b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_tmp_dq016b4c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_tmp_dq016b4c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_tmp_dq016b4c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_dq016b4_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_dq016b4_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_dq016b4_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_tmp_rptg_ser_complns_pc2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_rptg_ser_complns_pc2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_tmp_rptg_ipd_complns_pc2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_rptg_ipd_complns_pc2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_tmp_rptg_opd_complns_pc2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priB_rptg_opd_complns_pc2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_tmp_dq016b1_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_tmp_dq016b1_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_tmp_dq016b1_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_tmp_dq016b2_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_tmp_dq016b2_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_tmp_dq016b2_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_tmp_dq016b3_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_tmp_dq016b3_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_tmp_dq016b4_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_tmp_dq016b4_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_tmp_dq016b4_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_dq016b_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_dq016b_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_dq016b_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_tmp_rptg_complns_sertot2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_rptg_complns_sertot2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_tmp_rptg_complns_ipdtot2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_rptg_complns_ipdtot2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_tmp_rptg_complns_opdtot2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total2_rptg_complns_opdtot2 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act1c_DQ016_C1a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act1c_DQ016_C1a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act1c_DQ016_C1a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act1c_DQ016_C1a_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act2c_DQ016_C1b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act2c_DQ016_C1b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act2c_DQ016_C1b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act2c_DQ016_C1b_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act3c_DQ016_C1c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act3c_DQ016_C1c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act3c_DQ016_C1c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act3c_DQ016_C1c_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_tmp_dq016c1a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_tmp_dq016c1a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_tmp_dq016c1a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_tmp_dq016c1a_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_tmp_dq016c1b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_tmp_dq016c1b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_tmp_dq016c1b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_tmp_dq016c1b_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_tmp_dq016c1c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_tmp_dq016c1c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_tmp_dq016c1c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_tmp_dq016c1c_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_dq016c1_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_dq016c1_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_dq016c1_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_dq016c1_tot_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_tmp_rptg_ser_complns_hosp3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_rptg_ser_complns_hosp3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_tmp_rptg_ipd_complns_hosp3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_rptg_ipd_complns_hosp3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_tmp_rptg_opd_complns_hosp3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_rptg_opd_complns_hosp3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_tmp_rptg_qrtr_complns_hosp3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hospC_rptg_qrtr_complns_hosp3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act4c_DQ016_C2a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act4c_DQ016_C2a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act4c_DQ016_C2a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act4c_DQ016_C2a_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act5c_DQ016_C2b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act5c_DQ016_C2b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act5c_DQ016_C2b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act5c_DQ016_C2b_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act6c_DQ016_C2c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act6c_DQ016_C2c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act6c_DQ016_C2c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act6c_DQ016_C2c_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_tmp_dq016c2a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_tmp_dq016c2a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_tmp_dq016c2a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_tmp_dq016c2a_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_tmp_dq016c2b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_tmp_dq016c2b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_tmp_dq016c2b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_tmp_dq016c2b_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_tmp_dq016c2c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_tmp_dq016c2c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_tmp_dq016c2c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_tmp_dq016c2c_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_dq016c2_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_dq016c2_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_dq016c2_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_dq016c2_tot_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_tmp_rptg_ser_complns_hc3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_rptg_ser_complns_hc3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_tmp_rptg_ipd_complns_hc3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_rptg_ipd_complns_hc3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_tmp_rptg_opd_complns_hc3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_rptg_opd_complns_hc3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_tmp_rptg_qrtr_complns_hc3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hcC_rptg_qrtr_complns_hc3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act7c_DQ016_C3a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act7c_DQ016_C3a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act7c_DQ016_C3a_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act8c_DQ016_C3b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act8c_DQ016_C3b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act8c_DQ016_C3b_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act9c_DQ016_C3c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act9c_DQ016_C3c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act9c_DQ016_C3c_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_tmp_dq016c3a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_tmp_dq016c3a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_tmp_dq016c3a_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_tmp_dq016c3b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_tmp_dq016c3b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_tmp_dq016c3b_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_tmp_dq016c3c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_tmp_dq016c3c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_tmp_dq016c3c_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_dq016c3_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_dq016c3_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_dq016c3_tot_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_tmp_rptg_ser_complns_hp3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_rptg_ser_complns_hp3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_tmp_rptg_opd_complns_hp3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_rptg_opd_complns_hp3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_tmp_rptg_qrtr_complns_hp3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_hpC_rptg_qrtr_complns_hp3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act10c_DQ016_C4a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act10c_DQ016_C4a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act10c_DQ016_C4a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act10c_DQ016_C4a_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act11c_DQ016_C4b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act11c_DQ016_C4b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act11c_DQ016_C4b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act11c_DQ016_C4b_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act12c_DQ016_C4c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act12c_DQ016_C4c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act12c_DQ016_C4c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_act12c_DQ016_C4c_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_tmp_dq016c4a_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_tmp_dq016c4a_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_tmp_dq016c4a_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_tmp_dq016c4a_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_tmp_dq016c4b_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_tmp_dq016c4b_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_tmp_dq016c4b_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_tmp_dq016c4b_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_tmp_dq016c4c_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_tmp_dq016c4c_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_tmp_dq016c4c_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_tmp_dq016c4c_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_dq016c4_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_dq016c4_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_dq016c4_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_dq016c4_tot_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_tmp_rptg_ser_complns_pc3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_rptg_ser_complns_pc3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_tmp_rptg_ipd_complns_pc3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_rptg_ipd_complns_pc3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_tmp_rptg_opd_complns_pc3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_rptg_opd_complns_pc3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_tmp_rptg_qrtr_complns_pc3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_priC_rptg_qrtr_complns_pc3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_dq016c1_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_dq016c1_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_dq016c1_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_dq016c1_tot_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_dq016c2_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_dq016c2_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_dq016c2_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_dq016c2_tot_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_dq016c3_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_dq016c3_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_dq016c3_tot_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_dq016c4_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_dq016c4_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_dq016c4_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_dq016c4_tot_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_dq016c_tot_ser | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_dq016c_tot_ipd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_dq016c_tot_opd | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_dq016c_tot_qrtr | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_rptg_complns_sertot3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_rptg_complns_sertot3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_rptg_complns_ipdtot3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_rptg_complns_ipdtot3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_rptg_complns_opdtot3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_rptg_complns_opdtot3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_tmp_rptg_complns_qrtrtot3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl_total3_rptg_complns_qrtrtot3 | text | Yes | NULL | ||
| part1_dqa_rptg_compl21_DQ017 | text | Yes | NULL | ||
| part1_dqa_rptg_compl21_DQ017o | text | Yes | NULL | ||
| part1_dqa_indic_compl1_DQ018a_1a | text | Yes | NULL | ||
| part1_dqa_indic_compl1_DQ018a_1b | text | Yes | NULL | ||
| part1_dqa_indic_compl1_DQ018a_1c | text | Yes | NULL | ||
| part1_dqa_indic_compl1_DQ018a_1d | text | Yes | NULL | ||
| part1_dqa_indic_compl1_DQ018a_1e | text | Yes | NULL | ||
| part1_dqa_indic_compl1_DQ018a_1f | text | Yes | NULL | ||
| part1_dqa_indic_compl1_DQ018a_1g | text | Yes | NULL | ||
| part1_dqa_indic_compl1_DQ018a_1h | text | Yes | NULL | ||
| part1_dqa_indic_compl2_DQ018a_2a | text | Yes | NULL | ||
| part1_dqa_indic_compl2_DQ018a_2b | text | Yes | NULL | ||
| part1_dqa_indic_compl2_DQ018a_2c | text | Yes | NULL | ||
| part1_dqa_indic_compl2_DQ018a_2d | text | Yes | NULL | ||
| part1_dqa_indic_compl2_DQ018a_2e | text | Yes | NULL | ||
| part1_dqa_indic_compl2_DQ018a_2f | text | Yes | NULL | ||
| part1_dqa_indic_compl2_DQ018a_2g | text | Yes | NULL | ||
| part1_dqa_indic_compl2_DQ018a_2h | text | Yes | NULL | ||
| part1_dqa_indic_compl3_DQ018a_3a | text | Yes | NULL | ||
| part1_dqa_indic_compl3_DQ018a_3b | text | Yes | NULL | ||
| part1_dqa_indic_compl3_DQ018a_3c | text | Yes | NULL | ||
| part1_dqa_indic_compl3_DQ018a_3d | text | Yes | NULL | ||
| part1_dqa_indic_compl3_DQ018a_3e | text | Yes | NULL | ||
| part1_dqa_indic_compl3_DQ018a_3f | text | Yes | NULL | ||
| part1_dqa_indic_compl3_DQ018a_3g | text | Yes | NULL | ||
| part1_dqa_indic_compl3_DQ018a_3h | text | Yes | NULL | ||
| part1_dqa_indic_compl4_DQ018b_1a | text | Yes | NULL | ||
| part1_dqa_indic_compl4_DQ018b_1b | text | Yes | NULL | ||
| part1_dqa_indic_compl4_DQ018b_1c | text | Yes | NULL | ||
| part1_dqa_indic_compl4_DQ018b_1d | text | Yes | NULL | ||
| part1_dqa_indic_compl4_DQ018b_1e | text | Yes | NULL | ||
| part1_dqa_indic_compl4_DQ018b_1f | text | Yes | NULL | ||
| part1_dqa_indic_compl4_DQ018b_1g | text | Yes | NULL | ||
| part1_dqa_indic_compl4_DQ018b_1h | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_tmp_DQ018b_1a | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_tmp_rptg_complns_birth_1 | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_rptg_complns_birth_1 | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_tmp_DQ018b_1b | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_tmp_rptg_complns_fp_1 | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_rptg_complns_fp_1 | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_tmp_DQ018b_1c | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_tmp_rptg_complns_dtp3_1 | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_rptg_complns_dtp3_1 | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_tmp_DQ018b_1d | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_tmp_rptg_complns_hiv1 | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_rptg_complns_hiv1 | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_tmp_DQ018b_1e | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_tmp_rptg_complns_malaria1 | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_rptg_complns_malaria1 | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_tmp_DQ018b_1f | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_tmp_rptg_complns_pneumonia1 | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_rptg_complns_pneumonia1 | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_tmp_DQ018b_1g | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_tmp_rptg_complns_inpatient1 | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_rptg_complns_inpatient1 | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_tmp_DQ018b_1h | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_tmp_rptg_complns_tb1 | text | Yes | NULL | ||
| part1_dqa_indic_compl4a_rptg_complns_tb1 | text | Yes | NULL | ||
| part1_dqa_indic_compl5_DQ018b_2a | text | Yes | NULL | ||
| part1_dqa_indic_compl5_DQ018b_2b | text | Yes | NULL | ||
| part1_dqa_indic_compl5_DQ018b_2c | text | Yes | NULL | ||
| part1_dqa_indic_compl5_DQ018b_2d | text | Yes | NULL | ||
| part1_dqa_indic_compl5_DQ018b_2e | text | Yes | NULL | ||
| part1_dqa_indic_compl5_DQ018b_2f | text | Yes | NULL | ||
| part1_dqa_indic_compl5_DQ018b_2g | text | Yes | NULL | ||
| part1_dqa_indic_compl5_DQ018b_2h | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_tmp_DQ018b_2a | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_tmp_rptg_complns_birth_2 | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_rptg_complns_birth_2 | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_tmp_DQ018b_2b | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_tmp_rptg_complns_fp_2 | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_rptg_complns_fp_2 | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_tmp_DQ018b_2c | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_tmp_rptg_complns_dtp3_2 | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_rptg_complns_dtp3_2 | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_tmp_DQ018b_2d | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_tmp_rptg_complns_hiv2 | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_rptg_complns_hiv2 | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_tmp_DQ018b_2e | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_tmp_rptg_complns_malaria2 | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_rptg_complns_malaria2 | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_tmp_DQ018b_2f | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_tmp_rptg_complns_pneumonia2 | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_rptg_complns_pneumonia2 | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_tmp_DQ018b_2g | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_tmp_rptg_complns_inpatient2 | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_rptg_complns_inpatient2 | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_tmp_DQ018b_2h | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_tmp_rptg_complns_tb2 | text | Yes | NULL | ||
| part1_dqa_indic_compl5a_rptg_complns_tb2 | text | Yes | NULL | ||
| part1_dqa_indic_compl6_DQ018b_3a | text | Yes | NULL | ||
| part1_dqa_indic_compl6_DQ018b_3b | text | Yes | NULL | ||
| part1_dqa_indic_compl6_DQ018b_3c | text | Yes | NULL | ||
| part1_dqa_indic_compl6_DQ018b_3d | text | Yes | NULL | ||
| part1_dqa_indic_compl6_DQ018b_3e | text | Yes | NULL | ||
| part1_dqa_indic_compl6_DQ018b_3f | text | Yes | NULL | ||
| part1_dqa_indic_compl6_DQ018b_3g | text | Yes | NULL | ||
| part1_dqa_indic_compl6_DQ018b_3h | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_tmp_DQ018b_3a | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_tmp_rptg_complns_birth_3 | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_rptg_complns_birth_3 | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_tmp_DQ018b_3b | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_tmp_rptg_complns_fp_3 | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_rptg_complns_fp_3 | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_tmp_DQ018b_3c | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_tmp_rptg_complns_dtp3_3 | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_rptg_complns_dtp3_3 | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_tmp_DQ018b_3d | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_tmp_rptg_complns_hiv3 | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_rptg_complns_hiv3 | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_tmp_DQ018b_3e | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_tmp_rptg_complns_malaria3 | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_rptg_complns_malaria3 | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_tmp_DQ018b_3f | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_tmp_rptg_complns_pneumonia3 | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_rptg_complns_pneumonia3 | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_tmp_DQ018b_3g | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_tmp_rptg_complns_inpatient3 | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_rptg_complns_inpatient3 | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_tmp_DQ018b_3h | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_tmp_rptg_complns_tb3 | text | Yes | NULL | ||
| part1_dqa_indic_compl6a_rptg_complns_tb3 | text | Yes | NULL | ||
| part1_dqa_indic_compl7_DQ019_1a | text | Yes | NULL | ||
| part1_dqa_indic_compl7_DQ019_1b | text | Yes | NULL | ||
| part1_dqa_indic_compl7_DQ019_1c | text | Yes | NULL | ||
| part1_dqa_indic_compl7_DQ019_1d | text | Yes | NULL | ||
| part1_dqa_indic_compl7_DQ019_1e | text | Yes | NULL | ||
| part1_dqa_indic_compl7_DQ019_1f | text | Yes | NULL | ||
| part1_dqa_indic_compl7_DQ019_1g | text | Yes | NULL | ||
| part1_dqa_indic_compl7_DQ019_1h | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_tmp_dat_complns_birth_1 | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_dat_complns_birth_1 | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_tmp_dat_complns_birth_1wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_dat_complns_birth_1wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_tmp_dat_complns_fp_1 | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_dat_complns_fp_1 | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_tmp_dat_complns_fp_1wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_dat_complns_fp_1wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_tmp_dat_complns_dtp3_1 | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_dat_complns_dtp3_1 | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_tmp_dat_complns_dtp3_1wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_dat_complns_dtp3_1wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_tmp_dat_complns_hiv1 | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_dat_complns_hiv1 | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_tmp_dat_complns_hiv_1wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_dat_complns_hiv_1wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_tmp_dat_complns_malaria1 | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_dat_complns_malaria1 | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_tmp_dat_complns_malaria1wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_dat_complns_malaria1wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_tmp_dat_complns_pneumonia1 | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_dat_complns_pneumonia1 | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_tmp_dat_complns_pneumonia1wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_dat_complns_pneumonia1wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_tmp_dat_complns_inpatient1 | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_dat_complns_inpatient1 | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_tmp_dat_complns_inpatient1wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_dat_complns_inpatient1wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_tmp_dat_complns_tb1 | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_dat_complns_tb1 | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_tmp_dat_complns_tb1wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl7a_dat_complns_tb1wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl8_DQ019_2a | text | Yes | NULL | ||
| part1_dqa_indic_compl8_DQ019_2b | text | Yes | NULL | ||
| part1_dqa_indic_compl8_DQ019_2c | text | Yes | NULL | ||
| part1_dqa_indic_compl8_DQ019_2d | text | Yes | NULL | ||
| part1_dqa_indic_compl8_DQ019_2e | text | Yes | NULL | ||
| part1_dqa_indic_compl8_DQ019_2f | text | Yes | NULL | ||
| part1_dqa_indic_compl8_DQ019_2g | text | Yes | NULL | ||
| part1_dqa_indic_compl8_DQ019_2h | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_tmp_dat_complns_birth_2 | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_dat_complns_birth_2 | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_tmp_dat_complns_birth_2wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_dat_complns_birth_2wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_tmp_dat_complns_fp_2 | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_dat_complns_fp_2 | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_tmp_dat_complns_fp_2wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_dat_complns_fp_2wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_tmp_dat_complns_dtp3_2 | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_dat_complns_dtp3_2 | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_tmp_dat_complns_dtp3_2wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_dat_complns_dtp3_2wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_tmp_dat_complns_hiv2 | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_dat_complns_hiv2 | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_tmp_dat_complns_hiv_2wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_dat_complns_hiv_2wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_tmp_dat_complns_malaria2 | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_dat_complns_malaria2 | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_tmp_dat_complns_malaria2wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_dat_complns_malaria2wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_tmp_dat_complns_pneumonia2 | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_dat_complns_pneumonia2 | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_tmp_dat_complns_pneumonia2wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_dat_complns_pneumonia2wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_tmp_dat_complns_inpatient2 | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_dat_complns_inpatient2 | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_tmp_dat_complns_inpatient2wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_dat_complns_inpatient2wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_tmp_dat_complns_tb2 | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_dat_complns_tb2 | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_tmp_dat_complns_tb2wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl8a_dat_complns_tb2wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl9_DQ019_3a | text | Yes | NULL | ||
| part1_dqa_indic_compl9_DQ019_3b | text | Yes | NULL | ||
| part1_dqa_indic_compl9_DQ019_3c | text | Yes | NULL | ||
| part1_dqa_indic_compl9_DQ019_3d | text | Yes | NULL | ||
| part1_dqa_indic_compl9_DQ019_3e | text | Yes | NULL | ||
| part1_dqa_indic_compl9_DQ019_3f | text | Yes | NULL | ||
| part1_dqa_indic_compl9_DQ019_3g | text | Yes | NULL | ||
| part1_dqa_indic_compl9_DQ019_3h | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_tmp_dat_complns_birth_3 | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_dat_complns_birth_3 | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_tmp_dat_complns_birth_3wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_dat_complns_birth_3wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_tmp_dat_complns_fp_3 | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_dat_complns_fp_3 | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_tmp_dat_complns_fp_3wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_dat_complns_fp_3wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_tmp_dat_complns_dtp3_3 | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_dat_complns_dtp3_3 | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_tmp_dat_complns_dtp3_3wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_dat_complns_dtp3_3wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_tmp_dat_complns_hiv3 | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_dat_complns_hiv3 | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_tmp_dat_complns_hiv_3wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_dat_complns_hiv_3wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_tmp_dat_complns_malaria3 | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_dat_complns_malaria3 | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_tmp_dat_complns_malaria3wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_dat_complns_malaria3wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_tmp_dat_complns_pneumonia3 | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_dat_complns_pneumonia3 | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_tmp_dat_complns_pneumonia3wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_dat_complns_pneumonia3wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_tmp_dat_complns_inpatient3 | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_dat_complns_inpatient3 | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_tmp_dat_complns_inpatient3wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_dat_complns_inpatient3wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_tmp_dat_complns_tb3 | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_dat_complns_tb3 | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_tmp_dat_complns_tb3wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl9a_dat_complns_tb3wgt | text | Yes | NULL | ||
| part1_dqa_indic_compl10_DQ020 | text | Yes | NULL | ||
| part1_dqa_indic_compl10_DQ020o | text | Yes | NULL | ||
| part1_dqa_rpt_timelnss1_DQ021a | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss1_DQ021b | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss1_DQ022 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss2_DQ023_1a_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss2_DQ023_1a_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss2_DQ023_1a_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss3_DQ023_1b_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss3_DQ023_1b_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss3_DQ023_1b_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss4_DQ023_1c_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss4_DQ023_1c_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss4_DQ023_1c_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss4_DQ023_1c_qrtr | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss5_tmp_dq023_1a_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss5_tmp_dq023_1a_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss5_tmp_dq023_1a_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss5_tmp_rpt_sertimelns_hosp1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss5_rpt_sertimelns_hosp1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss5_tmp_rpt_ipdtimelns_hosp1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss5_rpt_ipdtimelns_hosp1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss5_tmp_rpt_opdtimelns_hosp1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss5_rpt_opdtimelns_hosp1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss6_tmp_dq023_1b_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss6_tmp_dq023_1b_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss6_tmp_dq023_1b_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss6_tmp_rpt_sertimelns_hosp2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss6_rpt_sertimelns_hosp2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss6_tmp_rpt_ipdtimelns_hosp2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss6_rpt_ipdtimelns_hosp2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss6_tmp_rpt_opdtimelns_hosp2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss6_rpt_opdtimelns_hosp2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss7_tmp_dq023_1c_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss7_tmp_dq023_1c_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss7_tmp_dq023_1c_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss7_tmp_dq023_1c_qrtr | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss7_tmp_rpt_sertimelns_hosp3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss7_rpt_sertimelns_hosp3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss7_tmp_rpt_ipdtimelns_hosp3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss7_rpt_ipdtimelns_hosp3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss7_tmp_rpt_opdtimelns_hosp3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss7_rpt_opdtimelns_hosp3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss7_tmp_rpt_qrtrtimelns_hosp3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss7_rpt_qrtrtimelns_hosp3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss8_DQ023_2a_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss8_DQ023_2a_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss8_DQ023_2a_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss9_DQ023_2b_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss9_DQ023_2b_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss9_DQ023_2b_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss10_DQ023_2c_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss10_DQ023_2c_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss10_DQ023_2c_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss10_DQ023_2c_qrtr | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss11_tmp_dq023_2a_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss11_tmp_dq023_2a_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss11_tmp_dq023_2a_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss11_tmp_rpt_sertimelns_hc1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss11_rpt_sertimelns_hc1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss11_tmp_rpt_ipdtimelns_hc1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss11_rpt_ipdtimelns_hc1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss11_tmp_rpt_opdtimelns_hc1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss11_rpt_opdtimelns_hc1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss12_tmp_dq023_2b_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss12_tmp_dq023_2b_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss12_tmp_dq023_2b_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss12_tmp_rpt_sertimelns_hc2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss12_rpt_sertimelns_hc2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss12_tmp_rpt_ipdtimelns_hc2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss12_rpt_ipdtimelns_hc2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss12_tmp_rpt_opdtimelns_hc2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss12_rpt_opdtimelns_hc2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss13_tmp_dq023_2c_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss13_tmp_dq023_2c_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss13_tmp_dq023_2c_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss13_tmp_dq023_2c_qrtr | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss13_tmp_rpt_sertimelns_hc3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss13_rpt_sertimelns_hc3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss13_tmp_rpt_ipdtimelns_hc3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss13_rpt_ipdtimelns_hc3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss13_tmp_rpt_opdtimelns_hc3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss13_rpt_opdtimelns_hc3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss13_tmp_rpt_qrtrtimelns_hc3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss13_rpt_qrtrtimelns_hc3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss14_DQ023_3a_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss14_DQ023_3a_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss15_DQ023_3b_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss15_DQ023_3b_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss16_DQ023_3c_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss16_DQ023_3c_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss16_DQ023_3c_qrtr | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss17_tmp_dq023_3a_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss17_tmp_dq023_3a_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss17_tmp_rpt_sertimelns_hp1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss17_rpt_sertimelns_hp1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss17_tmp_rpt_opdtimelns_hp1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss17_rpt_opdtimelns_hp1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss18_tmp_dq023_3b_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss18_tmp_dq023_3b_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss18_tmp_rpt_sertimelns_hp2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss18_rpt_sertimelns_hp2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss18_tmp_rpt_opdtimelns_hp2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss18_rpt_opdtimelns_hp2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss19_tmp_dq023_3c_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss19_tmp_dq023_3c_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss19_tmp_dq023_3c_qrtr | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss19_tmp_rpt_sertimelns_hp3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss19_rpt_sertimelns_hp3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss19_tmp_rpt_opdtimelns_hp3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss19_rpt_opdtimelns_hp3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss19_tmp_rpt_qrtrtimelns_hp3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss19_rpt_qrtrtimelns_hp3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss20_DQ023_4a_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss20_DQ023_4a_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss20_DQ023_4a_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss21_DQ023_4b_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss21_DQ023_4b_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss21_DQ023_4b_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss22_DQ023_4c_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss22_DQ023_4c_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss22_DQ023_4c_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss22_DQ023_4c_qrtr | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss23_tmp_dq023_4a_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss23_tmp_dq023_4a_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss23_tmp_dq023_4a_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss23_tmp_rpt_sertimelns_pc1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss23_rpt_sertimelns_pc1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss23_tmp_rpt_ipdtimelns_pc1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss23_rpt_ipdtimelns_pc1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss23_tmp_rpt_opdtimelns_pc1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss23_rpt_opdtimelns_pc1 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss24_tmp_dq023_4b_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss24_tmp_dq023_4b_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss24_tmp_dq023_4b_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss24_tmp_rpt_sertimelns_pc2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss24_rpt_sertimelns_pc2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss24_tmp_rpt_ipdtimelns_pc2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss24_rpt_ipdtimelns_pc2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss24_tmp_rpt_opdtimelns_pc2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss24_rpt_opdtimelns_pc2 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss25_tmp_dq023_4c_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss25_tmp_dq023_4c_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss25_tmp_dq023_4c_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss25_tmp_dq023_4c_qrtr | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss25_tmp_rpt_sertimelns_pc3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss25_rpt_sertimelns_pc3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss25_tmp_rpt_ipdtimelns_pc3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss25_rpt_ipdtimelns_pc3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss25_tmp_rpt_opdtimelns_pc3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss25_rpt_opdtimelns_pc3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss25_tmp_rpt_qrtrtimelns_pc3 | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss25_rpt_qrtrtimelns_pc3 | text | Yes | NULL | Date/time field | |
| part1_dqa_DQ024 | text | Yes | NULL | ||
| part1_dqa_rpt_timelnss26_DQ025a_label | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss26_DQ025a_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss26_DQ025a_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss26_DQ025a_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss27_DQ025b_label | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss27_DQ025b_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss27_DQ025b_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss27_DQ025b_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss28_DQ025c_label | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss28_DQ025c_ser | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss28_DQ025c_ipd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss28_DQ025c_opd | text | Yes | NULL | Date/time field | |
| part1_dqa_rpt_timelnss28_DQ025c_qrtr | text | Yes | NULL | Date/time field | |
| part1_dqa_dat_accy2_DQ026_1a | text | Yes | NULL | ||
| part1_dqa_dat_accy2_DQ026_1b | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_1a | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_1b | text | Yes | NULL | ||
| part1_dqa_tmp_birth1_vf1 | text | Yes | NULL | ||
| part1_dqa_birth1_vf1 | text | Yes | NULL | ||
| part1_dqa_tmp_birth1_vf1_diff | text | Yes | NULL | ||
| part1_dqa_birth1_vf1_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy3_DQ026_1c | text | Yes | NULL | ||
| part1_dqa_DQ026_1co | text | Yes | NULL | ||
| part1_dqa_dat_accy4_DQ026_2a | text | Yes | NULL | ||
| part1_dqa_dat_accy4_DQ026_2b | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_2a | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_2b | text | Yes | NULL | ||
| part1_dqa_tmp_fp_vf1 | text | Yes | NULL | ||
| part1_dqa_fp_vf1 | text | Yes | NULL | ||
| part1_dqa_tmp_fp_vf1_diff | text | Yes | NULL | ||
| part1_dqa_fp_vf1_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy5_DQ026_2c | text | Yes | NULL | ||
| part1_dqa_DQ026_2co | text | Yes | NULL | ||
| part1_dqa_dat_accy6_DQ026_3a | text | Yes | NULL | ||
| part1_dqa_dat_accy6_DQ026_3b | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_3a | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_3b | text | Yes | NULL | ||
| part1_dqa_tmp_dpt_vf1 | text | Yes | NULL | ||
| part1_dqa_dpt_vf1 | text | Yes | NULL | ||
| part1_dqa_tmp_dpt_vf1_diff | text | Yes | NULL | ||
| part1_dqa_dpt_vf1_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy7_DQ026_3c | text | Yes | NULL | ||
| part1_dqa_DQ026_3co | text | Yes | NULL | ||
| part1_dqa_dat_accy8_DQ026_4a | text | Yes | NULL | ||
| part1_dqa_dat_accy8_DQ026_4b | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_4a | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_4b | text | Yes | NULL | ||
| part1_dqa_tmp_hiv_vf1 | text | Yes | NULL | ||
| part1_dqa_hiv_vf1 | text | Yes | NULL | ||
| part1_dqa_tmp_hiv_vf1_diff | text | Yes | NULL | ||
| part1_dqa_hiv_vf1_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy9_DQ026_4c | text | Yes | NULL | ||
| part1_dqa_DQ026_4co | text | Yes | NULL | ||
| part1_dqa_dat_accy10_DQ026_5a | text | Yes | NULL | ||
| part1_dqa_dat_accy10_DQ026_5b | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_5a | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_5b | text | Yes | NULL | ||
| part1_dqa_tmp_malaria_vf1 | text | Yes | NULL | ||
| part1_dqa_malaria_vf1 | text | Yes | NULL | ||
| part1_dqa_tmp_malaria_vf1_diff | text | Yes | NULL | ||
| part1_dqa_malaria_vf1_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy11_DQ026_5c | text | Yes | NULL | ||
| part1_dqa_DQ026_5co | text | Yes | NULL | ||
| part1_dqa_dat_accy12_DQ026_6a | text | Yes | NULL | ||
| part1_dqa_dat_accy12_DQ026_6b | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_6a | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_6b | text | Yes | NULL | ||
| part1_dqa_tmp_pneumonia_vf1 | text | Yes | NULL | ||
| part1_dqa_pneumonia_vf1 | text | Yes | NULL | ||
| part1_dqa_tmp_pneumonia_vf1_diff | text | Yes | NULL | ||
| part1_dqa_pneumonia_vf1_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy13_DQ026_6c | text | Yes | NULL | ||
| part1_dqa_DQ026_6co | text | Yes | NULL | ||
| part1_dqa_dat_accy14_DQ026_7a | text | Yes | NULL | ||
| part1_dqa_dat_accy14_DQ026_7b | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_7a | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_7b | text | Yes | NULL | ||
| part1_dqa_tmp_inpatient_vf1 | text | Yes | NULL | ||
| part1_dqa_inpatient_vf1 | text | Yes | NULL | ||
| part1_dqa_tmp_inpatient_vf1_diff | text | Yes | NULL | ||
| part1_dqa_inpatient_vf1_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy15_DQ026_7c | text | Yes | NULL | ||
| part1_dqa_DQ026_7co | text | Yes | NULL | ||
| part1_dqa_dat_accy14_TB_DQ026_7a_TB | text | Yes | NULL | ||
| part1_dqa_dat_accy14_TB_DQ026_7b_TB | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_7a_TB | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_7b_TB | text | Yes | NULL | ||
| part1_dqa_tmp_inpatient_vf1_TB | text | Yes | NULL | ||
| part1_dqa_inpatient_vf1_TB | text | Yes | NULL | ||
| part1_dqa_tmp_inpatient_vf1_diff_TB | text | Yes | NULL | ||
| part1_dqa_inpatient_vf1_diff_TB | text | Yes | NULL | ||
| part1_dqa_dat_accy15_TB_DQ026_7c_TB | text | Yes | NULL | ||
| part1_dqa_DQ026_7co_TB | text | Yes | NULL | ||
| part1_dqa_dat_accy18_DQ027_1a | text | Yes | NULL | ||
| part1_dqa_dat_accy18_DQ027_1b | text | Yes | NULL | ||
| part1_dqa_tmp_dq027_1a | text | Yes | NULL | ||
| part1_dqa_tmp_dq027_1b | text | Yes | NULL | ||
| part1_dqa_tmp_birth_vf2 | text | Yes | NULL | ||
| part1_dqa_birth_vf2 | text | Yes | NULL | ||
| part1_dqa_tmp_birth_vf2_diff | text | Yes | NULL | ||
| part1_dqa_birth_vf2_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy19_DQ027_1c | text | Yes | NULL | ||
| part1_dqa_DQ027_1co | text | Yes | NULL | ||
| part1_dqa_dat_accy20_DQ027_2a | text | Yes | NULL | ||
| part1_dqa_dat_accy20_DQ027_2b | text | Yes | NULL | ||
| part1_dqa_tmp_dq027_2a | text | Yes | NULL | ||
| part1_dqa_tmp_dq027_2b | text | Yes | NULL | ||
| part1_dqa_tmp_fp_vf2 | text | Yes | NULL | ||
| part1_dqa_fp_vf2 | text | Yes | NULL | ||
| part1_dqa_tmp_fp_vf2_diff | text | Yes | NULL | ||
| part1_dqa_fp_vf2_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy21_DQ027_2c | text | Yes | NULL | ||
| part1_dqa_DQ027_2co | text | Yes | NULL | ||
| part1_dqa_dat_accy22_DQ027_3a | text | Yes | NULL | ||
| part1_dqa_dat_accy22_DQ027_3b | text | Yes | NULL | ||
| part1_dqa_tmp_dq027_3a | text | Yes | NULL | ||
| part1_dqa_tmp_dq027_3b | text | Yes | NULL | ||
| part1_dqa_tmp_dpt_vf2 | text | Yes | NULL | ||
| part1_dqa_dpt_vf2 | text | Yes | NULL | ||
| part1_dqa_tmp_dpt_vf2_diff | text | Yes | NULL | ||
| part1_dqa_dpt_vf2_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy23_DQ027_3c | text | Yes | NULL | ||
| part1_dqa_DQ027_3co | text | Yes | NULL | ||
| part1_dqa_dat_accy24_DQ027_4a | text | Yes | NULL | ||
| part1_dqa_dat_accy24_DQ027_4b | text | Yes | NULL | ||
| part1_dqa_tmp_dq027_4a | text | Yes | NULL | ||
| part1_dqa_tmp_dq027_4b | text | Yes | NULL | ||
| part1_dqa_tmp_hiv_vf2 | text | Yes | NULL | ||
| part1_dqa_hiv_vf2 | text | Yes | NULL | ||
| part1_dqa_tmp_hiv_vf2_diff | text | Yes | NULL | ||
| part1_dqa_hiv_vf2_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy25_DQ027_4c | text | Yes | NULL | ||
| part1_dqa_DQ027_4co | text | Yes | NULL | ||
| part1_dqa_dat_accy26_DQ027_5a | text | Yes | NULL | ||
| part1_dqa_dat_accy26_DQ027_5b | text | Yes | NULL | ||
| part1_dqa_tmp_dq027_5a | text | Yes | NULL | ||
| part1_dqa_tmp_dq027_5b | text | Yes | NULL | ||
| part1_dqa_tmp_malaria_vf2 | text | Yes | NULL | ||
| part1_dqa_malaria_vf2 | text | Yes | NULL | ||
| part1_dqa_tmp_malaria_vf2_diff | text | Yes | NULL | ||
| part1_dqa_malaria_vf2_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy27_DQ027_5c | text | Yes | NULL | ||
| part1_dqa_DQ027_5co | text | Yes | NULL | ||
| part1_dqa_dat_accy28_DQ027_6a | text | Yes | NULL | ||
| part1_dqa_dat_accy28_DQ027_6b | text | Yes | NULL | ||
| part1_dqa_tmp_dq027_6a | text | Yes | NULL | ||
| part1_dqa_tmp_dq027_6b | text | Yes | NULL | ||
| part1_dqa_tmp_pneumonia_vf2 | text | Yes | NULL | ||
| part1_dqa_pneumonia_vf2 | text | Yes | NULL | ||
| part1_dqa_tmp_pneumonia_vf2_diff | text | Yes | NULL | ||
| part1_dqa_pneumonia_vf2_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy29_DQ027_6c | text | Yes | NULL | ||
| part1_dqa_DQ027_6co | text | Yes | NULL | ||
| part1_dqa_dat_accy30_DQ027_7a | text | Yes | NULL | ||
| part1_dqa_dat_accy30_DQ027_7b | text | Yes | NULL | ||
| part1_dqa_tmp_dq027_7a | text | Yes | NULL | ||
| part1_dqa_tmp_dq027_7b | text | Yes | NULL | ||
| part1_dqa_tmp_inpatient_vf2 | text | Yes | NULL | ||
| part1_dqa_inpatient_vf2 | text | Yes | NULL | ||
| part1_dqa_tmp_inpatient_vf2_diff | text | Yes | NULL | ||
| part1_dqa_inpatient_vf2_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy31_DQ027_7c | text | Yes | NULL | ||
| part1_dqa_DQ027_7co | text | Yes | NULL | ||
| part1_dqa_dat_accy14_TB2_DQ026_7a_TB2 | text | Yes | NULL | ||
| part1_dqa_dat_accy14_TB2_DQ026_7b_TB2 | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_7a_TB2 | text | Yes | NULL | ||
| part1_dqa_tmp_dq026_7b_TB2 | text | Yes | NULL | ||
| part1_dqa_tmp_inpatient_vf1_TB2 | text | Yes | NULL | ||
| part1_dqa_inpatient_vf1_TB2 | text | Yes | NULL | ||
| part1_dqa_tmp_inpatient_vf1_diff_TB2 | text | Yes | NULL | ||
| part1_dqa_inpatient_vf1_diff_TB2 | text | Yes | NULL | ||
| part1_dqa_dat_accy15_TB2_DQ026_7c_TB2 | text | Yes | NULL | ||
| part1_dqa_DQ026_7co_TB2 | text | Yes | NULL | ||
| part1_dqa_dat_accy34_DQ028_1a | text | Yes | NULL | ||
| part1_dqa_dat_accy34_DQ028_1b | text | Yes | NULL | ||
| part1_dqa_tmp_dq028_1a | text | Yes | NULL | ||
| part1_dqa_tmp_dq028_1b | text | Yes | NULL | ||
| part1_dqa_tmp_birth_vf3 | text | Yes | NULL | ||
| part1_dqa_birth_vf3 | text | Yes | NULL | ||
| part1_dqa_tmp_birth_vf3_diff | text | Yes | NULL | ||
| part1_dqa_birth_vf3_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy35_DQ028_1c | text | Yes | NULL | ||
| part1_dqa_DQ028_1co | text | Yes | NULL | ||
| part1_dqa_dat_accy36_DQ028_2a | text | Yes | NULL | ||
| part1_dqa_dat_accy36_DQ028_2b | text | Yes | NULL | ||
| part1_dqa_tmp_dq028_2a | text | Yes | NULL | ||
| part1_dqa_tmp_dq028_2b | text | Yes | NULL | ||
| part1_dqa_tmp_fp_vf3 | text | Yes | NULL | ||
| part1_dqa_fp_vf3 | text | Yes | NULL | ||
| part1_dqa_tmp_fp_vf3_diff | text | Yes | NULL | ||
| part1_dqa_fp_vf3_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy37_DQ028_2c | text | Yes | NULL | ||
| part1_dqa_DQ028_2co | text | Yes | NULL | ||
| part1_dqa_dat_accy38_DQ028_3a | text | Yes | NULL | ||
| part1_dqa_dat_accy38_DQ028_3b | text | Yes | NULL | ||
| part1_dqa_tmp_dq028_3a | text | Yes | NULL | ||
| part1_dqa_tmp_dq028_3b | text | Yes | NULL | ||
| part1_dqa_tmp_dpt_vf3 | text | Yes | NULL | ||
| part1_dqa_dpt_vf3 | text | Yes | NULL | ||
| part1_dqa_tmp_dpt_vf3_diff | text | Yes | NULL | ||
| part1_dqa_dpt_vf3_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy39_DQ028_3c | text | Yes | NULL | ||
| part1_dqa_DQ028_3co | text | Yes | NULL | ||
| part1_dqa_dat_accy40_DQ028_4a | text | Yes | NULL | ||
| part1_dqa_dat_accy40_DQ028_4b | text | Yes | NULL | ||
| part1_dqa_tmp_dq028_4a | text | Yes | NULL | ||
| part1_dqa_tmp_dq028_4b | text | Yes | NULL | ||
| part1_dqa_tmp_hiv_vf3 | text | Yes | NULL | ||
| part1_dqa_hiv_vf3 | text | Yes | NULL | ||
| part1_dqa_tmp_hiv_vf3_diff | text | Yes | NULL | ||
| part1_dqa_hiv_vf3_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy41_DQ028_4c | text | Yes | NULL | ||
| part1_dqa_DQ028_4co | text | Yes | NULL | ||
| part1_dqa_dat_accy42_DQ028_5a | text | Yes | NULL | ||
| part1_dqa_dat_accy42_DQ028_5b | text | Yes | NULL | ||
| part1_dqa_tmp_dq028_5a | text | Yes | NULL | ||
| part1_dqa_tmp_dq028_5b | text | Yes | NULL | ||
| part1_dqa_tmp_malaria_vf3 | text | Yes | NULL | ||
| part1_dqa_malaria_vf3 | text | Yes | NULL | ||
| part1_dqa_tmp_malaria_vf3_diff | text | Yes | NULL | ||
| part1_dqa_malaria_vf3_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy43_DQ028_5c | text | Yes | NULL | ||
| part1_dqa_DQ028_5co | text | Yes | NULL | ||
| part1_dqa_dat_accy44_DQ028_6a | text | Yes | NULL | ||
| part1_dqa_dat_accy44_DQ028_6b | text | Yes | NULL | ||
| part1_dqa_tmp_dq028_6a | text | Yes | NULL | ||
| part1_dqa_tmp_dq028_6b | text | Yes | NULL | ||
| part1_dqa_tmp_pneumonia_vf3 | text | Yes | NULL | ||
| part1_dqa_pneumonia_vf3 | text | Yes | NULL | ||
| part1_dqa_tmp_pneumonia_vf3_diff | text | Yes | NULL | ||
| part1_dqa_pneumonia_vf3_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy45_DQ028_6c | text | Yes | NULL | ||
| part1_dqa_DQ028_6co | text | Yes | NULL | ||
| part1_dqa_dat_accy46_DQ028_7a | text | Yes | NULL | ||
| part1_dqa_dat_accy46_DQ028_7b | text | Yes | NULL | ||
| part1_dqa_tmp_dq028_7a | text | Yes | NULL | ||
| part1_dqa_tmp_dq028_7b | text | Yes | NULL | ||
| part1_dqa_tmp_inpatient_vf3 | text | Yes | NULL | ||
| part1_dqa_inpatient_vf3 | text | Yes | NULL | ||
| part1_dqa_tmp_inpatient_vf3_diff | text | Yes | NULL | ||
| part1_dqa_inpatient_vf3_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy47_DQ028_7c | text | Yes | NULL | ||
| part1_dqa_DQ028_7co | text | Yes | NULL | ||
| part1_dqa_dat_accy48_DQ028_8a | text | Yes | NULL | ||
| part1_dqa_dat_accy48_DQ028_8b | text | Yes | NULL | ||
| part1_dqa_tmp_dq028_8a | text | Yes | NULL | ||
| part1_dqa_tmp_dq028_8b | text | Yes | NULL | ||
| part1_dqa_tmp_tb_vf3 | text | Yes | NULL | ||
| part1_dqa_tb_vf3 | text | Yes | NULL | ||
| part1_dqa_tmp_tb_vf3_diff | text | Yes | NULL | ||
| part1_dqa_tb_vf3_diff | text | Yes | NULL | ||
| part1_dqa_dat_accy49_DQ028_8c | text | Yes | NULL | ||
| part1_dqa_DQ028_8co | text | Yes | NULL | ||
| part1_dqa_dat_accy50_dq029_1a | text | Yes | NULL | ||
| part1_dqa_dat_accy50_dq029_1b | text | Yes | NULL | ||
| part1_dqa_dat_accy50_dq029_1c | text | Yes | NULL | ||
| part1_dqa_dat_accy50_dq029_1d | text | Yes | NULL | ||
| part1_dqa_dat_accy51_dq029_1e | text | Yes | NULL | ||
| part1_dqa_dat_accy51_dq029_1f | text | Yes | NULL | ||
| part1_dqa_dat_accy51_dq029_1g | text | Yes | NULL | ||
| part1_dqa_dat_accy51_dq029_1h | text | Yes | NULL | ||
| part1_dqa_dat_accy52_dq029_2a | text | Yes | NULL | ||
| part1_dqa_dat_accy52_dq029_2b | text | Yes | NULL | ||
| part1_dqa_dat_accy52_dq029_2c | text | Yes | NULL | ||
| part1_dqa_dat_accy52_dq029_2d | text | Yes | NULL | ||
| part1_dqa_dat_accy53_dq029_2e | text | Yes | NULL | ||
| part1_dqa_dat_accy53_dq029_2f | text | Yes | NULL | ||
| part1_dqa_dat_accy53_dq029_2g | text | Yes | NULL | ||
| part1_dqa_dat_accy53_dq029_2h | text | Yes | NULL | ||
| part1_dqa_dat_accy54_dq029_3a | text | Yes | NULL | ||
| part1_dqa_dat_accy54_dq029_3b | text | Yes | NULL | ||
| part1_dqa_dat_accy54_dq029_3c | text | Yes | NULL | ||
| part1_dqa_dat_accy54_dq029_3d | text | Yes | NULL | ||
| part1_dqa_dat_accy55_dq029_3e | text | Yes | NULL | ||
| part1_dqa_dat_accy55_dq029_3f | text | Yes | NULL | ||
| part1_dqa_dat_accy55_dq029_3g | text | Yes | NULL | ||
| part1_dqa_dat_accy55_dq029_3h | text | Yes | NULL | ||
| part1_dqa_DQ030 | text | Yes | NULL | ||
| part1_dqa_dq030_rcd | text | Yes | NULL | ||
| part1_dqa_dqa_mech2_DQ031 | text | Yes | NULL | ||
| part1_dqa_dqa_mech2_DQ032 | text | Yes | NULL | ||
| part1_dqa_DQ033 | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls1_DQ034 | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls2_dq035a_label | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls2_DQ035_1a | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls2_DQ035_1b | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls2_DQ035_2a | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls2_DQ035_2b | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls3_dq035b_label | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls3_DQ035_3a | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls3_DQ035_3b | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls3_DQ035_4a | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls3_DQ035_4b | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls4_dq035c_label | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls4_DQ035_5a | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls4_DQ035_5b | text | Yes | NULL | ||
| part1_dqa_DQ035_5a_other | text | Yes | NULL | ||
| part1_dqa_DQ035_5b_other | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls7_DQ036a | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls7_DQ036b | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls8_DQ036c | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls8_DQ036d | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls8_DQ036e | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls9_DQ036f | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls9_DQ036g | text | Yes | NULL | ||
| part1_dqa_dat_proc_anls9_DQ036h | text | Yes | NULL | ||
| part2_iu_datviz1_DU003 | text | Yes | NULL | ||
| part2_iu_datviz2_du004_label | text | Yes | NULL | ||
| part2_iu_datviz2_DU004a | text | Yes | NULL | ||
| part2_iu_datviz2_DU004b | text | Yes | NULL | ||
| part2_iu_datviz2_DU004c | text | Yes | NULL | ||
| part2_iu_datviz2_DU004d | text | Yes | NULL | ||
| part2_iu_datviz3_du004_label_2 | text | Yes | NULL | ||
| part2_iu_datviz3_DU004e | text | Yes | NULL | ||
| part2_iu_datviz3_DU004e2 | text | Yes | NULL | ||
| part2_iu_datviz3_DU004f | text | Yes | NULL | ||
| part2_iu_datviz3_DU004g | text | Yes | NULL | ||
| part2_iu_datviz3_DU004h | text | Yes | NULL | ||
| part2_iu_datviz4_du004_label_3 | text | Yes | NULL | ||
| part2_iu_datviz4_DU004i | text | Yes | NULL | ||
| part2_iu_datviz4_DU004j | text | Yes | NULL | ||
| part2_iu_datviz4_DU004k | text | Yes | NULL | ||
| part2_iu_datviz4_DU004l | text | Yes | NULL | ||
| part2_iu_datviz5_du004_label_4 | text | Yes | NULL | ||
| part2_iu_datviz5_DU004m | text | Yes | NULL | ||
| part2_iu_datviz5_DU004n | text | Yes | NULL | ||
| part2_iu_datviz6_du004_label_5 | text | Yes | NULL | ||
| part2_iu_datviz6_DU004o | text | Yes | NULL | ||
| part2_iu_datviz6_DU004p | text | Yes | NULL | ||
| part2_iu_datviz6_DU004q | text | Yes | NULL | ||
| part2_iu_datviz6_DU004r | text | Yes | NULL | ||
| part2_iu_datviz7_DU004a_label_1 | text | Yes | NULL | ||
| part2_iu_datviz7_DU004a_1 | text | Yes | NULL | ||
| part2_iu_datviz7_DU004b_1 | text | Yes | NULL | ||
| part2_iu_datviz7_DU004c_1 | text | Yes | NULL | ||
| part2_iu_datviz7_DU004d_1 | text | Yes | NULL | ||
| part2_iu_datviz8_DU004a_label_2 | text | Yes | NULL | ||
| part2_iu_datviz8_DU004e_1 | text | Yes | NULL | ||
| part2_iu_datviz8_DU004e2_1 | text | Yes | NULL | ||
| part2_iu_datviz8_DU004f_1 | text | Yes | NULL | ||
| part2_iu_datviz8_DU004g_1 | text | Yes | NULL | ||
| part2_iu_datviz8_DU004h_1 | text | Yes | NULL | ||
| part2_iu_datviz9_DU004a_label_3 | text | Yes | NULL | ||
| part2_iu_datviz9_DU004i_1 | text | Yes | NULL | ||
| part2_iu_datviz9_DU004j_1 | text | Yes | NULL | ||
| part2_iu_datviz9_DU004k_1 | text | Yes | NULL | ||
| part2_iu_datviz9_DU004l_1 | text | Yes | NULL | ||
| part2_iu_datviz10_DU004a_label_4 | text | Yes | NULL | ||
| part2_iu_datviz10_DU004m_1 | text | Yes | NULL | ||
| part2_iu_datviz10_DU004n_1 | text | Yes | NULL | ||
| part2_iu_datviz10_DU004o_1 | text | Yes | NULL | ||
| part2_iu_datviz10_DU004p_1 | text | Yes | NULL | ||
| part2_iu_datviz10_DU004q_1 | text | Yes | NULL | ||
| part2_iu_datviz10_DU004r_1 | text | Yes | NULL | ||
| part2_iu_rhis_rpt1_DU005 | text | Yes | NULL | ||
| part2_iu_rhis_rpt1_DU006 | text | Yes | NULL | ||
| SET_OF_part2_iu_rhis_rpt2 | text | Yes | NULL | ||
| part2_iu_rhis_rpt3_du008_label | text | Yes | NULL | ||
| part2_iu_rhis_rpt3_DU008_01 | text | Yes | NULL | ||
| part2_iu_rhis_rpt3_DU008_02 | text | Yes | NULL | ||
| part2_iu_rhis_rpt3_DU008_03 | text | Yes | NULL | ||
| part2_iu_rhis_rpt4_du008_label_1 | text | Yes | NULL | ||
| part2_iu_rhis_rpt4_DU008_04 | text | Yes | NULL | ||
| part2_iu_rhis_rpt4_DU008_05 | text | Yes | NULL | ||
| part2_iu_rhis_rpt4_DU008_06 | text | Yes | NULL | ||
| part2_iu_rhis_rpt4_DU008_07 | text | Yes | NULL | ||
| part2_iu_facil_fb1_DU009 | text | Yes | NULL | ||
| part2_iu_facil_fb2_DU010a | text | Yes | NULL | ||
| part2_iu_facil_fb2_DU010b | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_DU011 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg2_DU012 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg2_DU013 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg2_DU014 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg3_DU015_1 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg3_DU015_2 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg3_DU015_3 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg4_DU016 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg4_DU017 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg4_DU017o | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg5_DU018_1 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg5_DU018_2 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg5_DU018_3 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_DU019 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_DU019o | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg6_DU020a | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg6_DU020b | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg7_DU020c | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg7_DU020d | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg7_DU020e | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8a_DU021_label | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8a_DU021_1 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8a_DU021_2 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8a_DU021_3 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8b_DU021_label1 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8b_DU021_4 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8b_DU021_5 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8b_DU021_6 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8b_DU021_7 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_DU021a | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_DU021b | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions1_DU021c_l | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions1_DU021c_1 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions1_DU021c_2 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions1_DU021c_3 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions1_DU021c_4 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions1_DU021c_5 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions2_DU021c_l | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions2_DU021c_6 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions2_DU021c_7 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions2_DU021c_8 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions2_DU021c_9 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions2_DU021c_1 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_rtn_dcsn_mkg9b_DU021d | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_rtn_dcsn_mkg9b_DU021e | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_rtn_dcsn_mkg9b_DU021f | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_DU021g | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_DU021h | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_DU021i | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_DU021io | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_DU022 | text | Yes | NULL | ||
| part2_iu_rtn_dcsn_mkg1_011_DU022_1 | text | Yes | NULL | ||
| part2_iu_annl_plng1_DU023 | text | Yes | NULL | ||
| part2_iu_annl_plng1_DU024 | text | Yes | NULL | ||
| part2_iu_annl_plng2_DU025 | text | Yes | NULL | ||
| part2_iu_annl_plng2_DU026 | text | Yes | NULL | ||
| part2_iu_supervision_hg1_DU028 | text | Yes | NULL | ||
| part2_iu_supervision_hg1_supervision_hg2_DU029 | text | Yes | NULL | ||
| part2_iu_supervision_hg1_supervision_hg2_DU030 | text | Yes | NULL | ||
| part2_iu_supervision_hg1_supervision_hg2_DU031 | text | Yes | NULL | ||
| part2_iu_supervision_hg1_supervision_hg3_DU032 | text | Yes | NULL | ||
| part2_iu_supervision_hg1_supervision_hg3_DU033 | text | Yes | NULL | ||
| part2_iu_supervision_hg1_supervision_hg4_DU034a | text | Yes | NULL | ||
| part2_iu_supervision_hg1_supervision_hg4_DU034b | text | Yes | NULL | ||
| part2_iu_supervision_hg1_supervision_hg4_DU035 | text | Yes | NULL | ||
| part2_iu_dat_dissem1_DU036 | text | Yes | NULL | ||
| part2_iu_dat_dissem1_DU037 | text | Yes | NULL | ||
| part2_iu_dat_dissem2_DU038 | text | Yes | NULL | ||
| part2_iu_dat_dissem2_DU039 | text | Yes | NULL | ||
| part2_iu_dat_dissem3_DU040 | text | Yes | NULL | ||
| part2_iu_dat_dissem3_DU041 | text | Yes | NULL | ||
| gps_DQ_110_Latitude | text | Yes | NULL | ||
| gps_DQ_110_Longitude | text | Yes | NULL | ||
| gps_DQ_110_Altitude | text | Yes | NULL | ||
| gps_DQ_110_Accuracy | text | Yes | NULL | ||
| meta_instanceID | text | Yes | NULL | ||
| meta_instanceName | text | Yes | NULL | Name or title field | |
| formdef_version | text | Yes | NULL | ||
| review_quality | text | Yes | NULL | ||
| KEY | text | Yes | NULL |
This table has no foreign key relationships.
| SubmissionDate | starttime | endtime | deviceid | subscriberid | simid | devicephonenum | username | duration | caseid | DQ104 | intvwr_vst_DQ101 | intvwr_vst_DQ102 | intvwr_vst_DQ102_Other | distr_unit_id_DQ105 | distr_unit_id_DQ106 | distr_unit_id_DQ106_Other | distr_unit_id_DQ108 | siteid | gen_info_DQ109 | part1_dqa_revw_mos_Month1 | part1_dqa_revw_mos_month1_fmt | part1_dqa_revw_mos_Month2 | part1_dqa_revw_mos_month2_fmt | part1_dqa_revw_mos_Month3 | part1_dqa_revw_mos_month3_fmt | part1_dqa_resrcs1_DQ010 | part1_dqa_resrcs1_DQ011 | part1_dqa_dq011_rcd | part1_dqa_resrcs2_DQ012a | part1_dqa_resrcs2_DQ012b | part1_dqa_resrcs3_DQ013a | part1_dqa_resrcs3_DQ013b | part1_dqa_dq013b_rcd | part1_dqa_rptg_compl1_DQ014a | part1_dqa_rptg_compl1_DQ014b | part1_dqa_rptg_compl2_DQ015_1a_ser | part1_dqa_rptg_compl2_DQ015_1a_ipd | part1_dqa_rptg_compl2_DQ015_1a_opd | part1_dqa_rptg_compl2_DQ015_1a_qrtr | part1_dqa_rptg_compl3_DQ015_1b_ser | part1_dqa_rptg_compl3_DQ015_1b_ipd | part1_dqa_rptg_compl3_DQ015_1b_opd | part1_dqa_rptg_compl3_DQ015_1b_qrtr | part1_dqa_rptg_compl4_DQ015_1c_ser | part1_dqa_rptg_compl4_DQ015_1c_ipd | part1_dqa_rptg_compl4_DQ015_1c_opd | part1_dqa_rptg_compl4_DQ015_1c_qrtr | part1_dqa_primary_Hosp | part1_dqa_dq_calc_1_dq015_1tot_ser | part1_dqa_dq_calc_1_dq015_1tot_ipd | part1_dqa_dq_calc_1_dq015_1tot_opd | part1_dqa_dq_calc_1_dq015_1tot_qrtr | part1_dqa_dq_calc_1_dq015_1_tot | part1_dqa_rptg_compl5_DQ015_2a_ser | part1_dqa_rptg_compl5_DQ015_2a_ipd | part1_dqa_rptg_compl5_DQ015_2a_opd | part1_dqa_rptg_compl5_DQ015_2a_qrtr | part1_dqa_rptg_compl6_DQ015_2b_ser | part1_dqa_rptg_compl6_DQ015_2b_ipd | part1_dqa_rptg_compl6_DQ015_2b_opd | part1_dqa_rptg_compl6_DQ015_2b_qrtr | part1_dqa_rptg_compl7_DQ015_2c_ser | part1_dqa_rptg_compl7_DQ015_2c_ipd | part1_dqa_rptg_compl7_DQ015_2c_opd | part1_dqa_rptg_compl7_DQ015_2c_qrtr | part1_dqa_dq_calc_2_dq015_2tot_ser | part1_dqa_dq_calc_2_dq015_2tot_ipd | part1_dqa_dq_calc_2_dq015_2tot_opd | part1_dqa_dq_calc_2_dq015_2tot_qrtr | part1_dqa_dq_calc_2_dq015_2_tot | part1_dqa_rptg_compl8_DQ015_3a_ser | part1_dqa_rptg_compl8_DQ015_3a_opd | part1_dqa_rptg_compl8_DQ015_3a_qrtr | part1_dqa_rptg_compl9_DQ015_3b_ser | part1_dqa_rptg_compl9_DQ015_3b_opd | part1_dqa_rptg_compl9_DQ015_3b_qrtr | part1_dqa_rptg_compl10_DQ015_3c_ser | part1_dqa_rptg_compl10_DQ015_3c_opd | part1_dqa_rptg_compl10_DQ015_3c_qrtr | part1_dqa_dq_calc_3_dq015_3tot_ser | part1_dqa_dq_calc_3_dq015_3tot_opd | part1_dqa_dq_calc_3_dq015_3tot_qrtr | part1_dqa_dq_calc_3_dq015_3_tot | part1_dqa_rptg_compl11_DQ015_4a_ser | part1_dqa_rptg_compl11_DQ015_4a_ipd | part1_dqa_rptg_compl11_DQ015_4a_opd | part1_dqa_rptg_compl11_DQ015_4a_qrtr | part1_dqa_rptg_compl12_DQ015_4b_ser | part1_dqa_rptg_compl12_DQ015_4b_ipd | part1_dqa_rptg_compl12_DQ015_4b_opd | part1_dqa_rptg_compl12_DQ015_4b_qrtr | part1_dqa_rptg_compl13_DQ015_4c_ser | part1_dqa_rptg_compl13_DQ015_4c_ipd | part1_dqa_rptg_compl13_DQ015_4c_opd | part1_dqa_rptg_compl13_DQ015_4c_qrtr | part1_dqa_rptg_compl14_dq015_4tot_ser | part1_dqa_rptg_compl14_dq015_4tot_ipd | part1_dqa_rptg_compl14_dq015_4tot_opd | part1_dqa_rptg_compl14_dq015_4tot_qrtr | part1_dqa_rptg_compl14_dq015_4_tot | part1_dqa_dq015_tot_ser | part1_dqa_dq015_tot_ipd | part1_dqa_dq015_tot_opd | part1_dqa_dq015_tot_qrtr | part1_dqa_dq015_tot | part1_dqa_rptg_compl_act1_DQ016_A1a_ser | part1_dqa_rptg_compl_act1_DQ016_A1a_ipd | part1_dqa_rptg_compl_act1_DQ016_A1a_opd | part1_dqa_rptg_compl_act2_DQ016_A1b_ser | part1_dqa_rptg_compl_act2_DQ016_A1b_ipd | part1_dqa_rptg_compl_act2_DQ016_A1b_opd | part1_dqa_rptg_compl_act3_DQ016_A1c_ser | part1_dqa_rptg_compl_act3_DQ016_A1c_ipd | part1_dqa_rptg_compl_act3_DQ016_A1c_opd | part1_dqa_rptg_compl_hospA_tmp_dq016a1a_ser | part1_dqa_rptg_compl_hospA_tmp_dq016a1a_ipd | part1_dqa_rptg_compl_hospA_tmp_dq016a1a_opd | part1_dqa_rptg_compl_hospA_tmp_dq016a1b_ser | part1_dqa_rptg_compl_hospA_tmp_dq016a1b_ipd | part1_dqa_rptg_compl_hospA_tmp_dq016a1b_opd | part1_dqa_rptg_compl_hospA_tmp_dq016a1c_ser | part1_dqa_rptg_compl_hospA_tmp_dq016a1c_ipd | part1_dqa_rptg_compl_hospA_tmp_dq016a1c_opd | part1_dqa_rptg_compl_hospA_dq016a1_tot_ser | part1_dqa_rptg_compl_hospA_dq016a1_tot_ipd | part1_dqa_rptg_compl_hospA_dq016a1_tot_opd | part1_dqa_rptg_compl_hospA_tmp_rptg_ser_complns_hosp1 | part1_dqa_rptg_compl_hospA_rptg_ser_complns_hosp1 | part1_dqa_rptg_compl_hospA_tmp_rptg_ipd_complns_hosp1 | part1_dqa_rptg_compl_hospA_rptg_ipd_complns_hosp1 | part1_dqa_rptg_compl_hospA_tmp_rptg_opd_complns_hosp1 | part1_dqa_rptg_compl_hospA_rptg_opd_complns_hosp1 | part1_dqa_rptg_compl_act4_DQ016_A2a_ser | part1_dqa_rptg_compl_act4_DQ016_A2a_ipd | part1_dqa_rptg_compl_act4_DQ016_A2a_opd | part1_dqa_rptg_compl_act5_DQ016_A2b_ser | part1_dqa_rptg_compl_act5_DQ016_A2b_ipd | part1_dqa_rptg_compl_act5_DQ016_A2b_opd | part1_dqa_rptg_compl_act6_DQ016_A2c_ser | part1_dqa_rptg_compl_act6_DQ016_A2c_ipd | part1_dqa_rptg_compl_act6_DQ016_A2c_opd | part1_dqa_rptg_compl_hcA_tmp_dq016a2a_ser | part1_dqa_rptg_compl_hcA_tmp_dq016a2a_ipd | part1_dqa_rptg_compl_hcA_tmp_dq016a2a_opd | part1_dqa_rptg_compl_hcA_tmp_dq016a2b_ser | part1_dqa_rptg_compl_hcA_tmp_dq016a2b_ipd | part1_dqa_rptg_compl_hcA_tmp_dq016a2b_opd | part1_dqa_rptg_compl_hcA_tmp_dq016a2c_ser | part1_dqa_rptg_compl_hcA_tmp_dq016a2c_ipd | part1_dqa_rptg_compl_hcA_tmp_dq016a2c_opd | part1_dqa_rptg_compl_hcA_dq016a2_tot_ser | part1_dqa_rptg_compl_hcA_dq016a2_tot_ipd | part1_dqa_rptg_compl_hcA_dq016a2_tot_opd | part1_dqa_rptg_compl_hcA_tmp_rptg_ser_complns_hc1 | part1_dqa_rptg_compl_hcA_rptg_ser_complns_hc1 | part1_dqa_rptg_compl_hcA_tmp_rptg_ipd_complns_hc1 | part1_dqa_rptg_compl_hcA_rptg_ipd_complns_hc1 | part1_dqa_rptg_compl_hcA_tmp_rptg_opd_complns_hc1 | part1_dqa_rptg_compl_hcA_rptg_opd_complns_hc1 | part1_dqa_rptg_compl_act7_DQ016_A3a_ser | part1_dqa_rptg_compl_act7_DQ016_A3a_opd | part1_dqa_rptg_compl_act8_DQ016_A3b_ser | part1_dqa_rptg_compl_act8_DQ016_A3b_opd | part1_dqa_rptg_compl_act9_DQ016_A3c_ser | part1_dqa_rptg_compl_act9_DQ016_A3c_opd | part1_dqa_rptg_compl_hpA_tmp_dq016a3a_ser | part1_dqa_rptg_compl_hpA_tmp_dq016a3a_opd | part1_dqa_rptg_compl_hpA_tmp_dq016a3b_ser | part1_dqa_rptg_compl_hpA_tmp_dq016a3b_opd | part1_dqa_rptg_compl_hpA_tmp_dq016a3c_ser | part1_dqa_rptg_compl_hpA_tmp_dq016a3c_opd | part1_dqa_rptg_compl_hpA_dq016a3_tot_ser | part1_dqa_rptg_compl_hpA_dq016a3_tot_opd | part1_dqa_rptg_compl_hpA_tmp_rptg_ser_complns_hp1 | part1_dqa_rptg_compl_hpA_rptg_ser_complns_hp1 | part1_dqa_rptg_compl_hpA_tmp_rptg_opd_complns_hp1 | part1_dqa_rptg_compl_hpA_rptg_opd_complns_hp1 | part1_dqa_rptg_compl_act10_DQ016_A4a_ser | part1_dqa_rptg_compl_act10_DQ016_A4a_ipd | part1_dqa_rptg_compl_act10_DQ016_A4a_opd | part1_dqa_rptg_compl_act11_DQ016_A4b_ser | part1_dqa_rptg_compl_act11_DQ016_A4b_ipd | part1_dqa_rptg_compl_act11_DQ016_A4b_opd | part1_dqa_rptg_compl_act12_DQ016_A4c_ser | part1_dqa_rptg_compl_act12_DQ016_A4c_ipd | part1_dqa_rptg_compl_act12_DQ016_A4c_opd | part1_dqa_rptg_compl_priA_tmp_dq016a4a_ser | part1_dqa_rptg_compl_priA_tmp_dq016a4a_ipd | part1_dqa_rptg_compl_priA_tmp_dq016a4a_opd | part1_dqa_rptg_compl_priA_tmp_dq016a4b_ser | part1_dqa_rptg_compl_priA_tmp_dq016a4b_ipd | part1_dqa_rptg_compl_priA_tmp_dq016a4b_opd | part1_dqa_rptg_compl_priA_tmp_dq016a4c_ser | part1_dqa_rptg_compl_priA_tmp_dq016a4c_ipd | part1_dqa_rptg_compl_priA_tmp_dq016a4c_opd | part1_dqa_rptg_compl_priA_dq016a4_tot_ser | part1_dqa_rptg_compl_priA_dq016a4_tot_ipd | part1_dqa_rptg_compl_priA_dq016a4_tot_opd | part1_dqa_rptg_compl_priA_tmp_rptg_ser_complns_pc1 | part1_dqa_rptg_compl_priA_rptg_ser_complns_pc1 | part1_dqa_rptg_compl_priA_tmp_rptg_ipd_complns_pc1 | part1_dqa_rptg_compl_priA_rptg_ipd_complns_pc1 | part1_dqa_rptg_compl_priA_tmp_rptg_opd_complns_pc1 | part1_dqa_rptg_compl_priA_rptg_opd_complns_pc1 | part1_dqa_rptg_compl_total1_tmp_dq016a1_tot_ser | part1_dqa_rptg_compl_total1_tmp_dq016a1_tot_ipd | part1_dqa_rptg_compl_total1_tmp_dq016a1_tot_opd | part1_dqa_rptg_compl_total1_tmp_dq016a2_tot_ser | part1_dqa_rptg_compl_total1_tmp_dq016a2_tot_ipd | part1_dqa_rptg_compl_total1_tmp_dq016a2_tot_opd | part1_dqa_rptg_compl_total1_tmp_dq016a3_tot_ser | part1_dqa_rptg_compl_total1_tmp_dq016a3_tot_opd | part1_dqa_rptg_compl_total1_tmp_dq016a4_tot_ser | part1_dqa_rptg_compl_total1_tmp_dq016a4_tot_ipd | part1_dqa_rptg_compl_total1_tmp_dq016a4_tot_opd | part1_dqa_rptg_compl_total1_dq016a_tot_ser | part1_dqa_rptg_compl_total1_dq016a_tot_ipd | part1_dqa_rptg_compl_total1_dq016a_tot_opd | part1_dqa_rptg_compl_total1_tmp_rptg_complns_sertot1 | part1_dqa_rptg_compl_total1_rptg_complns_sertot1 | part1_dqa_rptg_compl_total1_tmp_rptg_complns_ipdtot1 | part1_dqa_rptg_compl_total1_rptg_complns_ipdtot1 | part1_dqa_rptg_compl_total1_tmp_rptg_complns_opdtot1 | part1_dqa_rptg_compl_total1_rptg_complns_opdtot1 | part1_dqa_rptg_compl_act1b_DQ016_B1a_ser | part1_dqa_rptg_compl_act1b_DQ016_B1a_ipd | part1_dqa_rptg_compl_act1b_DQ016_B1a_opd | part1_dqa_rptg_compl_act2b_DQ016_B1b_ser | part1_dqa_rptg_compl_act2b_DQ016_B1b_ipd | part1_dqa_rptg_compl_act2b_DQ016_B1b_opd | part1_dqa_rptg_compl_act3b_DQ016_B1c_ser | part1_dqa_rptg_compl_act3b_DQ016_B1c_ipd | part1_dqa_rptg_compl_act3b_DQ016_B1c_opd | part1_dqa_rptg_compl_hospB_tmp_dq016b1a_ser | part1_dqa_rptg_compl_hospB_tmp_dq016b1a_ipd | part1_dqa_rptg_compl_hospB_tmp_dq016b1a_opd | part1_dqa_rptg_compl_hospB_tmp_dq016b1b_ser | part1_dqa_rptg_compl_hospB_tmp_dq016b1b_ipd | part1_dqa_rptg_compl_hospB_tmp_dq016b1b_opd | part1_dqa_rptg_compl_hospB_tmp_dq016b1c_ser | part1_dqa_rptg_compl_hospB_tmp_dq016b1c_ipd | part1_dqa_rptg_compl_hospB_tmp_dq016b1c_opd | part1_dqa_rptg_compl_hospB_dq016b1_tot_ser | part1_dqa_rptg_compl_hospB_dq016b1_tot_ipd | part1_dqa_rptg_compl_hospB_dq016b1_tot_opd | part1_dqa_rptg_compl_hospB_tmp_rptg_ser_complns_hosp2 | part1_dqa_rptg_compl_hospB_rptg_ser_complns_hosp2 | part1_dqa_rptg_compl_hospB_tmp_rptg_ipd_complns_hosp2 | part1_dqa_rptg_compl_hospB_rptg_ipd_complns_hosp2 | part1_dqa_rptg_compl_hospB_tmp_rptg_opd_complns_hosp2 | part1_dqa_rptg_compl_hospB_rptg_opd_complns_hosp2 | part1_dqa_rptg_compl_act4b_DQ016_B2a_ser | part1_dqa_rptg_compl_act4b_DQ016_B2a_ipd | part1_dqa_rptg_compl_act4b_DQ016_B2a_opd | part1_dqa_rptg_compl_act5b_DQ016_B2b_ser | part1_dqa_rptg_compl_act5b_DQ016_B2b_ipd | part1_dqa_rptg_compl_act5b_DQ016_B2b_opd | part1_dqa_rptg_compl_act6b_DQ016_B2c_ser | part1_dqa_rptg_compl_act6b_DQ016_B2c_ipd | part1_dqa_rptg_compl_act6b_DQ016_B2c_opd | part1_dqa_rptg_compl_hcB_tmp_dq016b2a_ser | part1_dqa_rptg_compl_hcB_tmp_dq016b2a_ipd | part1_dqa_rptg_compl_hcB_tmp_dq016b2a_opd | part1_dqa_rptg_compl_hcB_tmp_dq016b2b_ser | part1_dqa_rptg_compl_hcB_tmp_dq016b2b_ipd | part1_dqa_rptg_compl_hcB_tmp_dq016b2b_opd | part1_dqa_rptg_compl_hcB_tmp_dq016b2c_ser | part1_dqa_rptg_compl_hcB_tmp_dq016b2c_ipd | part1_dqa_rptg_compl_hcB_tmp_dq016b2c_opd | part1_dqa_rptg_compl_hcB_dq016b2_tot_ser | part1_dqa_rptg_compl_hcB_dq016b2_tot_ipd | part1_dqa_rptg_compl_hcB_dq016b2_tot_opd | part1_dqa_rptg_compl_hcB_tmp_rptg_ser_complns_hc2 | part1_dqa_rptg_compl_hcB_rptg_ser_complns_hc2 | part1_dqa_rptg_compl_hcB_tmp_rptg_ipd_complns_hc2 | part1_dqa_rptg_compl_hcB_rptg_ipd_complns_hc2 | part1_dqa_rptg_compl_hcB_tmp_rptg_opd_complns_hc2 | part1_dqa_rptg_compl_hcB_rptg_opd_complns_hc2 | part1_dqa_rptg_compl_act7b_DQ016_B3a_ser | part1_dqa_rptg_compl_act7b_DQ016_B3a_opd | part1_dqa_rptg_compl_act8b_DQ016_B3b_ser | part1_dqa_rptg_compl_act8b_DQ016_B3b_opd | part1_dqa_rptg_compl_act9b_DQ016_B3c_ser | part1_dqa_rptg_compl_act9b_DQ016_B3c_opd | part1_dqa_rptg_compl_hpB_tmp_dq016b3a_ser | part1_dqa_rptg_compl_hpB_tmp_dq016b3a_opd | part1_dqa_rptg_compl_hpB_tmp_dq016b3b_ser | part1_dqa_rptg_compl_hpB_tmp_dq016b3b_opd | part1_dqa_rptg_compl_hpB_tmp_dq016b3c_ser | part1_dqa_rptg_compl_hpB_tmp_dq016b3c_opd | part1_dqa_rptg_compl_hpB_dq016b3_tot_ser | part1_dqa_rptg_compl_hpB_dq016b3_tot_opd | part1_dqa_rptg_compl_hpB_tmp_rptg_ser_complns_hp2 | part1_dqa_rptg_compl_hpB_rptg_ser_complns_hp2 | part1_dqa_rptg_compl_hpB_tmp_rptg_opd_complns_hp2 | part1_dqa_rptg_compl_hpB_rptg_opd_complns_hp2 | part1_dqa_rptg_compl_act10b_DQ016_B4a_ser | part1_dqa_rptg_compl_act10b_DQ016_B4a_ipd | part1_dqa_rptg_compl_act10b_DQ016_B4a_opd | part1_dqa_rptg_compl_act11b_DQ016_B4b_ser | part1_dqa_rptg_compl_act11b_DQ016_B4b_ipd | part1_dqa_rptg_compl_act11b_DQ016_B4b_opd | part1_dqa_rptg_compl_act12b_DQ016_B4c_ser | part1_dqa_rptg_compl_act12b_DQ016_B4c_ipd | part1_dqa_rptg_compl_act12b_DQ016_B4c_opd | part1_dqa_rptg_compl_priB_tmp_dq016b4a_ser | part1_dqa_rptg_compl_priB_tmp_dq016b4a_ipd | part1_dqa_rptg_compl_priB_tmp_dq016b4a_opd | part1_dqa_rptg_compl_priB_tmp_dq016b4b_ser | part1_dqa_rptg_compl_priB_tmp_dq016b4b_ipd | part1_dqa_rptg_compl_priB_tmp_dq016b4b_opd | part1_dqa_rptg_compl_priB_tmp_dq016b4c_ser | part1_dqa_rptg_compl_priB_tmp_dq016b4c_ipd | part1_dqa_rptg_compl_priB_tmp_dq016b4c_opd | part1_dqa_rptg_compl_priB_dq016b4_tot_ser | part1_dqa_rptg_compl_priB_dq016b4_tot_ipd | part1_dqa_rptg_compl_priB_dq016b4_tot_opd | part1_dqa_rptg_compl_priB_tmp_rptg_ser_complns_pc2 | part1_dqa_rptg_compl_priB_rptg_ser_complns_pc2 | part1_dqa_rptg_compl_priB_tmp_rptg_ipd_complns_pc2 | part1_dqa_rptg_compl_priB_rptg_ipd_complns_pc2 | part1_dqa_rptg_compl_priB_tmp_rptg_opd_complns_pc2 | part1_dqa_rptg_compl_priB_rptg_opd_complns_pc2 | part1_dqa_rptg_compl_total2_tmp_dq016b1_tot_ser | part1_dqa_rptg_compl_total2_tmp_dq016b1_tot_ipd | part1_dqa_rptg_compl_total2_tmp_dq016b1_tot_opd | part1_dqa_rptg_compl_total2_tmp_dq016b2_tot_ser | part1_dqa_rptg_compl_total2_tmp_dq016b2_tot_ipd | part1_dqa_rptg_compl_total2_tmp_dq016b2_tot_opd | part1_dqa_rptg_compl_total2_tmp_dq016b3_tot_ser | part1_dqa_rptg_compl_total2_tmp_dq016b3_tot_opd | part1_dqa_rptg_compl_total2_tmp_dq016b4_tot_ser | part1_dqa_rptg_compl_total2_tmp_dq016b4_tot_ipd | part1_dqa_rptg_compl_total2_tmp_dq016b4_tot_opd | part1_dqa_rptg_compl_total2_dq016b_tot_ser | part1_dqa_rptg_compl_total2_dq016b_tot_ipd | part1_dqa_rptg_compl_total2_dq016b_tot_opd | part1_dqa_rptg_compl_total2_tmp_rptg_complns_sertot2 | part1_dqa_rptg_compl_total2_rptg_complns_sertot2 | part1_dqa_rptg_compl_total2_tmp_rptg_complns_ipdtot2 | part1_dqa_rptg_compl_total2_rptg_complns_ipdtot2 | part1_dqa_rptg_compl_total2_tmp_rptg_complns_opdtot2 | part1_dqa_rptg_compl_total2_rptg_complns_opdtot2 | part1_dqa_rptg_compl_act1c_DQ016_C1a_ser | part1_dqa_rptg_compl_act1c_DQ016_C1a_ipd | part1_dqa_rptg_compl_act1c_DQ016_C1a_opd | part1_dqa_rptg_compl_act1c_DQ016_C1a_qrtr | part1_dqa_rptg_compl_act2c_DQ016_C1b_ser | part1_dqa_rptg_compl_act2c_DQ016_C1b_ipd | part1_dqa_rptg_compl_act2c_DQ016_C1b_opd | part1_dqa_rptg_compl_act2c_DQ016_C1b_qrtr | part1_dqa_rptg_compl_act3c_DQ016_C1c_ser | part1_dqa_rptg_compl_act3c_DQ016_C1c_ipd | part1_dqa_rptg_compl_act3c_DQ016_C1c_opd | part1_dqa_rptg_compl_act3c_DQ016_C1c_qrtr | part1_dqa_rptg_compl_hospC_tmp_dq016c1a_ser | part1_dqa_rptg_compl_hospC_tmp_dq016c1a_ipd | part1_dqa_rptg_compl_hospC_tmp_dq016c1a_opd | part1_dqa_rptg_compl_hospC_tmp_dq016c1a_qrtr | part1_dqa_rptg_compl_hospC_tmp_dq016c1b_ser | part1_dqa_rptg_compl_hospC_tmp_dq016c1b_ipd | part1_dqa_rptg_compl_hospC_tmp_dq016c1b_opd | part1_dqa_rptg_compl_hospC_tmp_dq016c1b_qrtr | part1_dqa_rptg_compl_hospC_tmp_dq016c1c_ser | part1_dqa_rptg_compl_hospC_tmp_dq016c1c_ipd | part1_dqa_rptg_compl_hospC_tmp_dq016c1c_opd | part1_dqa_rptg_compl_hospC_tmp_dq016c1c_qrtr | part1_dqa_rptg_compl_hospC_dq016c1_tot_ser | part1_dqa_rptg_compl_hospC_dq016c1_tot_ipd | part1_dqa_rptg_compl_hospC_dq016c1_tot_opd | part1_dqa_rptg_compl_hospC_dq016c1_tot_qrtr | part1_dqa_rptg_compl_hospC_tmp_rptg_ser_complns_hosp3 | part1_dqa_rptg_compl_hospC_rptg_ser_complns_hosp3 | part1_dqa_rptg_compl_hospC_tmp_rptg_ipd_complns_hosp3 | part1_dqa_rptg_compl_hospC_rptg_ipd_complns_hosp3 | part1_dqa_rptg_compl_hospC_tmp_rptg_opd_complns_hosp3 | part1_dqa_rptg_compl_hospC_rptg_opd_complns_hosp3 | part1_dqa_rptg_compl_hospC_tmp_rptg_qrtr_complns_hosp3 | part1_dqa_rptg_compl_hospC_rptg_qrtr_complns_hosp3 | part1_dqa_rptg_compl_act4c_DQ016_C2a_ser | part1_dqa_rptg_compl_act4c_DQ016_C2a_ipd | part1_dqa_rptg_compl_act4c_DQ016_C2a_opd | part1_dqa_rptg_compl_act4c_DQ016_C2a_qrtr | part1_dqa_rptg_compl_act5c_DQ016_C2b_ser | part1_dqa_rptg_compl_act5c_DQ016_C2b_ipd | part1_dqa_rptg_compl_act5c_DQ016_C2b_opd | part1_dqa_rptg_compl_act5c_DQ016_C2b_qrtr | part1_dqa_rptg_compl_act6c_DQ016_C2c_ser | part1_dqa_rptg_compl_act6c_DQ016_C2c_ipd | part1_dqa_rptg_compl_act6c_DQ016_C2c_opd | part1_dqa_rptg_compl_act6c_DQ016_C2c_qrtr | part1_dqa_rptg_compl_hcC_tmp_dq016c2a_ser | part1_dqa_rptg_compl_hcC_tmp_dq016c2a_ipd | part1_dqa_rptg_compl_hcC_tmp_dq016c2a_opd | part1_dqa_rptg_compl_hcC_tmp_dq016c2a_qrtr | part1_dqa_rptg_compl_hcC_tmp_dq016c2b_ser | part1_dqa_rptg_compl_hcC_tmp_dq016c2b_ipd | part1_dqa_rptg_compl_hcC_tmp_dq016c2b_opd | part1_dqa_rptg_compl_hcC_tmp_dq016c2b_qrtr | part1_dqa_rptg_compl_hcC_tmp_dq016c2c_ser | part1_dqa_rptg_compl_hcC_tmp_dq016c2c_ipd | part1_dqa_rptg_compl_hcC_tmp_dq016c2c_opd | part1_dqa_rptg_compl_hcC_tmp_dq016c2c_qrtr | part1_dqa_rptg_compl_hcC_dq016c2_tot_ser | part1_dqa_rptg_compl_hcC_dq016c2_tot_ipd | part1_dqa_rptg_compl_hcC_dq016c2_tot_opd | part1_dqa_rptg_compl_hcC_dq016c2_tot_qrtr | part1_dqa_rptg_compl_hcC_tmp_rptg_ser_complns_hc3 | part1_dqa_rptg_compl_hcC_rptg_ser_complns_hc3 | part1_dqa_rptg_compl_hcC_tmp_rptg_ipd_complns_hc3 | part1_dqa_rptg_compl_hcC_rptg_ipd_complns_hc3 | part1_dqa_rptg_compl_hcC_tmp_rptg_opd_complns_hc3 | part1_dqa_rptg_compl_hcC_rptg_opd_complns_hc3 | part1_dqa_rptg_compl_hcC_tmp_rptg_qrtr_complns_hc3 | part1_dqa_rptg_compl_hcC_rptg_qrtr_complns_hc3 | part1_dqa_rptg_compl_act7c_DQ016_C3a_ser | part1_dqa_rptg_compl_act7c_DQ016_C3a_opd | part1_dqa_rptg_compl_act7c_DQ016_C3a_qrtr | part1_dqa_rptg_compl_act8c_DQ016_C3b_ser | part1_dqa_rptg_compl_act8c_DQ016_C3b_opd | part1_dqa_rptg_compl_act8c_DQ016_C3b_qrtr | part1_dqa_rptg_compl_act9c_DQ016_C3c_ser | part1_dqa_rptg_compl_act9c_DQ016_C3c_opd | part1_dqa_rptg_compl_act9c_DQ016_C3c_qrtr | part1_dqa_rptg_compl_hpC_tmp_dq016c3a_ser | part1_dqa_rptg_compl_hpC_tmp_dq016c3a_opd | part1_dqa_rptg_compl_hpC_tmp_dq016c3a_qrtr | part1_dqa_rptg_compl_hpC_tmp_dq016c3b_ser | part1_dqa_rptg_compl_hpC_tmp_dq016c3b_opd | part1_dqa_rptg_compl_hpC_tmp_dq016c3b_qrtr | part1_dqa_rptg_compl_hpC_tmp_dq016c3c_ser | part1_dqa_rptg_compl_hpC_tmp_dq016c3c_opd | part1_dqa_rptg_compl_hpC_tmp_dq016c3c_qrtr | part1_dqa_rptg_compl_hpC_dq016c3_tot_ser | part1_dqa_rptg_compl_hpC_dq016c3_tot_opd | part1_dqa_rptg_compl_hpC_dq016c3_tot_qrtr | part1_dqa_rptg_compl_hpC_tmp_rptg_ser_complns_hp3 | part1_dqa_rptg_compl_hpC_rptg_ser_complns_hp3 | part1_dqa_rptg_compl_hpC_tmp_rptg_opd_complns_hp3 | part1_dqa_rptg_compl_hpC_rptg_opd_complns_hp3 | part1_dqa_rptg_compl_hpC_tmp_rptg_qrtr_complns_hp3 | part1_dqa_rptg_compl_hpC_rptg_qrtr_complns_hp3 | part1_dqa_rptg_compl_act10c_DQ016_C4a_ser | part1_dqa_rptg_compl_act10c_DQ016_C4a_ipd | part1_dqa_rptg_compl_act10c_DQ016_C4a_opd | part1_dqa_rptg_compl_act10c_DQ016_C4a_qrtr | part1_dqa_rptg_compl_act11c_DQ016_C4b_ser | part1_dqa_rptg_compl_act11c_DQ016_C4b_ipd | part1_dqa_rptg_compl_act11c_DQ016_C4b_opd | part1_dqa_rptg_compl_act11c_DQ016_C4b_qrtr | part1_dqa_rptg_compl_act12c_DQ016_C4c_ser | part1_dqa_rptg_compl_act12c_DQ016_C4c_ipd | part1_dqa_rptg_compl_act12c_DQ016_C4c_opd | part1_dqa_rptg_compl_act12c_DQ016_C4c_qrtr | part1_dqa_rptg_compl_priC_tmp_dq016c4a_ser | part1_dqa_rptg_compl_priC_tmp_dq016c4a_ipd | part1_dqa_rptg_compl_priC_tmp_dq016c4a_opd | part1_dqa_rptg_compl_priC_tmp_dq016c4a_qrtr | part1_dqa_rptg_compl_priC_tmp_dq016c4b_ser | part1_dqa_rptg_compl_priC_tmp_dq016c4b_ipd | part1_dqa_rptg_compl_priC_tmp_dq016c4b_opd | part1_dqa_rptg_compl_priC_tmp_dq016c4b_qrtr | part1_dqa_rptg_compl_priC_tmp_dq016c4c_ser | part1_dqa_rptg_compl_priC_tmp_dq016c4c_ipd | part1_dqa_rptg_compl_priC_tmp_dq016c4c_opd | part1_dqa_rptg_compl_priC_tmp_dq016c4c_qrtr | part1_dqa_rptg_compl_priC_dq016c4_tot_ser | part1_dqa_rptg_compl_priC_dq016c4_tot_ipd | part1_dqa_rptg_compl_priC_dq016c4_tot_opd | part1_dqa_rptg_compl_priC_dq016c4_tot_qrtr | part1_dqa_rptg_compl_priC_tmp_rptg_ser_complns_pc3 | part1_dqa_rptg_compl_priC_rptg_ser_complns_pc3 | part1_dqa_rptg_compl_priC_tmp_rptg_ipd_complns_pc3 | part1_dqa_rptg_compl_priC_rptg_ipd_complns_pc3 | part1_dqa_rptg_compl_priC_tmp_rptg_opd_complns_pc3 | part1_dqa_rptg_compl_priC_rptg_opd_complns_pc3 | part1_dqa_rptg_compl_priC_tmp_rptg_qrtr_complns_pc3 | part1_dqa_rptg_compl_priC_rptg_qrtr_complns_pc3 | part1_dqa_rptg_compl_total3_tmp_dq016c1_tot_ser | part1_dqa_rptg_compl_total3_tmp_dq016c1_tot_ipd | part1_dqa_rptg_compl_total3_tmp_dq016c1_tot_opd | part1_dqa_rptg_compl_total3_tmp_dq016c1_tot_qrtr | part1_dqa_rptg_compl_total3_tmp_dq016c2_tot_ser | part1_dqa_rptg_compl_total3_tmp_dq016c2_tot_ipd | part1_dqa_rptg_compl_total3_tmp_dq016c2_tot_opd | part1_dqa_rptg_compl_total3_tmp_dq016c2_tot_qrtr | part1_dqa_rptg_compl_total3_tmp_dq016c3_tot_ser | part1_dqa_rptg_compl_total3_tmp_dq016c3_tot_opd | part1_dqa_rptg_compl_total3_tmp_dq016c3_tot_qrtr | part1_dqa_rptg_compl_total3_tmp_dq016c4_tot_ser | part1_dqa_rptg_compl_total3_tmp_dq016c4_tot_ipd | part1_dqa_rptg_compl_total3_tmp_dq016c4_tot_opd | part1_dqa_rptg_compl_total3_tmp_dq016c4_tot_qrtr | part1_dqa_rptg_compl_total3_dq016c_tot_ser | part1_dqa_rptg_compl_total3_dq016c_tot_ipd | part1_dqa_rptg_compl_total3_dq016c_tot_opd | part1_dqa_rptg_compl_total3_dq016c_tot_qrtr | part1_dqa_rptg_compl_total3_tmp_rptg_complns_sertot3 | part1_dqa_rptg_compl_total3_rptg_complns_sertot3 | part1_dqa_rptg_compl_total3_tmp_rptg_complns_ipdtot3 | part1_dqa_rptg_compl_total3_rptg_complns_ipdtot3 | part1_dqa_rptg_compl_total3_tmp_rptg_complns_opdtot3 | part1_dqa_rptg_compl_total3_rptg_complns_opdtot3 | part1_dqa_rptg_compl_total3_tmp_rptg_complns_qrtrtot3 | part1_dqa_rptg_compl_total3_rptg_complns_qrtrtot3 | part1_dqa_rptg_compl21_DQ017 | part1_dqa_rptg_compl21_DQ017o | part1_dqa_indic_compl1_DQ018a_1a | part1_dqa_indic_compl1_DQ018a_1b | part1_dqa_indic_compl1_DQ018a_1c | part1_dqa_indic_compl1_DQ018a_1d | part1_dqa_indic_compl1_DQ018a_1e | part1_dqa_indic_compl1_DQ018a_1f | part1_dqa_indic_compl1_DQ018a_1g | part1_dqa_indic_compl1_DQ018a_1h | part1_dqa_indic_compl2_DQ018a_2a | part1_dqa_indic_compl2_DQ018a_2b | part1_dqa_indic_compl2_DQ018a_2c | part1_dqa_indic_compl2_DQ018a_2d | part1_dqa_indic_compl2_DQ018a_2e | part1_dqa_indic_compl2_DQ018a_2f | part1_dqa_indic_compl2_DQ018a_2g | part1_dqa_indic_compl2_DQ018a_2h | part1_dqa_indic_compl3_DQ018a_3a | part1_dqa_indic_compl3_DQ018a_3b | part1_dqa_indic_compl3_DQ018a_3c | part1_dqa_indic_compl3_DQ018a_3d | part1_dqa_indic_compl3_DQ018a_3e | part1_dqa_indic_compl3_DQ018a_3f | part1_dqa_indic_compl3_DQ018a_3g | part1_dqa_indic_compl3_DQ018a_3h | part1_dqa_indic_compl4_DQ018b_1a | part1_dqa_indic_compl4_DQ018b_1b | part1_dqa_indic_compl4_DQ018b_1c | part1_dqa_indic_compl4_DQ018b_1d | part1_dqa_indic_compl4_DQ018b_1e | part1_dqa_indic_compl4_DQ018b_1f | part1_dqa_indic_compl4_DQ018b_1g | part1_dqa_indic_compl4_DQ018b_1h | part1_dqa_indic_compl4a_tmp_DQ018b_1a | part1_dqa_indic_compl4a_tmp_rptg_complns_birth_1 | part1_dqa_indic_compl4a_rptg_complns_birth_1 | part1_dqa_indic_compl4a_tmp_DQ018b_1b | part1_dqa_indic_compl4a_tmp_rptg_complns_fp_1 | part1_dqa_indic_compl4a_rptg_complns_fp_1 | part1_dqa_indic_compl4a_tmp_DQ018b_1c | part1_dqa_indic_compl4a_tmp_rptg_complns_dtp3_1 | part1_dqa_indic_compl4a_rptg_complns_dtp3_1 | part1_dqa_indic_compl4a_tmp_DQ018b_1d | part1_dqa_indic_compl4a_tmp_rptg_complns_hiv1 | part1_dqa_indic_compl4a_rptg_complns_hiv1 | part1_dqa_indic_compl4a_tmp_DQ018b_1e | part1_dqa_indic_compl4a_tmp_rptg_complns_malaria1 | part1_dqa_indic_compl4a_rptg_complns_malaria1 | part1_dqa_indic_compl4a_tmp_DQ018b_1f | part1_dqa_indic_compl4a_tmp_rptg_complns_pneumonia1 | part1_dqa_indic_compl4a_rptg_complns_pneumonia1 | part1_dqa_indic_compl4a_tmp_DQ018b_1g | part1_dqa_indic_compl4a_tmp_rptg_complns_inpatient1 | part1_dqa_indic_compl4a_rptg_complns_inpatient1 | part1_dqa_indic_compl4a_tmp_DQ018b_1h | part1_dqa_indic_compl4a_tmp_rptg_complns_tb1 | part1_dqa_indic_compl4a_rptg_complns_tb1 | part1_dqa_indic_compl5_DQ018b_2a | part1_dqa_indic_compl5_DQ018b_2b | part1_dqa_indic_compl5_DQ018b_2c | part1_dqa_indic_compl5_DQ018b_2d | part1_dqa_indic_compl5_DQ018b_2e | part1_dqa_indic_compl5_DQ018b_2f | part1_dqa_indic_compl5_DQ018b_2g | part1_dqa_indic_compl5_DQ018b_2h | part1_dqa_indic_compl5a_tmp_DQ018b_2a | part1_dqa_indic_compl5a_tmp_rptg_complns_birth_2 | part1_dqa_indic_compl5a_rptg_complns_birth_2 | part1_dqa_indic_compl5a_tmp_DQ018b_2b | part1_dqa_indic_compl5a_tmp_rptg_complns_fp_2 | part1_dqa_indic_compl5a_rptg_complns_fp_2 | part1_dqa_indic_compl5a_tmp_DQ018b_2c | part1_dqa_indic_compl5a_tmp_rptg_complns_dtp3_2 | part1_dqa_indic_compl5a_rptg_complns_dtp3_2 | part1_dqa_indic_compl5a_tmp_DQ018b_2d | part1_dqa_indic_compl5a_tmp_rptg_complns_hiv2 | part1_dqa_indic_compl5a_rptg_complns_hiv2 | part1_dqa_indic_compl5a_tmp_DQ018b_2e | part1_dqa_indic_compl5a_tmp_rptg_complns_malaria2 | part1_dqa_indic_compl5a_rptg_complns_malaria2 | part1_dqa_indic_compl5a_tmp_DQ018b_2f | part1_dqa_indic_compl5a_tmp_rptg_complns_pneumonia2 | part1_dqa_indic_compl5a_rptg_complns_pneumonia2 | part1_dqa_indic_compl5a_tmp_DQ018b_2g | part1_dqa_indic_compl5a_tmp_rptg_complns_inpatient2 | part1_dqa_indic_compl5a_rptg_complns_inpatient2 | part1_dqa_indic_compl5a_tmp_DQ018b_2h | part1_dqa_indic_compl5a_tmp_rptg_complns_tb2 | part1_dqa_indic_compl5a_rptg_complns_tb2 | part1_dqa_indic_compl6_DQ018b_3a | part1_dqa_indic_compl6_DQ018b_3b | part1_dqa_indic_compl6_DQ018b_3c | part1_dqa_indic_compl6_DQ018b_3d | part1_dqa_indic_compl6_DQ018b_3e | part1_dqa_indic_compl6_DQ018b_3f | part1_dqa_indic_compl6_DQ018b_3g | part1_dqa_indic_compl6_DQ018b_3h | part1_dqa_indic_compl6a_tmp_DQ018b_3a | part1_dqa_indic_compl6a_tmp_rptg_complns_birth_3 | part1_dqa_indic_compl6a_rptg_complns_birth_3 | part1_dqa_indic_compl6a_tmp_DQ018b_3b | part1_dqa_indic_compl6a_tmp_rptg_complns_fp_3 | part1_dqa_indic_compl6a_rptg_complns_fp_3 | part1_dqa_indic_compl6a_tmp_DQ018b_3c | part1_dqa_indic_compl6a_tmp_rptg_complns_dtp3_3 | part1_dqa_indic_compl6a_rptg_complns_dtp3_3 | part1_dqa_indic_compl6a_tmp_DQ018b_3d | part1_dqa_indic_compl6a_tmp_rptg_complns_hiv3 | part1_dqa_indic_compl6a_rptg_complns_hiv3 | part1_dqa_indic_compl6a_tmp_DQ018b_3e | part1_dqa_indic_compl6a_tmp_rptg_complns_malaria3 | part1_dqa_indic_compl6a_rptg_complns_malaria3 | part1_dqa_indic_compl6a_tmp_DQ018b_3f | part1_dqa_indic_compl6a_tmp_rptg_complns_pneumonia3 | part1_dqa_indic_compl6a_rptg_complns_pneumonia3 | part1_dqa_indic_compl6a_tmp_DQ018b_3g | part1_dqa_indic_compl6a_tmp_rptg_complns_inpatient3 | part1_dqa_indic_compl6a_rptg_complns_inpatient3 | part1_dqa_indic_compl6a_tmp_DQ018b_3h | part1_dqa_indic_compl6a_tmp_rptg_complns_tb3 | part1_dqa_indic_compl6a_rptg_complns_tb3 | part1_dqa_indic_compl7_DQ019_1a | part1_dqa_indic_compl7_DQ019_1b | part1_dqa_indic_compl7_DQ019_1c | part1_dqa_indic_compl7_DQ019_1d | part1_dqa_indic_compl7_DQ019_1e | part1_dqa_indic_compl7_DQ019_1f | part1_dqa_indic_compl7_DQ019_1g | part1_dqa_indic_compl7_DQ019_1h | part1_dqa_indic_compl7a_tmp_dat_complns_birth_1 | part1_dqa_indic_compl7a_dat_complns_birth_1 | part1_dqa_indic_compl7a_tmp_dat_complns_birth_1wgt | part1_dqa_indic_compl7a_dat_complns_birth_1wgt | part1_dqa_indic_compl7a_tmp_dat_complns_fp_1 | part1_dqa_indic_compl7a_dat_complns_fp_1 | part1_dqa_indic_compl7a_tmp_dat_complns_fp_1wgt | part1_dqa_indic_compl7a_dat_complns_fp_1wgt | part1_dqa_indic_compl7a_tmp_dat_complns_dtp3_1 | part1_dqa_indic_compl7a_dat_complns_dtp3_1 | part1_dqa_indic_compl7a_tmp_dat_complns_dtp3_1wgt | part1_dqa_indic_compl7a_dat_complns_dtp3_1wgt | part1_dqa_indic_compl7a_tmp_dat_complns_hiv1 | part1_dqa_indic_compl7a_dat_complns_hiv1 | part1_dqa_indic_compl7a_tmp_dat_complns_hiv_1wgt | part1_dqa_indic_compl7a_dat_complns_hiv_1wgt | part1_dqa_indic_compl7a_tmp_dat_complns_malaria1 | part1_dqa_indic_compl7a_dat_complns_malaria1 | part1_dqa_indic_compl7a_tmp_dat_complns_malaria1wgt | part1_dqa_indic_compl7a_dat_complns_malaria1wgt | part1_dqa_indic_compl7a_tmp_dat_complns_pneumonia1 | part1_dqa_indic_compl7a_dat_complns_pneumonia1 | part1_dqa_indic_compl7a_tmp_dat_complns_pneumonia1wgt | part1_dqa_indic_compl7a_dat_complns_pneumonia1wgt | part1_dqa_indic_compl7a_tmp_dat_complns_inpatient1 | part1_dqa_indic_compl7a_dat_complns_inpatient1 | part1_dqa_indic_compl7a_tmp_dat_complns_inpatient1wgt | part1_dqa_indic_compl7a_dat_complns_inpatient1wgt | part1_dqa_indic_compl7a_tmp_dat_complns_tb1 | part1_dqa_indic_compl7a_dat_complns_tb1 | part1_dqa_indic_compl7a_tmp_dat_complns_tb1wgt | part1_dqa_indic_compl7a_dat_complns_tb1wgt | part1_dqa_indic_compl8_DQ019_2a | part1_dqa_indic_compl8_DQ019_2b | part1_dqa_indic_compl8_DQ019_2c | part1_dqa_indic_compl8_DQ019_2d | part1_dqa_indic_compl8_DQ019_2e | part1_dqa_indic_compl8_DQ019_2f | part1_dqa_indic_compl8_DQ019_2g | part1_dqa_indic_compl8_DQ019_2h | part1_dqa_indic_compl8a_tmp_dat_complns_birth_2 | part1_dqa_indic_compl8a_dat_complns_birth_2 | part1_dqa_indic_compl8a_tmp_dat_complns_birth_2wgt | part1_dqa_indic_compl8a_dat_complns_birth_2wgt | part1_dqa_indic_compl8a_tmp_dat_complns_fp_2 | part1_dqa_indic_compl8a_dat_complns_fp_2 | part1_dqa_indic_compl8a_tmp_dat_complns_fp_2wgt | part1_dqa_indic_compl8a_dat_complns_fp_2wgt | part1_dqa_indic_compl8a_tmp_dat_complns_dtp3_2 | part1_dqa_indic_compl8a_dat_complns_dtp3_2 | part1_dqa_indic_compl8a_tmp_dat_complns_dtp3_2wgt | part1_dqa_indic_compl8a_dat_complns_dtp3_2wgt | part1_dqa_indic_compl8a_tmp_dat_complns_hiv2 | part1_dqa_indic_compl8a_dat_complns_hiv2 | part1_dqa_indic_compl8a_tmp_dat_complns_hiv_2wgt | part1_dqa_indic_compl8a_dat_complns_hiv_2wgt | part1_dqa_indic_compl8a_tmp_dat_complns_malaria2 | part1_dqa_indic_compl8a_dat_complns_malaria2 | part1_dqa_indic_compl8a_tmp_dat_complns_malaria2wgt | part1_dqa_indic_compl8a_dat_complns_malaria2wgt | part1_dqa_indic_compl8a_tmp_dat_complns_pneumonia2 | part1_dqa_indic_compl8a_dat_complns_pneumonia2 | part1_dqa_indic_compl8a_tmp_dat_complns_pneumonia2wgt | part1_dqa_indic_compl8a_dat_complns_pneumonia2wgt | part1_dqa_indic_compl8a_tmp_dat_complns_inpatient2 | part1_dqa_indic_compl8a_dat_complns_inpatient2 | part1_dqa_indic_compl8a_tmp_dat_complns_inpatient2wgt | part1_dqa_indic_compl8a_dat_complns_inpatient2wgt | part1_dqa_indic_compl8a_tmp_dat_complns_tb2 | part1_dqa_indic_compl8a_dat_complns_tb2 | part1_dqa_indic_compl8a_tmp_dat_complns_tb2wgt | part1_dqa_indic_compl8a_dat_complns_tb2wgt | part1_dqa_indic_compl9_DQ019_3a | part1_dqa_indic_compl9_DQ019_3b | part1_dqa_indic_compl9_DQ019_3c | part1_dqa_indic_compl9_DQ019_3d | part1_dqa_indic_compl9_DQ019_3e | part1_dqa_indic_compl9_DQ019_3f | part1_dqa_indic_compl9_DQ019_3g | part1_dqa_indic_compl9_DQ019_3h | part1_dqa_indic_compl9a_tmp_dat_complns_birth_3 | part1_dqa_indic_compl9a_dat_complns_birth_3 | part1_dqa_indic_compl9a_tmp_dat_complns_birth_3wgt | part1_dqa_indic_compl9a_dat_complns_birth_3wgt | part1_dqa_indic_compl9a_tmp_dat_complns_fp_3 | part1_dqa_indic_compl9a_dat_complns_fp_3 | part1_dqa_indic_compl9a_tmp_dat_complns_fp_3wgt | part1_dqa_indic_compl9a_dat_complns_fp_3wgt | part1_dqa_indic_compl9a_tmp_dat_complns_dtp3_3 | part1_dqa_indic_compl9a_dat_complns_dtp3_3 | part1_dqa_indic_compl9a_tmp_dat_complns_dtp3_3wgt | part1_dqa_indic_compl9a_dat_complns_dtp3_3wgt | part1_dqa_indic_compl9a_tmp_dat_complns_hiv3 | part1_dqa_indic_compl9a_dat_complns_hiv3 | part1_dqa_indic_compl9a_tmp_dat_complns_hiv_3wgt | part1_dqa_indic_compl9a_dat_complns_hiv_3wgt | part1_dqa_indic_compl9a_tmp_dat_complns_malaria3 | part1_dqa_indic_compl9a_dat_complns_malaria3 | part1_dqa_indic_compl9a_tmp_dat_complns_malaria3wgt | part1_dqa_indic_compl9a_dat_complns_malaria3wgt | part1_dqa_indic_compl9a_tmp_dat_complns_pneumonia3 | part1_dqa_indic_compl9a_dat_complns_pneumonia3 | part1_dqa_indic_compl9a_tmp_dat_complns_pneumonia3wgt | part1_dqa_indic_compl9a_dat_complns_pneumonia3wgt | part1_dqa_indic_compl9a_tmp_dat_complns_inpatient3 | part1_dqa_indic_compl9a_dat_complns_inpatient3 | part1_dqa_indic_compl9a_tmp_dat_complns_inpatient3wgt | part1_dqa_indic_compl9a_dat_complns_inpatient3wgt | part1_dqa_indic_compl9a_tmp_dat_complns_tb3 | part1_dqa_indic_compl9a_dat_complns_tb3 | part1_dqa_indic_compl9a_tmp_dat_complns_tb3wgt | part1_dqa_indic_compl9a_dat_complns_tb3wgt | part1_dqa_indic_compl10_DQ020 | part1_dqa_indic_compl10_DQ020o | part1_dqa_rpt_timelnss1_DQ021a | part1_dqa_rpt_timelnss1_DQ021b | part1_dqa_rpt_timelnss1_DQ022 | part1_dqa_rpt_timelnss2_DQ023_1a_ser | part1_dqa_rpt_timelnss2_DQ023_1a_ipd | part1_dqa_rpt_timelnss2_DQ023_1a_opd | part1_dqa_rpt_timelnss3_DQ023_1b_ser | part1_dqa_rpt_timelnss3_DQ023_1b_ipd | part1_dqa_rpt_timelnss3_DQ023_1b_opd | part1_dqa_rpt_timelnss4_DQ023_1c_ser | part1_dqa_rpt_timelnss4_DQ023_1c_ipd | part1_dqa_rpt_timelnss4_DQ023_1c_opd | part1_dqa_rpt_timelnss4_DQ023_1c_qrtr | part1_dqa_rpt_timelnss5_tmp_dq023_1a_ser | part1_dqa_rpt_timelnss5_tmp_dq023_1a_ipd | part1_dqa_rpt_timelnss5_tmp_dq023_1a_opd | part1_dqa_rpt_timelnss5_tmp_rpt_sertimelns_hosp1 | part1_dqa_rpt_timelnss5_rpt_sertimelns_hosp1 | part1_dqa_rpt_timelnss5_tmp_rpt_ipdtimelns_hosp1 | part1_dqa_rpt_timelnss5_rpt_ipdtimelns_hosp1 | part1_dqa_rpt_timelnss5_tmp_rpt_opdtimelns_hosp1 | part1_dqa_rpt_timelnss5_rpt_opdtimelns_hosp1 | part1_dqa_rpt_timelnss6_tmp_dq023_1b_ser | part1_dqa_rpt_timelnss6_tmp_dq023_1b_ipd | part1_dqa_rpt_timelnss6_tmp_dq023_1b_opd | part1_dqa_rpt_timelnss6_tmp_rpt_sertimelns_hosp2 | part1_dqa_rpt_timelnss6_rpt_sertimelns_hosp2 | part1_dqa_rpt_timelnss6_tmp_rpt_ipdtimelns_hosp2 | part1_dqa_rpt_timelnss6_rpt_ipdtimelns_hosp2 | part1_dqa_rpt_timelnss6_tmp_rpt_opdtimelns_hosp2 | part1_dqa_rpt_timelnss6_rpt_opdtimelns_hosp2 | part1_dqa_rpt_timelnss7_tmp_dq023_1c_ser | part1_dqa_rpt_timelnss7_tmp_dq023_1c_ipd | part1_dqa_rpt_timelnss7_tmp_dq023_1c_opd | part1_dqa_rpt_timelnss7_tmp_dq023_1c_qrtr | part1_dqa_rpt_timelnss7_tmp_rpt_sertimelns_hosp3 | part1_dqa_rpt_timelnss7_rpt_sertimelns_hosp3 | part1_dqa_rpt_timelnss7_tmp_rpt_ipdtimelns_hosp3 | part1_dqa_rpt_timelnss7_rpt_ipdtimelns_hosp3 | part1_dqa_rpt_timelnss7_tmp_rpt_opdtimelns_hosp3 | part1_dqa_rpt_timelnss7_rpt_opdtimelns_hosp3 | part1_dqa_rpt_timelnss7_tmp_rpt_qrtrtimelns_hosp3 | part1_dqa_rpt_timelnss7_rpt_qrtrtimelns_hosp3 | part1_dqa_rpt_timelnss8_DQ023_2a_ser | part1_dqa_rpt_timelnss8_DQ023_2a_ipd | part1_dqa_rpt_timelnss8_DQ023_2a_opd | part1_dqa_rpt_timelnss9_DQ023_2b_ser | part1_dqa_rpt_timelnss9_DQ023_2b_ipd | part1_dqa_rpt_timelnss9_DQ023_2b_opd | part1_dqa_rpt_timelnss10_DQ023_2c_ser | part1_dqa_rpt_timelnss10_DQ023_2c_ipd | part1_dqa_rpt_timelnss10_DQ023_2c_opd | part1_dqa_rpt_timelnss10_DQ023_2c_qrtr | part1_dqa_rpt_timelnss11_tmp_dq023_2a_ser | part1_dqa_rpt_timelnss11_tmp_dq023_2a_ipd | part1_dqa_rpt_timelnss11_tmp_dq023_2a_opd | part1_dqa_rpt_timelnss11_tmp_rpt_sertimelns_hc1 | part1_dqa_rpt_timelnss11_rpt_sertimelns_hc1 | part1_dqa_rpt_timelnss11_tmp_rpt_ipdtimelns_hc1 | part1_dqa_rpt_timelnss11_rpt_ipdtimelns_hc1 | part1_dqa_rpt_timelnss11_tmp_rpt_opdtimelns_hc1 | part1_dqa_rpt_timelnss11_rpt_opdtimelns_hc1 | part1_dqa_rpt_timelnss12_tmp_dq023_2b_ser | part1_dqa_rpt_timelnss12_tmp_dq023_2b_ipd | part1_dqa_rpt_timelnss12_tmp_dq023_2b_opd | part1_dqa_rpt_timelnss12_tmp_rpt_sertimelns_hc2 | part1_dqa_rpt_timelnss12_rpt_sertimelns_hc2 | part1_dqa_rpt_timelnss12_tmp_rpt_ipdtimelns_hc2 | part1_dqa_rpt_timelnss12_rpt_ipdtimelns_hc2 | part1_dqa_rpt_timelnss12_tmp_rpt_opdtimelns_hc2 | part1_dqa_rpt_timelnss12_rpt_opdtimelns_hc2 | part1_dqa_rpt_timelnss13_tmp_dq023_2c_ser | part1_dqa_rpt_timelnss13_tmp_dq023_2c_ipd | part1_dqa_rpt_timelnss13_tmp_dq023_2c_opd | part1_dqa_rpt_timelnss13_tmp_dq023_2c_qrtr | part1_dqa_rpt_timelnss13_tmp_rpt_sertimelns_hc3 | part1_dqa_rpt_timelnss13_rpt_sertimelns_hc3 | part1_dqa_rpt_timelnss13_tmp_rpt_ipdtimelns_hc3 | part1_dqa_rpt_timelnss13_rpt_ipdtimelns_hc3 | part1_dqa_rpt_timelnss13_tmp_rpt_opdtimelns_hc3 | part1_dqa_rpt_timelnss13_rpt_opdtimelns_hc3 | part1_dqa_rpt_timelnss13_tmp_rpt_qrtrtimelns_hc3 | part1_dqa_rpt_timelnss13_rpt_qrtrtimelns_hc3 | part1_dqa_rpt_timelnss14_DQ023_3a_ser | part1_dqa_rpt_timelnss14_DQ023_3a_opd | part1_dqa_rpt_timelnss15_DQ023_3b_ser | part1_dqa_rpt_timelnss15_DQ023_3b_opd | part1_dqa_rpt_timelnss16_DQ023_3c_ser | part1_dqa_rpt_timelnss16_DQ023_3c_opd | part1_dqa_rpt_timelnss16_DQ023_3c_qrtr | part1_dqa_rpt_timelnss17_tmp_dq023_3a_ser | part1_dqa_rpt_timelnss17_tmp_dq023_3a_opd | part1_dqa_rpt_timelnss17_tmp_rpt_sertimelns_hp1 | part1_dqa_rpt_timelnss17_rpt_sertimelns_hp1 | part1_dqa_rpt_timelnss17_tmp_rpt_opdtimelns_hp1 | part1_dqa_rpt_timelnss17_rpt_opdtimelns_hp1 | part1_dqa_rpt_timelnss18_tmp_dq023_3b_ser | part1_dqa_rpt_timelnss18_tmp_dq023_3b_opd | part1_dqa_rpt_timelnss18_tmp_rpt_sertimelns_hp2 | part1_dqa_rpt_timelnss18_rpt_sertimelns_hp2 | part1_dqa_rpt_timelnss18_tmp_rpt_opdtimelns_hp2 | part1_dqa_rpt_timelnss18_rpt_opdtimelns_hp2 | part1_dqa_rpt_timelnss19_tmp_dq023_3c_ser | part1_dqa_rpt_timelnss19_tmp_dq023_3c_opd | part1_dqa_rpt_timelnss19_tmp_dq023_3c_qrtr | part1_dqa_rpt_timelnss19_tmp_rpt_sertimelns_hp3 | part1_dqa_rpt_timelnss19_rpt_sertimelns_hp3 | part1_dqa_rpt_timelnss19_tmp_rpt_opdtimelns_hp3 | part1_dqa_rpt_timelnss19_rpt_opdtimelns_hp3 | part1_dqa_rpt_timelnss19_tmp_rpt_qrtrtimelns_hp3 | part1_dqa_rpt_timelnss19_rpt_qrtrtimelns_hp3 | part1_dqa_rpt_timelnss20_DQ023_4a_ser | part1_dqa_rpt_timelnss20_DQ023_4a_ipd | part1_dqa_rpt_timelnss20_DQ023_4a_opd | part1_dqa_rpt_timelnss21_DQ023_4b_ser | part1_dqa_rpt_timelnss21_DQ023_4b_ipd | part1_dqa_rpt_timelnss21_DQ023_4b_opd | part1_dqa_rpt_timelnss22_DQ023_4c_ser | part1_dqa_rpt_timelnss22_DQ023_4c_ipd | part1_dqa_rpt_timelnss22_DQ023_4c_opd | part1_dqa_rpt_timelnss22_DQ023_4c_qrtr | part1_dqa_rpt_timelnss23_tmp_dq023_4a_ser | part1_dqa_rpt_timelnss23_tmp_dq023_4a_ipd | part1_dqa_rpt_timelnss23_tmp_dq023_4a_opd | part1_dqa_rpt_timelnss23_tmp_rpt_sertimelns_pc1 | part1_dqa_rpt_timelnss23_rpt_sertimelns_pc1 | part1_dqa_rpt_timelnss23_tmp_rpt_ipdtimelns_pc1 | part1_dqa_rpt_timelnss23_rpt_ipdtimelns_pc1 | part1_dqa_rpt_timelnss23_tmp_rpt_opdtimelns_pc1 | part1_dqa_rpt_timelnss23_rpt_opdtimelns_pc1 | part1_dqa_rpt_timelnss24_tmp_dq023_4b_ser | part1_dqa_rpt_timelnss24_tmp_dq023_4b_ipd | part1_dqa_rpt_timelnss24_tmp_dq023_4b_opd | part1_dqa_rpt_timelnss24_tmp_rpt_sertimelns_pc2 | part1_dqa_rpt_timelnss24_rpt_sertimelns_pc2 | part1_dqa_rpt_timelnss24_tmp_rpt_ipdtimelns_pc2 | part1_dqa_rpt_timelnss24_rpt_ipdtimelns_pc2 | part1_dqa_rpt_timelnss24_tmp_rpt_opdtimelns_pc2 | part1_dqa_rpt_timelnss24_rpt_opdtimelns_pc2 | part1_dqa_rpt_timelnss25_tmp_dq023_4c_ser | part1_dqa_rpt_timelnss25_tmp_dq023_4c_ipd | part1_dqa_rpt_timelnss25_tmp_dq023_4c_opd | part1_dqa_rpt_timelnss25_tmp_dq023_4c_qrtr | part1_dqa_rpt_timelnss25_tmp_rpt_sertimelns_pc3 | part1_dqa_rpt_timelnss25_rpt_sertimelns_pc3 | part1_dqa_rpt_timelnss25_tmp_rpt_ipdtimelns_pc3 | part1_dqa_rpt_timelnss25_rpt_ipdtimelns_pc3 | part1_dqa_rpt_timelnss25_tmp_rpt_opdtimelns_pc3 | part1_dqa_rpt_timelnss25_rpt_opdtimelns_pc3 | part1_dqa_rpt_timelnss25_tmp_rpt_qrtrtimelns_pc3 | part1_dqa_rpt_timelnss25_rpt_qrtrtimelns_pc3 | part1_dqa_DQ024 | part1_dqa_rpt_timelnss26_DQ025a_label | part1_dqa_rpt_timelnss26_DQ025a_ser | part1_dqa_rpt_timelnss26_DQ025a_ipd | part1_dqa_rpt_timelnss26_DQ025a_opd | part1_dqa_rpt_timelnss27_DQ025b_label | part1_dqa_rpt_timelnss27_DQ025b_ser | part1_dqa_rpt_timelnss27_DQ025b_ipd | part1_dqa_rpt_timelnss27_DQ025b_opd | part1_dqa_rpt_timelnss28_DQ025c_label | part1_dqa_rpt_timelnss28_DQ025c_ser | part1_dqa_rpt_timelnss28_DQ025c_ipd | part1_dqa_rpt_timelnss28_DQ025c_opd | part1_dqa_rpt_timelnss28_DQ025c_qrtr | part1_dqa_dat_accy2_DQ026_1a | part1_dqa_dat_accy2_DQ026_1b | part1_dqa_tmp_dq026_1a | part1_dqa_tmp_dq026_1b | part1_dqa_tmp_birth1_vf1 | part1_dqa_birth1_vf1 | part1_dqa_tmp_birth1_vf1_diff | part1_dqa_birth1_vf1_diff | part1_dqa_dat_accy3_DQ026_1c | part1_dqa_DQ026_1co | part1_dqa_dat_accy4_DQ026_2a | part1_dqa_dat_accy4_DQ026_2b | part1_dqa_tmp_dq026_2a | part1_dqa_tmp_dq026_2b | part1_dqa_tmp_fp_vf1 | part1_dqa_fp_vf1 | part1_dqa_tmp_fp_vf1_diff | part1_dqa_fp_vf1_diff | part1_dqa_dat_accy5_DQ026_2c | part1_dqa_DQ026_2co | part1_dqa_dat_accy6_DQ026_3a | part1_dqa_dat_accy6_DQ026_3b | part1_dqa_tmp_dq026_3a | part1_dqa_tmp_dq026_3b | part1_dqa_tmp_dpt_vf1 | part1_dqa_dpt_vf1 | part1_dqa_tmp_dpt_vf1_diff | part1_dqa_dpt_vf1_diff | part1_dqa_dat_accy7_DQ026_3c | part1_dqa_DQ026_3co | part1_dqa_dat_accy8_DQ026_4a | part1_dqa_dat_accy8_DQ026_4b | part1_dqa_tmp_dq026_4a | part1_dqa_tmp_dq026_4b | part1_dqa_tmp_hiv_vf1 | part1_dqa_hiv_vf1 | part1_dqa_tmp_hiv_vf1_diff | part1_dqa_hiv_vf1_diff | part1_dqa_dat_accy9_DQ026_4c | part1_dqa_DQ026_4co | part1_dqa_dat_accy10_DQ026_5a | part1_dqa_dat_accy10_DQ026_5b | part1_dqa_tmp_dq026_5a | part1_dqa_tmp_dq026_5b | part1_dqa_tmp_malaria_vf1 | part1_dqa_malaria_vf1 | part1_dqa_tmp_malaria_vf1_diff | part1_dqa_malaria_vf1_diff | part1_dqa_dat_accy11_DQ026_5c | part1_dqa_DQ026_5co | part1_dqa_dat_accy12_DQ026_6a | part1_dqa_dat_accy12_DQ026_6b | part1_dqa_tmp_dq026_6a | part1_dqa_tmp_dq026_6b | part1_dqa_tmp_pneumonia_vf1 | part1_dqa_pneumonia_vf1 | part1_dqa_tmp_pneumonia_vf1_diff | part1_dqa_pneumonia_vf1_diff | part1_dqa_dat_accy13_DQ026_6c | part1_dqa_DQ026_6co | part1_dqa_dat_accy14_DQ026_7a | part1_dqa_dat_accy14_DQ026_7b | part1_dqa_tmp_dq026_7a | part1_dqa_tmp_dq026_7b | part1_dqa_tmp_inpatient_vf1 | part1_dqa_inpatient_vf1 | part1_dqa_tmp_inpatient_vf1_diff | part1_dqa_inpatient_vf1_diff | part1_dqa_dat_accy15_DQ026_7c | part1_dqa_DQ026_7co | part1_dqa_dat_accy14_TB_DQ026_7a_TB | part1_dqa_dat_accy14_TB_DQ026_7b_TB | part1_dqa_tmp_dq026_7a_TB | part1_dqa_tmp_dq026_7b_TB | part1_dqa_tmp_inpatient_vf1_TB | part1_dqa_inpatient_vf1_TB | part1_dqa_tmp_inpatient_vf1_diff_TB | part1_dqa_inpatient_vf1_diff_TB | part1_dqa_dat_accy15_TB_DQ026_7c_TB | part1_dqa_DQ026_7co_TB | part1_dqa_dat_accy18_DQ027_1a | part1_dqa_dat_accy18_DQ027_1b | part1_dqa_tmp_dq027_1a | part1_dqa_tmp_dq027_1b | part1_dqa_tmp_birth_vf2 | part1_dqa_birth_vf2 | part1_dqa_tmp_birth_vf2_diff | part1_dqa_birth_vf2_diff | part1_dqa_dat_accy19_DQ027_1c | part1_dqa_DQ027_1co | part1_dqa_dat_accy20_DQ027_2a | part1_dqa_dat_accy20_DQ027_2b | part1_dqa_tmp_dq027_2a | part1_dqa_tmp_dq027_2b | part1_dqa_tmp_fp_vf2 | part1_dqa_fp_vf2 | part1_dqa_tmp_fp_vf2_diff | part1_dqa_fp_vf2_diff | part1_dqa_dat_accy21_DQ027_2c | part1_dqa_DQ027_2co | part1_dqa_dat_accy22_DQ027_3a | part1_dqa_dat_accy22_DQ027_3b | part1_dqa_tmp_dq027_3a | part1_dqa_tmp_dq027_3b | part1_dqa_tmp_dpt_vf2 | part1_dqa_dpt_vf2 | part1_dqa_tmp_dpt_vf2_diff | part1_dqa_dpt_vf2_diff | part1_dqa_dat_accy23_DQ027_3c | part1_dqa_DQ027_3co | part1_dqa_dat_accy24_DQ027_4a | part1_dqa_dat_accy24_DQ027_4b | part1_dqa_tmp_dq027_4a | part1_dqa_tmp_dq027_4b | part1_dqa_tmp_hiv_vf2 | part1_dqa_hiv_vf2 | part1_dqa_tmp_hiv_vf2_diff | part1_dqa_hiv_vf2_diff | part1_dqa_dat_accy25_DQ027_4c | part1_dqa_DQ027_4co | part1_dqa_dat_accy26_DQ027_5a | part1_dqa_dat_accy26_DQ027_5b | part1_dqa_tmp_dq027_5a | part1_dqa_tmp_dq027_5b | part1_dqa_tmp_malaria_vf2 | part1_dqa_malaria_vf2 | part1_dqa_tmp_malaria_vf2_diff | part1_dqa_malaria_vf2_diff | part1_dqa_dat_accy27_DQ027_5c | part1_dqa_DQ027_5co | part1_dqa_dat_accy28_DQ027_6a | part1_dqa_dat_accy28_DQ027_6b | part1_dqa_tmp_dq027_6a | part1_dqa_tmp_dq027_6b | part1_dqa_tmp_pneumonia_vf2 | part1_dqa_pneumonia_vf2 | part1_dqa_tmp_pneumonia_vf2_diff | part1_dqa_pneumonia_vf2_diff | part1_dqa_dat_accy29_DQ027_6c | part1_dqa_DQ027_6co | part1_dqa_dat_accy30_DQ027_7a | part1_dqa_dat_accy30_DQ027_7b | part1_dqa_tmp_dq027_7a | part1_dqa_tmp_dq027_7b | part1_dqa_tmp_inpatient_vf2 | part1_dqa_inpatient_vf2 | part1_dqa_tmp_inpatient_vf2_diff | part1_dqa_inpatient_vf2_diff | part1_dqa_dat_accy31_DQ027_7c | part1_dqa_DQ027_7co | part1_dqa_dat_accy14_TB2_DQ026_7a_TB2 | part1_dqa_dat_accy14_TB2_DQ026_7b_TB2 | part1_dqa_tmp_dq026_7a_TB2 | part1_dqa_tmp_dq026_7b_TB2 | part1_dqa_tmp_inpatient_vf1_TB2 | part1_dqa_inpatient_vf1_TB2 | part1_dqa_tmp_inpatient_vf1_diff_TB2 | part1_dqa_inpatient_vf1_diff_TB2 | part1_dqa_dat_accy15_TB2_DQ026_7c_TB2 | part1_dqa_DQ026_7co_TB2 | part1_dqa_dat_accy34_DQ028_1a | part1_dqa_dat_accy34_DQ028_1b | part1_dqa_tmp_dq028_1a | part1_dqa_tmp_dq028_1b | part1_dqa_tmp_birth_vf3 | part1_dqa_birth_vf3 | part1_dqa_tmp_birth_vf3_diff | part1_dqa_birth_vf3_diff | part1_dqa_dat_accy35_DQ028_1c | part1_dqa_DQ028_1co | part1_dqa_dat_accy36_DQ028_2a | part1_dqa_dat_accy36_DQ028_2b | part1_dqa_tmp_dq028_2a | part1_dqa_tmp_dq028_2b | part1_dqa_tmp_fp_vf3 | part1_dqa_fp_vf3 | part1_dqa_tmp_fp_vf3_diff | part1_dqa_fp_vf3_diff | part1_dqa_dat_accy37_DQ028_2c | part1_dqa_DQ028_2co | part1_dqa_dat_accy38_DQ028_3a | part1_dqa_dat_accy38_DQ028_3b | part1_dqa_tmp_dq028_3a | part1_dqa_tmp_dq028_3b | part1_dqa_tmp_dpt_vf3 | part1_dqa_dpt_vf3 | part1_dqa_tmp_dpt_vf3_diff | part1_dqa_dpt_vf3_diff | part1_dqa_dat_accy39_DQ028_3c | part1_dqa_DQ028_3co | part1_dqa_dat_accy40_DQ028_4a | part1_dqa_dat_accy40_DQ028_4b | part1_dqa_tmp_dq028_4a | part1_dqa_tmp_dq028_4b | part1_dqa_tmp_hiv_vf3 | part1_dqa_hiv_vf3 | part1_dqa_tmp_hiv_vf3_diff | part1_dqa_hiv_vf3_diff | part1_dqa_dat_accy41_DQ028_4c | part1_dqa_DQ028_4co | part1_dqa_dat_accy42_DQ028_5a | part1_dqa_dat_accy42_DQ028_5b | part1_dqa_tmp_dq028_5a | part1_dqa_tmp_dq028_5b | part1_dqa_tmp_malaria_vf3 | part1_dqa_malaria_vf3 | part1_dqa_tmp_malaria_vf3_diff | part1_dqa_malaria_vf3_diff | part1_dqa_dat_accy43_DQ028_5c | part1_dqa_DQ028_5co | part1_dqa_dat_accy44_DQ028_6a | part1_dqa_dat_accy44_DQ028_6b | part1_dqa_tmp_dq028_6a | part1_dqa_tmp_dq028_6b | part1_dqa_tmp_pneumonia_vf3 | part1_dqa_pneumonia_vf3 | part1_dqa_tmp_pneumonia_vf3_diff | part1_dqa_pneumonia_vf3_diff | part1_dqa_dat_accy45_DQ028_6c | part1_dqa_DQ028_6co | part1_dqa_dat_accy46_DQ028_7a | part1_dqa_dat_accy46_DQ028_7b | part1_dqa_tmp_dq028_7a | part1_dqa_tmp_dq028_7b | part1_dqa_tmp_inpatient_vf3 | part1_dqa_inpatient_vf3 | part1_dqa_tmp_inpatient_vf3_diff | part1_dqa_inpatient_vf3_diff | part1_dqa_dat_accy47_DQ028_7c | part1_dqa_DQ028_7co | part1_dqa_dat_accy48_DQ028_8a | part1_dqa_dat_accy48_DQ028_8b | part1_dqa_tmp_dq028_8a | part1_dqa_tmp_dq028_8b | part1_dqa_tmp_tb_vf3 | part1_dqa_tb_vf3 | part1_dqa_tmp_tb_vf3_diff | part1_dqa_tb_vf3_diff | part1_dqa_dat_accy49_DQ028_8c | part1_dqa_DQ028_8co | part1_dqa_dat_accy50_dq029_1a | part1_dqa_dat_accy50_dq029_1b | part1_dqa_dat_accy50_dq029_1c | part1_dqa_dat_accy50_dq029_1d | part1_dqa_dat_accy51_dq029_1e | part1_dqa_dat_accy51_dq029_1f | part1_dqa_dat_accy51_dq029_1g | part1_dqa_dat_accy51_dq029_1h | part1_dqa_dat_accy52_dq029_2a | part1_dqa_dat_accy52_dq029_2b | part1_dqa_dat_accy52_dq029_2c | part1_dqa_dat_accy52_dq029_2d | part1_dqa_dat_accy53_dq029_2e | part1_dqa_dat_accy53_dq029_2f | part1_dqa_dat_accy53_dq029_2g | part1_dqa_dat_accy53_dq029_2h | part1_dqa_dat_accy54_dq029_3a | part1_dqa_dat_accy54_dq029_3b | part1_dqa_dat_accy54_dq029_3c | part1_dqa_dat_accy54_dq029_3d | part1_dqa_dat_accy55_dq029_3e | part1_dqa_dat_accy55_dq029_3f | part1_dqa_dat_accy55_dq029_3g | part1_dqa_dat_accy55_dq029_3h | part1_dqa_DQ030 | part1_dqa_dq030_rcd | part1_dqa_dqa_mech2_DQ031 | part1_dqa_dqa_mech2_DQ032 | part1_dqa_DQ033 | part1_dqa_dat_proc_anls1_DQ034 | part1_dqa_dat_proc_anls2_dq035a_label | part1_dqa_dat_proc_anls2_DQ035_1a | part1_dqa_dat_proc_anls2_DQ035_1b | part1_dqa_dat_proc_anls2_DQ035_2a | part1_dqa_dat_proc_anls2_DQ035_2b | part1_dqa_dat_proc_anls3_dq035b_label | part1_dqa_dat_proc_anls3_DQ035_3a | part1_dqa_dat_proc_anls3_DQ035_3b | part1_dqa_dat_proc_anls3_DQ035_4a | part1_dqa_dat_proc_anls3_DQ035_4b | part1_dqa_dat_proc_anls4_dq035c_label | part1_dqa_dat_proc_anls4_DQ035_5a | part1_dqa_dat_proc_anls4_DQ035_5b | part1_dqa_DQ035_5a_other | part1_dqa_DQ035_5b_other | part1_dqa_dat_proc_anls7_DQ036a | part1_dqa_dat_proc_anls7_DQ036b | part1_dqa_dat_proc_anls8_DQ036c | part1_dqa_dat_proc_anls8_DQ036d | part1_dqa_dat_proc_anls8_DQ036e | part1_dqa_dat_proc_anls9_DQ036f | part1_dqa_dat_proc_anls9_DQ036g | part1_dqa_dat_proc_anls9_DQ036h | part2_iu_datviz1_DU003 | part2_iu_datviz2_du004_label | part2_iu_datviz2_DU004a | part2_iu_datviz2_DU004b | part2_iu_datviz2_DU004c | part2_iu_datviz2_DU004d | part2_iu_datviz3_du004_label_2 | part2_iu_datviz3_DU004e | part2_iu_datviz3_DU004e2 | part2_iu_datviz3_DU004f | part2_iu_datviz3_DU004g | part2_iu_datviz3_DU004h | part2_iu_datviz4_du004_label_3 | part2_iu_datviz4_DU004i | part2_iu_datviz4_DU004j | part2_iu_datviz4_DU004k | part2_iu_datviz4_DU004l | part2_iu_datviz5_du004_label_4 | part2_iu_datviz5_DU004m | part2_iu_datviz5_DU004n | part2_iu_datviz6_du004_label_5 | part2_iu_datviz6_DU004o | part2_iu_datviz6_DU004p | part2_iu_datviz6_DU004q | part2_iu_datviz6_DU004r | part2_iu_datviz7_DU004a_label_1 | part2_iu_datviz7_DU004a_1 | part2_iu_datviz7_DU004b_1 | part2_iu_datviz7_DU004c_1 | part2_iu_datviz7_DU004d_1 | part2_iu_datviz8_DU004a_label_2 | part2_iu_datviz8_DU004e_1 | part2_iu_datviz8_DU004e2_1 | part2_iu_datviz8_DU004f_1 | part2_iu_datviz8_DU004g_1 | part2_iu_datviz8_DU004h_1 | part2_iu_datviz9_DU004a_label_3 | part2_iu_datviz9_DU004i_1 | part2_iu_datviz9_DU004j_1 | part2_iu_datviz9_DU004k_1 | part2_iu_datviz9_DU004l_1 | part2_iu_datviz10_DU004a_label_4 | part2_iu_datviz10_DU004m_1 | part2_iu_datviz10_DU004n_1 | part2_iu_datviz10_DU004o_1 | part2_iu_datviz10_DU004p_1 | part2_iu_datviz10_DU004q_1 | part2_iu_datviz10_DU004r_1 | part2_iu_rhis_rpt1_DU005 | part2_iu_rhis_rpt1_DU006 | SET_OF_part2_iu_rhis_rpt2 | part2_iu_rhis_rpt3_du008_label | part2_iu_rhis_rpt3_DU008_01 | part2_iu_rhis_rpt3_DU008_02 | part2_iu_rhis_rpt3_DU008_03 | part2_iu_rhis_rpt4_du008_label_1 | part2_iu_rhis_rpt4_DU008_04 | part2_iu_rhis_rpt4_DU008_05 | part2_iu_rhis_rpt4_DU008_06 | part2_iu_rhis_rpt4_DU008_07 | part2_iu_facil_fb1_DU009 | part2_iu_facil_fb2_DU010a | part2_iu_facil_fb2_DU010b | part2_iu_rtn_dcsn_mkg1_DU011 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg2_DU012 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg2_DU013 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg2_DU014 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg3_DU015_1 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg3_DU015_2 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg3_DU015_3 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg4_DU016 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg4_DU017 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg4_DU017o | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg5_DU018_1 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg5_DU018_2 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg5_DU018_3 | part2_iu_rtn_dcsn_mkg1_011_DU019 | part2_iu_rtn_dcsn_mkg1_011_DU019o | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg6_DU020a | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg6_DU020b | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg7_DU020c | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg7_DU020d | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg7_DU020e | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8a_DU021_label | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8a_DU021_1 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8a_DU021_2 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8a_DU021_3 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8b_DU021_label1 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8b_DU021_4 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8b_DU021_5 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8b_DU021_6 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg8b_DU021_7 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_DU021a | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_DU021b | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions1_DU021c_l | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions1_DU021c_1 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions1_DU021c_2 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions1_DU021c_3 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions1_DU021c_4 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions1_DU021c_5 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions2_DU021c_l | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions2_DU021c_6 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions2_DU021c_7 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions2_DU021c_8 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions2_DU021c_9 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_pmtdecisions2_DU021c_1 | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_rtn_dcsn_mkg9b_DU021d | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_rtn_dcsn_mkg9b_DU021e | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_rtn_dcsn_mkg9b_DU021f | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_DU021g | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_DU021h | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_DU021i | part2_iu_rtn_dcsn_mkg1_011_rtn_dcsn_mkg9_DU021io | part2_iu_rtn_dcsn_mkg1_011_DU022 | part2_iu_rtn_dcsn_mkg1_011_DU022_1 | part2_iu_annl_plng1_DU023 | part2_iu_annl_plng1_DU024 | part2_iu_annl_plng2_DU025 | part2_iu_annl_plng2_DU026 | part2_iu_supervision_hg1_DU028 | part2_iu_supervision_hg1_supervision_hg2_DU029 | part2_iu_supervision_hg1_supervision_hg2_DU030 | part2_iu_supervision_hg1_supervision_hg2_DU031 | part2_iu_supervision_hg1_supervision_hg3_DU032 | part2_iu_supervision_hg1_supervision_hg3_DU033 | part2_iu_supervision_hg1_supervision_hg4_DU034a | part2_iu_supervision_hg1_supervision_hg4_DU034b | part2_iu_supervision_hg1_supervision_hg4_DU035 | part2_iu_dat_dissem1_DU036 | part2_iu_dat_dissem1_DU037 | part2_iu_dat_dissem2_DU038 | part2_iu_dat_dissem2_DU039 | part2_iu_dat_dissem3_DU040 | part2_iu_dat_dissem3_DU041 | gps_DQ_110_Latitude | gps_DQ_110_Longitude | gps_DQ_110_Altitude | gps_DQ_110_Accuracy | meta_instanceID | meta_instanceName | formdef_version | review_quality | KEY |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| May 11, 2024 12:03:49 PM | May 11, 2024 11:43:35 AM | May 11, 2024 12:04:44 PM | 353316091282544 | impacteval | 1269 | May 11, 2024 | 1 | Addis Ababa | 1 | 1-Addis Ababa -1-0000000000 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 0 | 0 | 0 | 0 | 50 | 50 | 50 | 50 | 0 | 0 | 0 | 0 | 50 | 50 | 50 | 50 | 200 | 0 | 0 | 0 | 0 | 50 | 50 | 50 | 50 | 0 | 0 | 0 | 0 | 50 | 50 | 50 | 50 | 200 | 0 | 0 | 0 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 150 | 0 | 0 | 0 | 0 | 50 | 50 | 50 | 50 | 0 | 0 | 0 | 0 | 50 | 50 | 50 | 50 | 200 | 200 | 150 | 200 | 200 | 750 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 0 | 0 | 50 | 50 | 0 | 0 | 50 | 50 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 200 | 150 | 200 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 0 | 0 | 50 | 50 | 0 | 0 | 50 | 50 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 200 | 150 | 200 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 50 | 0 | 0 | 0 | 0 | 50 | 50 | 50 | 50 | 0 | 0 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 50 | 0 | 0 | 0 | 0 | 50 | 50 | 50 | 50 | 0 | 0 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 0 | 0 | 0 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 50 | 0 | 0 | 0 | 0 | 50 | 50 | 50 | 50 | 0 | 0 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 200 | 150 | 200 | 200 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 1 | 1 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 2 | 5 | 2 | 2 | 5 | 3 | 3 | 2 | 3 | 5 | 2 | 5 | 2 | 0.04 | 0.04 | 0.1 | 0.1 | 0.04 | 0.04 | 2 | 5 | 3 | 0.04 | 0.04 | 0.1 | 0.1 | 0.06 | 0.06 | 3 | 2 | 3 | 5 | 0.06 | 0.06 | 0.04 | 0.04 | 0.06 | 0.06 | 0.1 | 0.1 | 5 | 5 | 8 | 2 | 3 | 2 | 3 | 2 | 5 | 3 | 5 | 5 | 8 | 0.1 | 0.1 | 0.1 | 0.1 | 0.16 | 0.16 | 2 | 3 | 2 | 0.04 | 0.04 | 0.06 | 0.06 | 0.04 | 0.04 | 3 | 2 | 5 | 3 | 0.06 | 0.06 | 0.04 | 0.04 | 0.1 | 0.1 | 0.06 | 0.06 | 2 | 3 | 3 | 2 | 3 | 2 | 3 | 2 | 3 | 0.04 | 0.04 | 0.06 | 0.06 | 3 | 2 | 0.06 | 0.06 | 0.04 | 0.04 | 3 | 2 | 3 | 0.06 | 0.06 | 0.04 | 0.04 | 0.06 | 0.06 | 2 | 3 | 2 | 2 | 3 | 2 | 3 | 2 | 1 | 2 | 2 | 3 | 2 | 0.04 | 0.04 | 0.06 | 0.06 | 0.04 | 0.04 | 2 | 3 | 2 | 0.04 | 0.04 | 0.06 | 0.06 | 0.04 | 0.04 | 3 | 2 | 1 | 2 | 0.06 | 0.06 | 0.04 | 0.04 | 0.02 | 0.02 | 0.04 | 0.04 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 1 | 1 | 0 | 0 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 9.0519348 | 38.7434756 | 2553.699951171875 | 5.0 | uuid:8e386358-69c1-47b4-96b4-b38ed17b248b | 1-Addis Ababa -1-0000000000 | 2405102111 | uuid:8e386358-69c1-47b4-96b4-b38ed17b248b |
| May 16, 2024 4:48:59 PM | May 15, 2024 4:54:04 AM | May 16, 2024 4:48:26 PM | 353316097350188 | 636019912908519 | 89251011810129085199 | impacteval | 8102 | 10 | May 15, 2024 | 20 | Jarar zone | 46 | Bilcilbur | Bilcilbur WorHo head | 10-Jarar zone-46-0000000000 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 2 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 2 | 2 | 6 | 9 | 9 | 9 | 0 | 0 | 0 | 0 | 0 | 0 | 9 | 9 | 9 | 27 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 11 | 0 | 11 | 11 | 33 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 2 3 4 6 | 2 | 11 | 11 | 2 | 2 | 11 | 2 | 2 | 2 | 11 | 11 | 2 | 2 | 11 | 0 | 2 | 2 | 11 | 11 | 2 | 2 | 11 | 0 | 2 | 2 | 11 | 11 | 2 | 2 | 11 | 2 | 2 | 2 | 1 | 1 | 11 | 1 | 1 | 11 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 11 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 11 | 11 | 2 | 2 | 11 | 2 | 2 | 1 | 1 | 11 | 1 | 1 | 11 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 11 | 1 | 1 | 0 | 2 | 1 | 1 | 2 | 11 | 11 | 2 | 2 | 11 | 2 | 2 | 1 | 1 | 11 | 1 | 1 | 11 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 11 | 1 | 1 | 0 | 2 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 2 5 | 1 | 30 | 0 | 0 | 21 | 9 | 21 | 9 | 2.3333333333333335 | 2.33 | 1.33 | 1.33 | 2 5 | 23 | 3 | 23 | 3 | 7.666666666666667 | 7.67 | 6.67 | 6.67 | 5 | 30 | 26 | 30 | 26 | 1.1538461538461537 | 1.15 | 0.1499999999999999 | 0.15 | 5 | 0 | 0 | 0.9999 | 0.9999 | 1 | 1 | 0 | 0 | 8 | 0 | 8 | 0.9999 | 8.000800080008 | 8 | 7 | 7 | 5 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0.9999 | 0.9999 | 1 | 1 | 0 | 0 | 0 | 0 | 0.9999 | 0.9999 | 1 | 1 | 0 | 0 | 16 | 16 | 16 | 16 | 1 | 1 | 0 | 0 | 3 | 3 | 3 | 3 | 1 | 1 | 0 | 0 | 32 | 23 | 32 | 23 | 1.391304347826087 | 1.39 | 0.3899999999999999 | 0.39 | 5 | 0 | 0 | 0.9999 | 0.9999 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 5 | 2 | 5 | 2 | 2.5 | 2.5 | 1.5 | 1.5 | 5 | 0 | 0 | 0.9999 | 0.9999 | 1 | 1 | 0 | 0 | 0 | 0 | 0.9999 | 0.9999 | 1 | 1 | 0 | 0 | 11 | 11 | 11 | 11 | 1 | 1 | 0 | 0 | 12 | 0 | 12 | 0.9999 | 12.001200120012001 | 12 | 11 | 11 | 5 | 10 | 8 | 10 | 8 | 1.25 | 1.25 | 0.25 | 0.25 | 5 | 0 | 0 | 0.9999 | 0.9999 | 1 | 1 | 0 | 0 | 0 | 0 | 0.9999 | 0.9999 | 1 | 1 | 0 | 0 | 7 | 3 | 7 | 3 | 2.3333333333333335 | 2.33 | 1.33 | 1.33 | 5 | 0 | 0 | 0.9999 | 0.9999 | 1 | 1 | 0 | 0 | 0 | 0 | 0.9999 | 0.9999 | 1 | 1 | 0 | 0 | 9 | 3 | 26 | 0 | 0 | 1 | 0 | 0 | 16 | 3 | 23 | 0 | 1 | 2 | 0 | 0 | 11 | 0 | 8 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 4 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 8.4729043 | 43.2505719 | 1266.6380769889372 | 5.0 | uuid:3ab64769-cb4c-4cbe-8085-373ced222c1a | 10-Jarar zone-46-0000000000 | 2405131509 | uuid:3ab64769-cb4c-4cbe-8085-373ced222c1a | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| May 17, 2024 11:14:11 AM | May 15, 2024 8:21:41 AM | May 16, 2024 8:41:41 PM | 353316091470263 | impacteval | 13444 | 1 | May 15, 2024 | 3 | 001 | 2 | Kolfe Sub City Health Office | 1-001-2-0000000000 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 1 | 1 | 1 | 3 | 3 | 0 | 3 | 4 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 7 | 7 | 7 | 7 | 0 | 0 | 0 | 0 | 7 | 7 | 7 | 7 | 28 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 131 | 0 | 131 | 0 | 17 | 4 | 15 | 5 | 0 | 0 | 0 | 0 | 148 | 4 | 146 | 5 | 303 | 155 | 11 | 153 | 12 | 331 | 7 | 7 | 7 | 0 | 0 | 0 | 7 | 7 | 7 | 0 | 0 | 0 | 7 | 7 | 7 | 1 | 1 | 1 | 1 | 1 | 1 | 29 | 29 | 17 | 3 | 14 | 29 | 0 | 29 | 17 | 3 | 14 | 0 | 0 | 0 | 46 | 3 | 43 | 0.3108108108108108 | 0.31 | 0.75 | 0.75 | 0.2945205479452055 | 0.29 | 0 | 0 | 0 | 7 | 7 | 7 | 0 | 0 | 46 | 3 | 43 | 53 | 10 | 50 | 0.3419354838709677 | 0.34 | 0.9090909090909091 | 0.91 | 0.32679738562091504 | 0.33 | 7 | 7 | 7 | 0 | 0 | 0 | 7 | 7 | 7 | 0 | 0 | 0 | 7 | 7 | 7 | 1 | 1 | 1 | 1 | 1 | 1 | 23 | 23 | 17 | 0 | 14 | 23 | 0 | 23 | 17 | 0 | 14 | 0 | 0 | 0 | 40 | 0 | 37 | 0.2702702702702703 | 0.27 | 0 | 0 | 0.2534246575342466 | 0.25 | 0 | 0 | 0 | 7 | 7 | 7 | 0 | 0 | 40 | 0 | 37 | 47 | 7 | 44 | 0.3032258064516129 | 0.3 | 0.6363636363636364 | 0.64 | 0.2875816993464052 | 0.29 | 7 | 7 | 7 | 7 | 0 | 0 | 0 | 0 | 7 | 7 | 7 | 7 | 0 | 0 | 0 | 0 | 7 | 7 | 7 | 7 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 35 | 35 | 17 | 1 | 14 | 0 | 35 | 0 | 35 | 0 | 17 | 1 | 14 | 0 | 0 | 0 | 0 | 0 | 52 | 1 | 49 | 0 | 0.35135135135135137 | 0.35 | 0.25 | 0.25 | 0.3356164383561644 | 0.34 | 0 | 0 | 0 | 0 | 0 | 0 | 7 | 7 | 7 | 7 | 0 | 0 | 0 | 52 | 1 | 49 | 0 | 59 | 8 | 56 | 7 | 0.38064516129032255 | 0.38 | 0.7272727272727273 | 0.73 | 0.3660130718954248 | 0.37 | 0.5833333333333334 | 0.58 | 1 3 96 | Not having responsible persons in the private facilities, staffs turnover | 16 | 23 | 16 | 15 | 9 | 15 | 11 | 14 | 16 | 23 | 16 | 15 | 9 | 15 | 11 | 14 | 16 | 23 | 16 | 15 | 9 | 15 | 11 | 14 | 16 | 23 | 16 | 15 | 9 | 15 | 11 | 14 | 16 | 1 | 1 | 23 | 1 | 1 | 16 | 1 | 1 | 15 | 1 | 1 | 9 | 1 | 1 | 15 | 1 | 1 | 11 | 1 | 1 | 14 | 1 | 1 | 16 | 23 | 16 | 15 | 9 | 15 | 11 | 14 | 16 | 1 | 1 | 23 | 1 | 1 | 16 | 1 | 1 | 15 | 1 | 1 | 9 | 1 | 1 | 15 | 1 | 1 | 11 | 1 | 1 | 14 | 1 | 1 | 16 | 23 | 16 | 15 | 9 | 15 | 11 | 14 | 16 | 1 | 1 | 23 | 1 | 1 | 16 | 1 | 1 | 15 | 1 | 1 | 9 | 1 | 1 | 15 | 1 | 1 | 11 | 1 | 1 | 14 | 1 | 1 | 16 | 23 | 16 | 15 | 9 | 15 | 11 | 14 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 16 | 23 | 16 | 15 | 9 | 15 | 11 | 14 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 16 | 23 | 16 | 15 | 9 | 15 | 11 | 14 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 26 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 7 | 7 | 7 | 7 | 7 | 7 | 7 | 7 | 7 | 7 | 7 | 7 | 7 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | 7 | 7 | 1 | 1 | 1 | 1 | 1 | 1 | 7 | 7 | 7 | 7 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 30 | 3 | 30 | 30 | 30 | 28 | 0 | 28 | 30 | 3 | 30 | 0.6521739130434783 | 0.65 | 1 | 1 | 0.6976744186046512 | 0.7 | 30 | 0 | 30 | 0.75 | 0.75 | 0.8108108108108109 | 0.81 | 28 | 0 | 28 | 0 | 0.5384615384615384 | 0.54 | 0 | 0 | 0.5714285714285714 | 0.57 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 704 | 704 | 704 | 704 | 1 | 1 | 0 | 0 | 1835 | 1835 | 1835 | 1835 | 1 | 1 | 0 | 0 | 1401 | 1401 | 1401 | 1401 | 1 | 1 | 0 | 0 | 26 | 26 | 26 | 26 | 1 | 1 | 0 | 0 | 46 | 46 | 46 | 46 | 1 | 1 | 0 | 0 | 657 | 657 | 657 | 657 | 1 | 1 | 0 | 0 | 0 | 0 | 0.9999 | 0.9999 | 1 | 1 | 0 | 0 | 57 | 56 | 57 | 56 | 1.0178571428571428 | 1.02 | 0.020000000000000018 | 0.02 | 5 | 677 | 677 | 677 | 677 | 1 | 1 | 0 | 0 | 1951 | 1951 | 1951 | 1951 | 1 | 1 | 0 | 0 | 1332 | 1332 | 1332 | 1332 | 1 | 1 | 0 | 0 | 34 | 34 | 34 | 34 | 1 | 1 | 0 | 0 | 42 | 42 | 42 | 42 | 1 | 1 | 0 | 0 | 605 | 605 | 605 | 605 | 1 | 1 | 0 | 0 | 0 | 0 | 0.9999 | 0.9999 | 1 | 1 | 0 | 0 | 53 | 53 | 53 | 53 | 1 | 1 | 0 | 0 | 618 | 618 | 618 | 618 | 1 | 1 | 0 | 0 | 1786 | 1786 | 1786 | 1786 | 1 | 1 | 0 | 0 | 1330 | 1330 | 1330 | 1330 | 1 | 1 | 0 | 0 | 29 | 30 | 29 | 30 | 0.9666666666666667 | 0.97 | 0.030000000000000027 | 0.03 | 2 | 28 | 28 | 28 | 28 | 1 | 1 | 0 | 0 | 815 | 815 | 815 | 815 | 1 | 1 | 0 | 0 | 0 | 0 | 0.9999 | 0.9999 | 1 | 1 | 0 | 0 | 70 | 53 | 70 | 53 | 1.320754716981132 | 1.32 | 0.32000000000000006 | 0.32 | 3 | 2130 | 6878 | 1858 | 94 | 106 | 1314 | 0 | 114 | 2120 | 7642 | 1841 | 122 | 96 | 1240 | 0 | 106 | 1930 | 7072 | 1848 | 120 | 74 | 1640 | 0 | 152 | 2 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | Priority Towns Quality Improvement Tool (PTQIT) | Priority Towns Quality Improvement Tool (PTQIT) | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 2 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 2 | 0 | 1 | 1 | 1 | 1 | 1 | 2 | 3 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 2 | 0 | 2 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 2 | 1 | 1 | 1 | 0 | 1 | 0 | 9.0021599 | 38.6987068 | 2397.0 | 4.5 | uuid:5aa43ab2-0c55-4c77-9ecf-781113b096aa | 1-001-2-0000000000 | 2405131509 | uuid:5aa43ab2-0c55-4c77-9ecf-781113b096aa |
| May 17, 2024 6:47:50 PM | May 16, 2024 6:22:30 AM | May 17, 2024 6:47:39 PM | 357812080569962 | impacteval | 8088 | 6 | May 16, 2024 | 27 | 01 | 7 | Abol woreda health bureau | 6-01-7-0000000000 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 1 | 1 | 0 | 3 | 3 | 0 | 2 | 4 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 2 | 2 | 2 | 0 | 0 | 0 | 0 | 2 | 2 | 2 | 2 | 8 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 3 | 2 | 2 | 2 | 9 | 2 | 2 | 2 | 0 | 0 | 0 | 2 | 2 | 2 | 0 | 0 | 0 | 2 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 2 | 2 | 2 | 0 | 0 | 1 | 0 | 0 | 3 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 2 | 0 | 0 | 0 | 2 | 2 | 2 | 0 | 0 | 0 | 2 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 2 | 2 | 2 | 0 | 0 | 1 | 0 | 0 | 3 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 2 | 2 | 0 | 0 | 0 | 0 | 2 | 2 | 2 | 2 | 0 | 0 | 0 | 0 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 2 | 2 | 2 | 2 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 3 | 2 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 26 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0.5 | 0.5 | 0 | 0 | 0.5 | 0.5 | 0.5 | 0.5 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 9 | 9 | 45 | 45 | 18 | 18 | 1 | 1 | 273 | 273 | 7 | 7 | 0 | 0.9999 | 1 | 1 | 11 | 11 | 57 | 57 | 30 | 30 | 2 | 2 | 145 | 145 | 18 | 18 | 0 | 0.9999 | 1 | 1 | 10 | 10 | 65 | 65 | 53 | 53 | 0 | 0.9999 | 143 | 143 | 10 | 10 | 0 | 0.9999 | 0 | 0.9999 | 18 | 102 | 22 | 11 | 847 | 12 | 0 | 2 | 21 | 90 | 38 | 2 | 670 | 27 | 0 | 1 | 15 | 153 | 71 | 1 | 447 | 22 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 2 | 2 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 2 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 2 | 0 | 0 | 1 | 0 | 1 | 8.2677874 | 34.457861 | 447.0 | 5.0 | uuid:f8f83a9f-6495-465d-9b15-ec5f3111f874 | 6-01-7-0000000000 | 2405131509 | uuid:f8f83a9f-6495-465d-9b15-ec5f3111f874 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| May 18, 2024 3:10:53 AM | May 14, 2024 8:46:32 AM | May 18, 2024 3:10:34 AM | 353316097350824 | impacteval | 11135 | 11 | May 14, 2024 | 13 | North Sidama Zone_001 | 29 | M&E unit, MCH, HIV | 11-North Sidama Zone_001-29-0000000000 | 1 | 5 | Tir 2016 | 6 | Yekatit 2016 | 7 | Megabit 2016 | 1 | 1 | 1 | 1 | 1 | 3 | 3 | 0 | 2 | 2 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 4 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 4 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 2 | 2 | 2 | 0 | 0 | 0 | 0 | 2 | 2 | 2 | 2 | 4 | 4 | 4 | 4 | 16 | 6 | 6 | 6 | 6 | 24 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 2 | 1 | 2 | 0.3333333333333333 | 0.33 | 0.16666666666666666 | 0.17 | 0.3333333333333333 | 0.33 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 2 | 1 | 2 | 0.3333333333333333 | 0.33 | 0.16666666666666666 | 0.17 | 0.3333333333333333 | 0.33 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 1 | 2 | 2 | 0.3333333333333333 | 0.33 | 0.16666666666666666 | 0.17 | 0.3333333333333333 | 0.33 | 0.3333333333333333 | 0.33 | 96 | Training is not given for private facilities | 2 | 4 | 2 | 4 | 4 | 4 | 1 | 2 | 2 | 4 | 2 | 4 | 4 | 4 | 1 | 2 | 2 | 4 | 2 | 4 | 4 | 4 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 2 | 2 | 1 | 1 | 2 | 0.5 | 0.5 | 2 | 1 | 1 | 2 | 0.5 | 0.5 | 2 | 0.5 | 0.5 | 2 | 0.5 | 0.5 | 1 | 1 | 1 | 2 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 2 | 2 | 1 | 1 | 2 | 0.5 | 0.5 | 2 | 1 | 1 | 2 | 0.5 | 0.5 | 2 | 0.5 | 0.5 | 2 | 0.5 | 0.5 | 1 | 1 | 1 | 2 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 2 | 2 | 1 | 1 | 2 | 0.5 | 0.5 | 2 | 1 | 1 | 2 | 0.5 | 0.5 | 2 | 0.5 | 0.5 | 2 | 0.5 | 0.5 | 1 | 1 | 1 | 2 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 0.5 | 0.5 | 1 | 1 | 1 | 1 | 1 | 1 | 0.5 | 0.5 | 1 | 1 | 0.5 | 0.5 | 1 | 1 | 0.5 | 0.5 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 0.5 | 0.5 | 1 | 1 | 1 | 1 | 1 | 1 | 0.5 | 0.5 | 1 | 1 | 0.5 | 0.5 | 1 | 1 | 0.5 | 0.5 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 0.5 | 0.5 | 1 | 1 | 1 | 1 | 1 | 1 | 0.5 | 0.5 | 1 | 1 | 0.5 | 0.5 | 1 | 1 | 0.5 | 0.5 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 26 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 177 | 177 | 177 | 177 | 1 | 1 | 0 | 0 | 389 | 389 | 389 | 389 | 1 | 1 | 0 | 0 | 222 | 222 | 222 | 222 | 1 | 1 | 0 | 0 | 2 | 2 | 2 | 2 | 1 | 1 | 0 | 0 | 412 | 412 | 412 | 412 | 1 | 1 | 0 | 0 | 97 | 97 | 97 | 97 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 15 | 15 | 15 | 15 | 1 | 1 | 0 | 0 | 146 | 146 | 146 | 146 | 1 | 1 | 0 | 0 | 322 | 322 | 322 | 322 | 1 | 1 | 0 | 0 | 190 | 190 | 190 | 190 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 355 | 355 | 355 | 355 | 1 | 1 | 0 | 0 | 76 | 76 | 76 | 76 | 1 | 1 | 0 | 0 | 0 | 0 | 0.9999 | 0.9999 | 1 | 1 | 0 | 0 | 21 | 21 | 21 | 21 | 1 | 1 | 0 | 0 | 174 | 174 | 174 | 174 | 1 | 1 | 0 | 0 | 327 | 327 | 327 | 327 | 1 | 1 | 0 | 0 | 150 | 150 | 150 | 150 | 1 | 1 | 0 | 0 | 3 | 3 | 3 | 3 | 1 | 1 | 0 | 0 | 241 | 241 | 241 | 241 | 1 | 1 | 0 | 0 | 78 | 78 | 78 | 78 | 1 | 1 | 0 | 0 | 0 | 0 | 0.9999 | 0.9999 | 1 | 1 | 0 | 0 | 20 | 20 | 20 | 20 | 1 | 1 | 0 | 0 | 177 | 389 | 222 | 2 | 412 | 97 | 1 | 15 | 146 | 322 | 190 | 1 | 355 | 76 | 0 | 21 | 174 | 327 | 150 | 3 | 241 | 78 | 0 | 20 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 2 | 2 | 1 | 1 | 1 | 0 | 0 | 2 | 2 | 2 | 2 | 0 | 0 | 2 | 2 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 1 | uuid:8e9a741a-fa8c-491d-8275-4858922cb37d/rhis_rpt2 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 3 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 7.046477 | 38.6115466 | 1731.0 | 7.0 | uuid:8e9a741a-fa8c-491d-8275-4858922cb37d | 11-North Sidama Zone_001-29-0000000000 | 2405131509 | uuid:8e9a741a-fa8c-491d-8275-4858922cb37d |
Showing 5 sample records. Hover over cells to see full content.
ethprism_organizational_and_behavioral_assessment
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| CompletionDate | text | Yes | NULL | Date/time field | |
| SubmissionDate | text | Yes | NULL | Date/time field | |
| starttime | text | Yes | NULL | Date/time field | |
| endtime | text | Yes | NULL | Date/time field | |
| deviceid | text | Yes | NULL | ||
| subscriberid | text | Yes | NULL | ||
| simid | text | Yes | NULL | ||
| devicephonenum | text | Yes | NULL | Phone number field | |
| username | text | Yes | NULL | Name or title field | |
| duration | text | Yes | NULL | ||
| caseid | text | Yes | NULL | ||
| OBAT101 | text | Yes | NULL | ||
| OBAT102 | text | Yes | NULL | ||
| OBAT104 | text | Yes | NULL | ||
| admin_lvl | text | Yes | NULL | ||
| OBAT105 | text | Yes | NULL | ||
| OBAT106 | text | Yes | NULL | ||
| OBAT107 | text | Yes | NULL | ||
| OBAT108 | text | Yes | NULL | ||
| tmp_obat106 | text | Yes | NULL | ||
| tmp_obat107 | text | Yes | NULL | ||
| tmp_obat108 | text | Yes | NULL | ||
| siteid | text | Yes | NULL | ||
| OBAT109f | text | Yes | NULL | ||
| OBAT110f | text | Yes | NULL | ||
| OBAT111 | text | Yes | NULL | ||
| OBAT112 | text | Yes | NULL | ||
| intro | text | Yes | NULL | ||
| DD1 | text | Yes | NULL | ||
| DD2 | text | Yes | NULL | ||
| DD3a | text | Yes | NULL | ||
| DD3b | text | Yes | NULL | ||
| DD4a | text | Yes | NULL | ||
| DD4b | text | Yes | NULL | ||
| DD5a | text | Yes | NULL | ||
| DD5b | text | Yes | NULL | ||
| DD5c_2 | text | Yes | NULL | ||
| sect1.2_note1 | text | Yes | NULL | Descriptive text field | |
| sect1.2_note2 | text | Yes | NULL | Descriptive text field | |
| D1 | text | Yes | NULL | ||
| D2 | text | Yes | NULL | ||
| sect1.2_note3 | text | Yes | NULL | Descriptive text field | |
| D3 | text | Yes | NULL | ||
| D4 | text | Yes | NULL | ||
| sect1.2_note4 | text | Yes | NULL | Descriptive text field | |
| D5 | text | Yes | NULL | ||
| D6 | text | Yes | NULL | ||
| D7 | text | Yes | NULL | ||
| sect1.2_note5 | text | Yes | NULL | Descriptive text field | |
| D8 | text | Yes | NULL | ||
| D9 | text | Yes | NULL | ||
| D10 | text | Yes | NULL | ||
| sect1.2_note6 | text | Yes | NULL | Descriptive text field | |
| S1 | text | Yes | NULL | ||
| S2 | text | Yes | NULL | ||
| sect1.2_note7 | text | Yes | NULL | Descriptive text field | |
| S3 | text | Yes | NULL | ||
| S4 | text | Yes | NULL | ||
| sect1.2_note8 | text | Yes | NULL | Descriptive text field | |
| S5 | text | Yes | NULL | ||
| S6 | text | Yes | NULL | ||
| sect1.2_note9 | text | Yes | NULL | Descriptive text field | |
| S7a | text | Yes | NULL | ||
| S7b | text | Yes | NULL | ||
| sect1.2_note10 | text | Yes | NULL | Descriptive text field | |
| S8 | text | Yes | NULL | ||
| S9 | text | Yes | NULL | ||
| sect1.2_note11 | text | Yes | NULL | Descriptive text field | |
| P1 | text | Yes | NULL | ||
| P2 | text | Yes | NULL | ||
| sect1.2_note12 | text | Yes | NULL | Descriptive text field | |
| P3 | text | Yes | NULL | ||
| P4 | text | Yes | NULL | ||
| sect1.2_note13 | text | Yes | NULL | Descriptive text field | |
| P5 | text | Yes | NULL | ||
| P6 | text | Yes | NULL | ||
| sect1.2_note14 | text | Yes | NULL | Descriptive text field | |
| P7 | text | Yes | NULL | ||
| P8 | text | Yes | NULL | ||
| sect1.2_note15 | text | Yes | NULL | Descriptive text field | |
| P9 | text | Yes | NULL | ||
| P10 | text | Yes | NULL | ||
| sect1.2_note16 | text | Yes | NULL | Descriptive text field | |
| P11 | text | Yes | NULL | ||
| P12 | text | Yes | NULL | ||
| sect1.2_note18 | text | Yes | NULL | Descriptive text field | |
| BC1 | text | Yes | NULL | ||
| BC2 | text | Yes | NULL | ||
| sect1.2_note19 | text | Yes | NULL | Descriptive text field | |
| BC3 | text | Yes | NULL | ||
| BC4 | text | Yes | NULL | ||
| sect1.2_note20 | text | Yes | NULL | Descriptive text field | |
| BC5 | text | Yes | NULL | ||
| BC6 | text | Yes | NULL | ||
| knowledge_note1 | text | Yes | NULL | Descriptive text field | |
| U1A | text | Yes | NULL | ||
| U1B | text | Yes | NULL | ||
| U1C | text | Yes | NULL | ||
| U1E | text | Yes | NULL | ||
| U1F | text | Yes | NULL | ||
| note_dqknowledge1 | text | Yes | NULL | Descriptive text field | |
| U2 | text | Yes | NULL | ||
| U3 | text | Yes | NULL | ||
| sect1.4_note | text | Yes | NULL | Descriptive text field | |
| SE1 | text | Yes | NULL | ||
| SE2 | text | Yes | NULL | ||
| SE3 | text | Yes | NULL | ||
| SE4 | text | Yes | NULL | ||
| SE5 | text | Yes | NULL | ||
| SE6 | text | Yes | NULL | ||
| sect2.1_note1 | text | Yes | NULL | Descriptive text field | |
| Psa | text | Yes | NULL | ||
| PSb | text | Yes | NULL | ||
| PSc | text | Yes | NULL | ||
| CF1 | text | Yes | NULL | ||
| sect3.1_note2 | text | Yes | NULL | Descriptive text field | |
| CF2a | text | Yes | NULL | ||
| CF2b | text | Yes | NULL | ||
| CF2c | text | Yes | NULL | ||
| sect3.1_note3 | text | Yes | NULL | Descriptive text field | |
| CF2d1 | text | Yes | NULL | ||
| CF2d2 | text | Yes | NULL | ||
| sect3.1_note4 | text | Yes | NULL | Descriptive text field | |
| CF3a | text | Yes | NULL | ||
| CF3b | text | Yes | NULL | ||
| CF3c | text | Yes | NULL | ||
| OBAT113 | text | Yes | NULL | ||
| instanceID | text | Yes | NULL | ||
| instanceName | text | Yes | NULL | Name or title field | |
| formdef_version | text | Yes | NULL | ||
| review_quality | text | Yes | NULL | ||
| review_status | text | Yes | NULL | ||
| KEY | text | Yes | NULL | ||
| OBAT109h | text | Yes | NULL | ||
| OBAT110h | text | Yes | NULL | ||
| DD5c_4 | text | Yes | NULL | ||
| sect2.1_note2 | text | Yes | NULL | Descriptive text field | |
| CD1 | text | Yes | NULL | ||
| CD2e_01 | text | Yes | NULL | ||
| CD2e_02 | text | Yes | NULL | ||
| CD2a | text | Yes | NULL | ||
| CD2b | text | Yes | NULL | ||
| CD2c | text | Yes | NULL | ||
| sect2.1_note3 | text | Yes | NULL | Descriptive text field | |
| CD2d1 | text | Yes | NULL | ||
| CD2d2 | text | Yes | NULL | ||
| CD2d3 | text | Yes | NULL | ||
| sect2.1_note4 | text | Yes | NULL | Descriptive text field | |
| CD3 | text | Yes | NULL | ||
| CD4 | text | Yes | NULL | ||
| sect4.1_note2 | text | Yes | NULL | Descriptive text field | |
| CS2a | text | Yes | NULL | ||
| CS2b | text | Yes | NULL | ||
| CS2c | text | Yes | NULL | ||
| sect4.1_note3 | text | Yes | NULL | Descriptive text field | |
| CS2d1 | text | Yes | NULL | ||
| CS2d2 | text | Yes | NULL | ||
| sect4.1_note4 | text | Yes | NULL | Descriptive text field | |
| CS3 | text | Yes | NULL | ||
| CS4 | text | Yes | NULL | ||
| DD5c_1 | text | Yes | NULL | ||
| DD5c_3 | text | Yes | NULL | ||
| DD5c_96 | text | Yes | NULL | ||
| DD5co | text | Yes | NULL | ||
| DD3bo | text | Yes | NULL | ||
| DD1o | text | Yes | NULL | ||
| DD5c_5 | text | Yes | NULL | ||
| Res_id | text | Yes | NULL | ||
| dtc | text | Yes | NULL | ||
| OBAT107_Other | text | Yes | NULL | ||
| DD5c | text | Yes | NULL |
This table has no foreign key relationships.
| CompletionDate | SubmissionDate | starttime | endtime | deviceid | subscriberid | simid | devicephonenum | username | duration | caseid | OBAT101 | OBAT102 | OBAT104 | admin_lvl | OBAT105 | OBAT106 | OBAT107 | OBAT108 | tmp_obat106 | tmp_obat107 | tmp_obat108 | siteid | OBAT109f | OBAT110f | OBAT111 | OBAT112 | intro | DD1 | DD2 | DD3a | DD3b | DD4a | DD4b | DD5a | DD5b | DD5c_2 | sect1.2_note1 | sect1.2_note2 | D1 | D2 | sect1.2_note3 | D3 | D4 | sect1.2_note4 | D5 | D6 | D7 | sect1.2_note5 | D8 | D9 | D10 | sect1.2_note6 | S1 | S2 | sect1.2_note7 | S3 | S4 | sect1.2_note8 | S5 | S6 | sect1.2_note9 | S7a | S7b | sect1.2_note10 | S8 | S9 | sect1.2_note11 | P1 | P2 | sect1.2_note12 | P3 | P4 | sect1.2_note13 | P5 | P6 | sect1.2_note14 | P7 | P8 | sect1.2_note15 | P9 | P10 | sect1.2_note16 | P11 | P12 | sect1.2_note18 | BC1 | BC2 | sect1.2_note19 | BC3 | BC4 | sect1.2_note20 | BC5 | BC6 | knowledge_note1 | U1A | U1B | U1C | U1E | U1F | note_dqknowledge1 | U2 | U3 | sect1.4_note | SE1 | SE2 | SE3 | SE4 | SE5 | SE6 | sect2.1_note1 | Psa | PSb | PSc | CF1 | sect3.1_note2 | CF2a | CF2b | CF2c | sect3.1_note3 | CF2d1 | CF2d2 | sect3.1_note4 | CF3a | CF3b | CF3c | OBAT113 | instanceID | instanceName | formdef_version | review_quality | review_status | KEY | OBAT109h | OBAT110h | DD5c_4 | sect2.1_note2 | CD1 | CD2e_01 | CD2e_02 | CD2a | CD2b | CD2c | sect2.1_note3 | CD2d1 | CD2d2 | CD2d3 | sect2.1_note4 | CD3 | CD4 | sect4.1_note2 | CS2a | CS2b | CS2c | sect4.1_note3 | CS2d1 | CS2d2 | sect4.1_note4 | CS3 | CS4 | DD5c_1 | DD5c_3 | DD5c_96 | DD5co | DD3bo | DD1o | DD5c_5 | Res_id | dtc | OBAT107_Other | DD5c |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Jun 4, 2024 7:28:33 AM | Jun 4, 2024 7:28:33 AM | Jun 4, 2024 7:06:16 AM | Jun 4, 2024 7:23:39 AM | 353316097353265 | impacteval | 1042 | May 22, 2024 | Legesse Hirpa | 3 | 2 | 8 | East Bale | 17 | 001 | East Bale | 17 | 001 | 8-East Bale -17-001 | Gololcha Primary Hospital | 1 | 1 | 11:00:22 PM | 5 | 2 | 3 | 7 | 7 | 7 | 1 | 0 | 1 | 4 | 4 | 4 | 5 | 5 | 3 | 4 | 4 | 4 | 3 | 4 | 4 | 5 | 3 | 4 | 5 | 5 | 4 | 4 | 5 | 5 | 5 | 4 | 5 | 4 | 4 | 3 | 4 | 3 | 4 | 4 | 5 | 5 | 5 | 5 | 5 | 3 | 4 | 2 | 3 | 3 | 2 | 3 | 0 | 1 | 10 | 9 | 9 | 8 | 9 | 8 | 0 | 2 | 0 | 0 | 0 | 2 | 2 | 0 | 1 | 1 | 1 | 0 | 1:10:37 AM | uuid:dc77e9c1-e9f8-46b0-b1c8-a08fd21f8a01 | 8-East Bale -17-001 | 2406031604 | APPROVED | uuid:dc77e9c1-e9f8-46b0-b1c8-a08fd21f8a01 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | ||||||||||||||||||||||||||||||||
| Jun 4, 2024 7:28:33 AM | Jun 4, 2024 7:28:33 AM | Jun 4, 2024 6:27:19 AM | Jun 4, 2024 7:00:31 AM | 353316097353265 | impacteval | 1992 | May 21, 2024 | Feyisa Tolessa | 7 | 1 | 8 | East Bale | 17 | NULL | East Bale | 17 | 0000000000 | 8-East Bale -17-0000000000 | NULL | NULL | NULL | 6:30:32 AM | 2 | 1 | 3 | 5 | 16 | 12 | 1 | 0 | 1 | 4 | 4 | 4 | 4 | 4 | 4 | 4 | 5 | 4 | 5 | 4 | 5 | 3 | 4 | 5 | 4 | 4 | 4 | 5 | 4 | 4 | 3 | 4 | 4 | 4 | 4 | 4 | 3 | 4 | 4 | 4 | 4 | 4 | 4 | 4 | 4 | 5 | 4 | 3 | 3 | 2 | 3 | 3 | 0 | 0 | 9 | 8 | 8 | 8 | 8 | 9 | 1 | 0 | 1 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 9:30:30 AM | uuid:e4583549-1075-4c4a-b703-a6c83c3c1ad4 | 8-East Bale -17-0000000000 | 2406031604 | APPROVED | uuid:e4583549-1075-4c4a-b703-a6c83c3c1ad4 | Plan, Budget, M and E process owner | Gololcha woreda health office | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | ||||||||||||||||||||||||||||||||
| Jun 4, 2024 7:28:34 AM | Jun 4, 2024 7:28:34 AM | Jun 3, 2024 1:16:09 PM | Jun 4, 2024 7:28:00 AM | 353316097353265 | impacteval | 2153 | Jun 3, 2024 | Legesse Hirpa | 6 | 2 | 8 | East Bale | 19 | 004 | East Bale | 19 | 004 | 8-East Bale-19-004 | Arda Galma Health Post | 2 | 1 | 1:15:17 AM | 7 | 2 | 3 | 8 | 12 | 12 | 0 | NULL | NULL | 3 | 4 | 4 | 5 | 5 | 5 | 5 | 4 | 4 | 4 | 5 | 5 | 5 | 4 | 4 | 5 | 5 | 5 | 5 | 5 | 4 | 4 | 5 | 5 | 3 | 5 | 5 | 4 | 3 | 4 | 4 | 4 | 3 | 4 | 5 | 5 | 5 | 2 | 3 | 3 | 3 | 3 | 3 | 0 | 0 | 9 | 9 | 9 | 10 | 9 | 9 | 0 | 1 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 2:32:29 AM | uuid:bd192342-a716-4046-8bd2-306c9f3d741d | 8-East Bale-19-004 | 2406031604 | APPROVED | uuid:bd192342-a716-4046-8bd2-306c9f3d741d | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 0 | 0 | 1 | 0 | 0 | 0 | 0 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | ||||||||||||||||||||||||||||||||
| Jun 4, 2024 7:28:34 AM | Jun 4, 2024 7:28:34 AM | Jun 4, 2024 6:04:35 AM | Jun 4, 2024 6:24:22 AM | 353316097353265 | impacteval | 1187 | May 14, 2024 | Legesse Hirpa | 4 | 2 | 8 | East Bale | 18 | 002 | East Bale | 18 | 002 | 8-East Bale -18-002 | Bahima Health Center | 1 | 1 | 9:30:14 AM | 4 | 1 | 3 | 6 | 3 | 0 | 0 | NULL | NULL | 1 | 4 | 5 | 3 | 1 | 3 | 4 | 4 | 4 | 5 | 4 | 5 | 5 | 4 | 4 | 4 | 5 | 4 | 5 | 5 | 4 | 5 | 4 | 4 | 4 | 4 | 4 | 4 | 5 | 4 | 5 | 4 | 2 | 5 | 5 | 4 | 5 | 3 | 3 | 3 | 3 | 3 | 1 | 1 | 6 | 4 | 1 | 10 | 8 | 7 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 0 | 0 | 0 | 0 | 1 | 12:15:21 AM | uuid:890a7132-5833-4682-a80b-a24a799b94fe | 8-East Bale -18-002 | 2406031604 | APPROVED | uuid:890a7132-5833-4682-a80b-a24a799b94fe | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | |||||||||||||||||||||||||||||||||
| Jun 4, 2024 7:28:34 AM | Jun 4, 2024 7:28:34 AM | Jun 4, 2024 5:47:05 AM | Jun 4, 2024 6:02:04 AM | 353316097353265 | impacteval | 899 | May 14, 2024 | Legesse Hirpa | 4 | 2 | 8 | East Bale | 18 | 002 | East Bale | 18 | 002 | 8-East Bale -18-002 | Bahima Healtg Center | 1 | 1 | 8:30:42 AM | 6 | 1 | 3 | 6 | 1 | 1 | 0 | NULL | NULL | 3 | 3 | 5 | 2 | 2 | 2 | 4 | 4 | 3 | 3 | 3 | 4 | 4 | 3 | 4 | 3 | 3 | 3 | 3 | 3 | 4 | 4 | 4 | 4 | 3 | 3 | 3 | 4 | 4 | 4 | 3 | 4 | 2 | 3 | 4 | 4 | 4 | 4 | 3 | 3 | 3 | 2 | 1 | 0 | 0 | 1 | 5 | 7 | 4 | 7 | 7 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 10:00:02 PM | uuid:16a24f76-0411-4b8e-9ae1-4f60abcb7418 | 8-East Bale -18-002 | 2406031604 | APPROVED | uuid:16a24f76-0411-4b8e-9ae1-4f60abcb7418 | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL |
Showing 5 sample records. Hover over cells to see full content.
System Management
hispmd__audit
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| id | int4(32,0) | No | nextval('hispmd__audit_id_seq'::regclass) | PRIMARY | Primary key identifier |
| datetime | timestamp | No | NULL | Date/time field | |
| ip | varchar | No | NULL | ||
| user | varchar | Yes | NULL | ||
| table | varchar | Yes | NULL | ||
| action | varchar | No | NULL | ||
| description | text | Yes | NULL | Descriptive text field |
This table has no foreign key relationships.
| id | datetime | ip | user | table | action | description |
|---|---|---|---|---|---|---|
| 1 | 2024-08-17 13:04:56 | 196.191.61.140 | admin | public.hispmdusers | login | |
| 2 | 2024-08-17 13:57:59 | 196.191.61.140 | admin | public.hispmdusers | logout | |
| 3 | 2024-08-17 19:54:00 | 196.191.61.140 | michael | public.hispmdusers | login | |
| 4 | 2024-08-17 19:59:34 | 196.188.35.1 | michael | public.hispmdusers | logout | |
| 5 | 2024-08-18 15:25:21 | 196.191.61.140 | admin | public.hispmdusers | login |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| hispmd__audit_pkey | CREATE UNIQUE INDEX hispmd__audit_pkey ON public.hispmd__audit USING btree (id) |
hispmd__locking
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| id | int4(32,0) | No | nextval('hispmd__locking_id_seq'::regclass) | PRIMARY | Primary key identifier |
| table | varchar | No | NULL | ||
| startdatetime | timestamp | No | NULL | Date/time field | |
| confirmdatetime | timestamp | No | NULL | Date/time field | |
| keys | varchar | No | NULL | ||
| sessionid | varchar | No | NULL | ||
| userid | varchar | No | NULL | ||
| action | int4(32,0) | Yes | NULL |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| hispmd__locking_pkey | CREATE UNIQUE INDEX hispmd__locking_pkey ON public.hispmd__locking USING btree (id) |
hispmd_noti
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| id | int4(32,0) | No | nextval('hispmd_noti_id_seq'::regclass) | PRIMARY | Primary key identifier |
| message | text | Yes | NULL | ||
| user | varchar | Yes | NULL | ||
| provider | varchar | Yes | NULL | ||
| title | varchar | Yes | NULL | ||
| url | text | Yes | NULL | ||
| icon | varchar | Yes | NULL | ||
| created | timestamp | Yes | NULL | Record creation timestamp | |
| expire | timestamp | Yes | NULL | ||
| type | int4(32,0) | Yes | NULL | ||
| group | varchar | Yes | NULL |
This table has no foreign key relationships.
| id | message | user | provider | title | url | icon | created | expire | type | group |
|---|---|---|---|---|---|---|---|---|---|---|
| 1 | New Indicator Data Added: 34 | NULL | NULL | Indicator | moh_indicator_data_view.php | fa-envelope | 2024-09-15 17:59:37 | NULL | 0 | NULL |
| 2 | New Indicator Data Added: 34 | NULL | NULL | Indicator | moh_indicator_data_view.php | fa-envelope | 2024-09-15 18:00:34 | NULL | 0 | NULL |
| 3 | New Indicator Data Added: 34 | NULL | NULL | Indicator | moh_indicator_data_view.php | fa-envelope | 2024-09-15 18:01:46 | NULL | 0 | NULL |
| 41 | New Data Added: 83 | NULL | NULL | Indicator Data | moh_indicator_data_view.php | fa-envelope | 2024-09-18 14:27:33 | NULL | 0 | NULL |
| 5 | New Indicator Data Added: 34 | NULL | NULL | Indicator | moh_indicator_data_view.php | fa-envelope | 2024-09-15 18:02:36 | NULL | 0 | NULL |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| hispmd_noti_pkey | CREATE UNIQUE INDEX hispmd_noti_pkey ON public.hispmd_noti USING btree (id) |
hispmd_organisations
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| orgid | int4(32,0) | No | nextval('hispmd_organisations_orgid_seq'::regclass) | PRIMARY | Primary key identifier |
| organisation_name | varchar(255) | No | NULL | Name or title field | |
| organisation_country | varchar(100) | Yes | NULL | ||
| organisation_city | varchar(100) | Yes | NULL | ||
| organisation_address | text | Yes | NULL | ||
| organisation_phone | varchar(50) | Yes | NULL | Phone number field | |
| organisation_email | varchar(255) | Yes | NULL | Email address field | |
| organisation_website | varchar(255) | Yes | NULL |
This table has no foreign key relationships.
| orgid | organisation_name | organisation_country | organisation_city | organisation_address | organisation_phone | organisation_email | organisation_website |
|---|---|---|---|---|---|---|---|
| 1 | Ministry Of Health Ethiopia | Ethiopia | Addis Ababa | 2P8W+GP6, Sudan St, Addis Ababa, Ethiopia | +251115517011 | info@moh.gov.et | https://www.moh.gov.et |
| 2 | MERQ Consultancy PLC LLC | Ethiopia | Addis Ababa | Arbegnoch Street Addis Ababa, Ethiopia | +251118548754 | info@merqconsultancy.org | https://merqconsultancy.org |
| 3 | DUP | John Snow Inc | Ethiopia | Addis Ababa | ||||
| 5 | USAID | ||||||
| 6 | Bill & Melinda Gates Foundation |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| hispmd_organisations_pkey | CREATE UNIQUE INDEX hispmd_organisations_pkey ON public.hispmd_organisations USING btree (orgid) |
hispmd_prism_settings
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| ID | int4(32,0) | No | nextval('"hispmd_prism_settings_ID_seq"'::regclass) | PRIMARY | Primary key identifier |
| prism_data_update | varchar | Yes | NULL | Date/time field |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| hispmd_prism_settings_pkey | CREATE UNIQUE INDEX hispmd_prism_settings_pkey ON public.hispmd_prism_settings USING btree ("ID") |
hispmd_settings
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| ID | int4(32,0) | No | nextval('"hispmd_settings_ID_seq"'::regclass) | PRIMARY | Primary key identifier |
| TYPE | int4(32,0) | Yes | 1 | ||
| NAME | text | Yes | NULL | Name or title field | |
| USERNAME | text | Yes | NULL | Name or title field | |
| COOKIE | varchar | Yes | NULL | ||
| SEARCH | text | Yes | NULL | ||
| TABLENAME | varchar | Yes | NULL | Name or title field |
This table has no foreign key relationships.
| ID | TYPE | NAME | USERNAME | COOKIE | SEARCH | TABLENAME |
|---|---|---|---|---|---|---|
| 1 | 1 | Indicator Data for Reporting Completeness | demo | NULL | {"q":"(Indicator Group~equals~3)(Indicator Name~equals~Reporting completeness - Content)(Data Source... | Indicators_Dashboard |
| 2 | 1 | EPI Under Addis Ababa for 2016 | demo | NULL | {"q":"(dataset_name~equals~\"03 - EPI | Hospital, Health center, Basic Health post, Comprehensive he... | DHIS2_Reporting_Rates_Report |
| 4 | 1 | DH Tigray | Kidane | NULL | {"q":"(indicator_group_id~equals~4)","criteria":null,"f":"(region_id~equals~14)"} | MOH_Indicators_Data_Report |
Showing 3 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| hispmd_settings_pkey | CREATE UNIQUE INDEX hispmd_settings_pkey ON public.hispmd_settings USING btree ("ID") |
hispmd_uggroups
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| GroupID | int4(32,0) | No | nextval('"hispmd_uggroups_GroupID_seq"'::regclass) | PRIMARY | Primary key identifier |
| Label | varchar | Yes | NULL | ||
| Provider | varchar | Yes | ''::character varying | ||
| Comment | text | Yes | NULL |
This table has no foreign key relationships.
| GroupID | Label | Provider | Comment |
|---|---|---|---|
| 1 | Entry | NULL | |
| 2 | DataManager | NULL | |
| 3 | MonitoringEvaluation | NULL |
Showing 3 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| hispmd_uggroups_pkey | CREATE UNIQUE INDEX hispmd_uggroups_pkey ON public.hispmd_uggroups USING btree ("GroupID") |
hispmd_ugmembers
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| UserName | varchar | No | NULL | PRIMARY | Name or title field |
| GroupID | int4(32,0) | No | NULL | PRIMARY | Primary key identifier |
| Provider | varchar | No | ''::character varying | PRIMARY | Primary key identifier |
This table has no foreign key relationships.
| UserName | GroupID | Provider |
|---|---|---|
| merqadmin | -1 | |
| admin | -1 | |
| dataentry | 1 | |
| abush.k@merqconsultancy.org | 2 | |
| FasilMERQ | 3 |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| hispmd_ugmembers_pkey | CREATE UNIQUE INDEX hispmd_ugmembers_pkey ON public.hispmd_ugmembers USING btree ("UserName", "GroupID", "Provider") |
hispmd_ugrights
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| TableName | varchar | No | NULL | PRIMARY | Name or title field |
| GroupID | int4(32,0) | No | NULL | PRIMARY | Primary key identifier |
| AccessMask | varchar | Yes | NULL | ||
| Page | text | Yes | NULL |
This table has no foreign key relationships.
| TableName | GroupID | AccessMask | Page |
|---|---|---|---|
| <global> | -1 | ADESPIM | NULL |
| MFR_Dashboard_Report | -1 | ADESPIM | NULL |
| MFR_Status_Report | -1 | ADESPIM | NULL |
| MFR_Facilities | -1 | ADESPIM | NULL |
| MFR_Region_Report | -1 | ADESPIM | NULL |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| hispmd_ugrights_pkey | CREATE UNIQUE INDEX hispmd_ugrights_pkey ON public.hispmd_ugrights USING btree ("TableName", "GroupID") |
kbarticles
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| ArticleID | int4(32,0) | No | nextval('"kbarticles_ArticleID_seq"'::regclass) | PRIMARY | Primary key identifier |
| Category | varchar | Yes | NULL | ||
| DateCreated | date | Yes | NULL | Date/time field | |
| Problem | text | Yes | NULL | ||
| Solution | text | Yes | NULL | ||
| Title | varchar | Yes | NULL | ||
| Views | int4(32,0) | Yes | NULL | ||
| likecount | int4(32,0) | Yes | NULL | ||
| dislikecount | int4(32,0) | Yes | NULL |
This table has no foreign key relationships.
| ArticleID | Category | DateCreated | Problem | Solution | Title | Views | likecount | dislikecount |
|---|---|---|---|---|---|---|---|---|
| 16 | 3 | 2025-01-09 | <p>How do i access the Indicators Data Report and export filtered data?</p> | <p>Inorder to acces the Indicators Data Report you can directly click on the linke here <a title="In... | Accessing Indicators Data Report | 78 | NULL | NULL |
| 15 | 2 | 2024-09-27 | <p>Using HIS Indicators Chart</p> | <p>Inorder to access the HIS Indicators Chart</p> <p>Go to the left side bar navigation menu and cl... | How to use HIS Indicators Chart | 193 | 3 | NULL |
| 17 | 2 | 2025-01-09 | <p>How to use the Data Visualizer</p> | <p>To start using the data visualizer <br /><br />Go to the left side bar navigation menu and c... | Using the Data Visualizer | 230 | 34 | 1 |
| 14 | 1 | 2024-09-27 | <p><span style="color: #555555; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-si... | <p style="box-sizing: border-box; margin: 0px 0px 10px; color: #555555; font-family: 'Helvetica Neue... | How to create an account or register on HISPMD | 438 | 35 | 1 |
Showing 4 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| kbarticles_pkey | CREATE UNIQUE INDEX kbarticles_pkey ON public.kbarticles USING btree ("ArticleID") |
kbcategories
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| Category | varchar | Yes | NULL | ||
| CategoryID | int4(32,0) | No | nextval('"kbcategories_CategoryID_seq"'::regclass) | PRIMARY | Primary key identifier |
| Description | varchar | Yes | NULL | Descriptive text field | |
| faicon | varchar | Yes | NULL |
This table has no foreign key relationships.
| Category | CategoryID | Description | faicon |
|---|---|---|---|
| Getting Started | 1 | Basic workflows and how to use the system are found here. | fa-flag-checkered |
| Tips and tricks | 2 | Lear and get to know how to operate and navigate through the system. | fa-lightbulb-o |
| FAQ | 3 | Frequently Asked Questions are found here | fa-question-circle |
| Troubleshooting | 4 | The best ways to resolve and find solutions for common encounters. | fa-gears |
| System Administration and Configurations | 5 | System related questions and answers | fa-code |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| kbcategories_pkey | CREATE UNIQUE INDEX kbcategories_pkey ON public.kbcategories USING btree ("CategoryID") |
kbcomments
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| name | varchar | Yes | NULL | Name or title field | |
| moderated | int4(32,0) | Yes | NULL | ||
| created_date | timestamp | Yes | NULL | Date/time field | |
| ArticleID | int4(32,0) | Yes | NULL | ||
| comment | text | Yes | NULL | ||
| CommentID | int4(32,0) | No | nextval('"kbcomments_CommentID_seq"'::regclass) | PRIMARY | Primary key identifier |
| varchar | Yes | NULL | Email address field |
This table has no foreign key relationships.
| name | moderated | created_date | ArticleID | comment | CommentID | |
|---|---|---|---|---|---|---|
| Demo Testing User | 1 | 2024-09-26 20:08:49 | 5 | <p>Good</p> | 1 | demo |
| Demo Testing User | 0 | 2024-09-27 19:45:01 | 14 | <p>Thank you! </p> | 2 | demo |
Showing 2 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| kbcomments_pkey | CREATE UNIQUE INDEX kbcomments_pkey ON public.kbcomments USING btree ("CommentID") |
kbusers
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| varchar | No | NULL | PRIMARY | Email address field | |
| fullname | varchar | Yes | NULL | Name or title field | |
| password | varchar | Yes | NULL | ||
| username | varchar | Yes | NULL | Name or title field |
This table has no foreign key relationships.
| fullname | password | username | |
|---|---|---|---|
| admin@admin.com | admin | admin | admin |
| test@test.com | test user | test | test |
Showing 2 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| kbusers_pkey | CREATE UNIQUE INDEX kbusers_pkey ON public.kbusers USING btree (email) |
hispmd_visualization_dashboards
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| id | int4(32,0) | No | nextval('hispmd_visualization_dashboards_id_seq'::regclass) | PRIMARY | Primary key identifier |
| dashboard_name | varchar(255) | No | NULL | UNIQUE | Name or title field |
| dashboard_data | jsonb | No | NULL | ||
| created_at | timestamp | Yes | CURRENT_TIMESTAMP | Record creation timestamp | |
| updated_at | timestamp | Yes | CURRENT_TIMESTAMP | Date/time field | |
| created_by | varchar(100) | Yes | 'system'::character varying | Record creation timestamp | |
| is_active | bool | Yes | true | Boolean flag field | |
| dashboard_type | varchar(20) | Yes | 'dashboard'::character varying | ||
| is_public | bool | Yes | true | Boolean flag field |
This table has no foreign key relationships.
| id | dashboard_name | dashboard_data | created_at | updated_at | created_by | is_active | dashboard_type | is_public |
|---|---|---|---|---|---|---|---|---|
| 3 | HIS dashboard_2025-06-29 | {"charts": [{"id": 1747766606692, "type": "combination", "title": "IR Woreda", "width": 544, "xAxis"... | 2024-06-29 08:45:53 | 2024-06-29 08:45:53 | system | 1 | dashboard | 1 |
| 5 | dashboard_2025-09-23 | {"charts": [{"id": 1758629057678, "type": "column", "title": "Proportion of health facilities with u... | 2024-09-23 15:06:20 | 2024-09-23 15:06:20 | system | 1 | dashboard | 1 |
| 7 | Regional_Comparison_Dashboard | {"charts": [{"id": 1758629057682, "type": "bar", "title": "Regional Completeness Comparison", "width... | 2024-10-02 10:15:00 | 2025-10-03 20:34:55 | system | dashboard | 1 | |
| 6 | National_Performance_Overview | {"charts": [{"id": 1758629057679, "type": "column", "title": "National Data Quality Overview 2024", ... | 2024-10-01 09:00:00 | 2025-10-03 20:35:02 | system | dashboard | 1 | |
| 4 | dashboard_2025-06-29 | {"charts": [], "created": "2024-06-29 10:24:44", "filters": {"year": [], "scope": [], "region": [], ... | 2024-06-29 10:24:44 | 2025-10-03 20:35:18 | system | dashboard | 1 |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| hispmd_visualization_dashboards_dashboard_name_key | CREATE UNIQUE INDEX hispmd_visualization_dashboards_dashboard_name_key ON public.hispmd_visualization_dashboards USING btree (dashboard_name) |
| hispmd_visualization_dashboards_pkey | CREATE UNIQUE INDEX hispmd_visualization_dashboards_pkey ON public.hispmd_visualization_dashboards USING btree (id) |
| idx_created_at | CREATE INDEX idx_created_at ON public.hispmd_visualization_dashboards USING btree (created_at) |
| idx_dashboard_name | CREATE INDEX idx_dashboard_name ON public.hispmd_visualization_dashboards USING btree (dashboard_name) |
| idx_dashboard_type | CREATE INDEX idx_dashboard_type ON public.hispmd_visualization_dashboards USING btree (dashboard_type) |
| idx_updated_at | CREATE INDEX idx_updated_at ON public.hispmd_visualization_dashboards USING btree (updated_at) |
webreports
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| rpt_id | int4(32,0) | No | nextval('webreports_rpt_id_seq'::regclass) | PRIMARY | Primary key identifier |
| rpt_name | varchar | No | NULL | Name or title field | |
| rpt_title | varchar | No | NULL | ||
| rpt_cdate | timestamp | No | NULL | Date/time field | |
| rpt_mdate | timestamp | No | NULL | Date/time field | |
| rpt_content | text | No | NULL | ||
| rpt_owner | varchar | No | NULL | ||
| rpt_status | varchar | No | NULL | ||
| rpt_type | varchar | No | NULL |
This table has no foreign key relationships.
| rpt_id | rpt_name | rpt_title | rpt_cdate | rpt_mdate | rpt_content | rpt_owner | rpt_status | rpt_type |
|---|---|---|---|---|---|---|---|---|
| 1 | public_ethprism_additional_organizational_and_behavioral_assessment_1 | public.ethprism_additional_organizational_and_behavioral_assessment Report 1 | 2024-08-28 18:34:41 | 2024-08-28 18:35:41 | <report> <attr value="table_type">project</attr> <attr value="group_fields"><attr value="0"><attr va... | admin | private | report |
| 2 | public_ethprism_additional_organizational_and_behavioral_assessment_1 | public.ethprism_additional_organizational_and_behavioral_assessment Chart 1 | 2024-08-28 18:36:38 | 2024-08-28 18:37:15 | <report> <attr value="table_type">project</attr> <attr value="tables"><attr value="0">public.ethpris... | admin | private | chart |
| 3 | public_mfr_dashboard_reports_2 | public.mfr_dashboard_reports Report 2 | 2024-08-30 20:07:58 | 2024-08-30 20:09:37 | <report> <attr value="table_type">db</attr> <attr value="tables"><attr value="0">public.mfr_faciliti... | Guest | private | report |
| 4 | public_mfr_facilities_register_4 | public.mfr_facilities_register Report 4 | 2024-09-03 16:46:27 | 2024-09-03 16:46:27 | <report> <attr value="table_type">db</attr> <attr value="group_fields"><attr value="0"><attr value="... | admin | private | report |
| 5 | public_mfr_facilities_register_5 | public.mfr_facilities_register Report 5 | 2024-09-03 16:48:59 | 2024-09-03 16:54:56 | <report> <attr value="table_type">project</attr> <attr value="group_fields"><attr value="0"><attr va... | admin | private | report |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| webreports_pkey | CREATE UNIQUE INDEX webreports_pkey ON public.webreports USING btree (rpt_id) |
Digital Health
digitalhealth
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| dh_id | varchar(255) | No | NULL | PRIMARY | Primary key identifier |
| site_type | varchar(255) | Yes | NULL | ||
| dhis2_functional | varchar(255) | Yes | '0'::character varying | ||
| dhis2_online | varchar(255) | Yes | '0'::character varying | ||
| mfr_updated | varchar(255) | Yes | '0'::character varying | Date/time field | |
| echis_implemented | varchar(255) | Yes | '0'::character varying | ||
| emr_status | varchar(255) | Yes | NULL | ||
| ihris_hra_implemented | varchar(255) | Yes | '0'::character varying | ||
| hcmis_implemented | varchar(255) | Yes | '0'::character varying |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| pk_digitalhealth | CREATE UNIQUE INDEX pk_digitalhealth ON public.digitalhealth USING btree (dh_id) |
digitalhealthapps
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| app_id | varchar(255) | No | NULL | PRIMARY | Primary key identifier |
| name | varchar(255) | No | NULL | Name or title field | |
| standards_met | varchar(255) | Yes | '0'::character varying |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| pk_digitalhealthapps | CREATE UNIQUE INDEX pk_digitalhealthapps ON public.digitalhealthapps USING btree (app_id) |
EIDM
eidm_settings
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| id | int4(32,0) | No | nextval('eidm_settings_id_seq'::regclass) | PRIMARY | Primary key identifier |
| dx | text | No | NULL | ||
| ou | text | No | NULL | ||
| pe | text | No | NULL | ||
| created_at | timestamp | Yes | CURRENT_TIMESTAMP | Record creation timestamp | |
| name | varchar(255) | Yes | NULL | Name or title field |
This table has no foreign key relationships.
| id | dx | ou | pe | created_at | name |
|---|---|---|---|---|---|
| 1 | UShQ9Rnu0WO,q39ICC6JBpK,FcJP07Upvag,v5eNsbOhuWN,mydhncZSS07,hIDi7b12D9L,ddfTtyLo98v,bO7fMJJKQMV,SIVu... | yY9BLUUegel,UFtGyqJMEZh,yb9NKGA8uqt,Fccw8uMlJHN,tDoLtk2ylu4,G9hDiPNoB7d,moBiwh9h5Ce,b9nYedsL8te,XU2w... | LAST_4_QUARTERS,LAST_QUARTER,QUARTERS_THIS_YEAR,THIS_QUARTER | 2025-04-21 00:00:00 | eidm_default |
Showing 1 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| eidm_settings_pkey | CREATE UNIQUE INDEX eidm_settings_pkey ON public.eidm_settings USING btree (id) |
eidm_hc
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| indicator | varchar(255) | No | NULL | ||
| organisation_unit | varchar(255) | No | NULL | ||
| period | varchar(255) | No | NULL | ||
| value | numeric | No | NULL | ||
| relative_period | varchar(255) | Yes | NULL | ||
| fetched_at | timestamp | Yes | CURRENT_TIMESTAMP |
This table has no foreign key relationships.
| indicator | organisation_unit | period | value | relative_period | fetched_at |
|---|---|---|---|---|---|
| EIDM_Hosp - Data use score | South Ethiopia Region | 2017 Tik -2017 Tah, 2017 Tir -2017 Meg, 2017 Mia -2017 Sen, 2017 Ham -2018 Mes | 31.9 | LAST_4_QUARTERS | 2025-10-17 21:01:42.576682 |
| EIDM_Wor - Data use score | Tigray Region | 2017 Tik -2017 Tah, 2017 Tir -2017 Meg, 2017 Mia -2017 Sen, 2017 Ham -2018 Mes | 28 | LAST_4_QUARTERS | 2025-10-17 21:01:42.576682 |
| EIDM_Wor - Data use score | Oromia Region | 2017 Tik -2017 Tah, 2017 Tir -2017 Meg, 2017 Mia -2017 Sen, 2017 Ham -2018 Mes | 34.8 | LAST_4_QUARTERS | 2025-10-17 21:01:42.576682 |
| EIDM_HC - Structure and resources score | Dire Dawa City Administration | 2017 Tik -2017 Tah, 2017 Tir -2017 Meg, 2017 Mia -2017 Sen, 2017 Ham -2018 Mes | 28.5 | LAST_4_QUARTERS | 2025-10-17 21:01:42.576682 |
| EIDM_HP - Data use score | Gambella Region | 2017 Tik -2017 Tah, 2017 Tir -2017 Meg, 2017 Mia -2017 Sen, 2017 Ham -2018 Mes | 24 | LAST_4_QUARTERS | 2025-10-17 21:01:42.576682 |
Showing 5 sample records. Hover over cells to see full content.
Other Tables
countries
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| country_id | int4(32,0) | No | nextval('countries_country_id_seq'::regclass) | PRIMARY | Primary key identifier |
| country_name | varchar | Yes | NULL | Name or title field | |
| iso_code | varchar | Yes | NULL | ||
| is_active | bool | Yes | NULL | Boolean flag field | |
| created_at | timestamp | Yes | NULL | Record creation timestamp | |
| updated_at | timestamp | Yes | NULL | Date/time field |
This table has no foreign key relationships.
| country_id | country_name | iso_code | is_active | created_at | updated_at |
|---|---|---|---|---|---|
| 1 | Ethiopia | ETH | 1 | 2025-10-12 00:00:00 | NULL |
Showing 1 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| countries_pkey | CREATE UNIQUE INDEX countries_pkey ON public.countries USING btree (country_id) |
dataquality
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| dq_id | int8(64,0) | No | NULL | PRIMARY | Primary key identifier |
| report_type | varchar(100) | Yes | NULL | ||
| timeliness_percentage | Yes | NULL | Date/time field | ||
| completeness_percentage | Yes | NULL |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| pk_dataquality | CREATE UNIQUE INDEX pk_dataquality ON public.dataquality USING btree (dq_id) |
datause
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| use_id | varchar(255) | No | NULL | PRIMARY | Primary key identifier |
| institution_type | varchar(255) | Yes | NULL | ||
| pmt_active | varchar(255) | Yes | '0'::character varying | ||
| baseline_assessment | varchar(255) | Yes | '0'::character varying |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| pk_datause | CREATE UNIQUE INDEX pk_datause ON public.datause USING btree (use_id) |
ai_data_assistant
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| id | int8(64,0) | No | NULL | PRIMARY | Primary key identifier |
| chatbot | varchar(50) | Yes | NULL |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| pk_ai_data_assistant | CREATE UNIQUE INDEX pk_ai_data_assistant ON public.ai_data_assistant USING btree (id) |
alembic_version
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| version_num | varchar(32) | No | NULL | PRIMARY |
This table has no foreign key relationships.
| version_num |
|---|
| 001_create_chat_history_table |
Showing 1 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| alembic_version_pkc | CREATE UNIQUE INDEX alembic_version_pkc ON public.alembic_version USING btree (version_num) |
chat_history
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| id | int4(32,0) | No | nextval('chat_history_id_seq'::regclass) | PRIMARY | Primary key identifier |
| chat_history | varchar | Yes | NULL |
This table has no foreign key relationships.
| id | chat_history |
|---|---|
| 28 | {"human": "You (2024-09-22 17:26:22): which indicator has the highest value and in which year ", "AI... |
| 29 | {"human": "You (2024-09-22 17:27:12): Retrieve the number of data quality issues reported per month ... |
| 30 | {"human": "You (2024-09-22 17:33:37): how many regions are there in moh regions table", "AI": "MERQ ... |
| 31 | {"human": "You (2024-09-22 17:34:18): how many regions are there in moh regions table?", "AI": "MERQ... |
| 32 | {"human": "You (2024-09-22 17:34:56): how many regions are there in moh regions table?", "AI": "MERQ... |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| chat_history_pkey | CREATE UNIQUE INDEX chat_history_pkey ON public.chat_history USING btree (id) |
faicons
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| id | int4(32,0) | No | nextval('faicons_id_seq'::regclass) | PRIMARY | Primary key identifier |
| icon | varchar | Yes | NULL |
This table has no foreign key relationships.
| id | icon |
|---|---|
| 2 | fa-glass |
| 3 | fa-music |
| 4 | fa-search |
| 5 | fa-envelope-o |
| 6 | fa-heart |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| faicons_pkey | CREATE UNIQUE INDEX faicons_pkey ON public.faicons USING btree (id) |
financialresources
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| resource_id | int8(64,0) | No | NULL | PRIMARY | Primary key identifier |
| year | int8(64,0) | No | NULL | ||
| amount | numeric(15,2) | Yes | NULL | ||
| utilized | numeric(15,2) | Yes | NULL | ||
| region_id | int8(64,0) | Yes | NULL |
This table has no foreign key relationships.
| resource_id | year | amount | utilized | region_id |
|---|---|---|---|---|
| 1 | 2024 | 100000.00 | 65000.00 | 1 |
Showing 1 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| pk_financialresources | CREATE UNIQUE INDEX pk_financialresources ON public.financialresources USING btree (resource_id) |
| region_id_financialresources | CREATE INDEX region_id_financialresources ON public.financialresources USING btree (region_id) |
healthfacilities
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| hf_id | varchar(255) | No | NULL | PRIMARY | Primary key identifier |
| name | varchar(255) | No | NULL | Name or title field | |
| type | varchar(255) | No | NULL | ||
| his_audit_started | varchar(255) | Yes | '0'::character varying |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| pk_healthfacilities | CREATE UNIQUE INDEX pk_healthfacilities ON public.healthfacilities USING btree (hf_id) |
healthunits
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| unit_id | varchar(255) | No | NULL | PRIMARY | Primary key identifier |
| name | varchar(255) | No | NULL | Name or title field | |
| type | varchar(255) | No | NULL | ||
| strategic_plan | varchar(255) | Yes | '0'::character varying |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| pk_healthunits | CREATE UNIQUE INDEX pk_healthunits ON public.healthunits USING btree (unit_id) |
hisgovernance
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| governance_id | varchar(255) | No | NULL | PRIMARY | Primary key identifier |
| level | varchar(255) | No | NULL | ||
| is_functional | varchar(255) | Yes | '0'::character varying | Boolean flag field |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| pk_hisgovernance | CREATE UNIQUE INDEX pk_hisgovernance ON public.hisgovernance USING btree (governance_id) |
hispartners
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| partner_id | varchar(255) | No | NULL | PRIMARY | Primary key identifier |
| name | varchar(255) | No | NULL | Name or title field | |
| aligned_plan | varchar(255) | Yes | '0'::character varying |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| pk_hispartners | CREATE UNIQUE INDEX pk_hispartners ON public.hispartners USING btree (partner_id) |
mfr_dashboard_reports
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| type | varchar(255) | Yes | NULL | ||
| name | varchar(255) | Yes | NULL | Name or title field | |
| count | int8(64,0) | Yes | NULL |
This table has no foreign key relationships.
| type | name | count |
|---|---|---|
| source_of_power | Biogas | 299 |
| facility_type | ImagingCenters | 29 |
| facility_type | Nursing Home | 1 |
| ownership_type | Private Not for profit | 369 |
| facility_type | 72 |
Showing 5 sample records. Hover over cells to see full content.
mfr_facilities_register
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| id | int4(32,0) | No | NULL | PRIMARY | Primary key identifier |
| name | text | Yes | NULL | Name or title field | |
| status | text | Yes | NULL | ||
| operationalstatus | text | Yes | NULL | ||
| facilitytype | text | Yes | NULL | ||
| parentfacilitytype | text | Yes | NULL | ||
| region | text | Yes | NULL | ||
| zone | text | Yes | NULL | ||
| woreda | text | Yes | NULL |
This table has no foreign key relationships.
| id | name | status | operationalstatus | facilitytype | parentfacilitytype | region | zone | woreda |
|---|---|---|---|---|---|---|---|---|
| 1075435 | 010 Arka Chinga Health Post | Approved | Closed | Basic Health Post | Health Post | Amhara Region | South Wollo Zone | Delanta |
| 1071938 | 010 Durka Health Post | Approved | Operational | Basic Health Post | Health Post | Amhara Region | South Wollo Zone | Amhara Sayint |
| 1075083 | 010 Hara Health Post | Approved | Closed | Basic Health Post | Health Post | Amhara Region | South Wollo Zone | Tehulederie |
| 1073344 | 010 Keyamara Health Post | Approved | Operational | Basic Health Post | Health Post | Amhara Region | South Wollo Zone | Kelela |
| 1074599 | 010 Kire gebeya Health post | Approved | Operational | Basic Health Post | Health Post | Amhara Region | South Wollo Zone | Legehida |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| mfr_facilities_pkey | CREATE UNIQUE INDEX mfr_facilities_pkey ON public.mfr_facilities_register USING btree (id) |
mfr_operational_status
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| operationalstatus | varchar(255) | Yes | NULL | ||
| status | varchar(255) | Yes | NULL | ||
| count | int8(64,0) | Yes | NULL |
This table has no foreign key relationships.
| operationalstatus | status | count |
|---|---|---|
| Closed | Approved | 4552 |
| Closed | Denied | 13 |
| Closed | Pending | 288 |
| Currently Not Operational | Approved | 216 |
| Currently Not Operational | Pending | 68 |
Showing 5 sample records. Hover over cells to see full content.
mfr_woreda
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| woreda | varchar(255) | Yes | NULL | ||
| lat | varchar(255) | Yes | NULL | ||
| lng | varchar(255) | Yes | NULL | ||
| count | int8(64,0) | Yes | NULL |
This table has no foreign key relationships.
| woreda | lat | lng | count |
|---|---|---|---|
| Abala Abaya | 6.687875 | 37.843953 | 1 |
| Abala City Administration | 13.365576447113 | 39.756239082129 | 25 |
| Abala Woreda | 13.239007238701 | 39.835776921469 | 6 |
| Abaqaraw | 6.2885128 | 42.739834075 | 6 |
| Abaya | 6.2759652949974 | 38.192399131876 | 46 |
Showing 5 sample records. Hover over cells to see full content.
mfr_zone
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| zone | varchar(255) | Yes | NULL | ||
| lat | varchar(255) | Yes | NULL | ||
| lng | varchar(255) | Yes | NULL | ||
| count | int8(64,0) | Yes | NULL |
This table has no foreign key relationships.
| zone | lat | lng | count |
|---|---|---|---|
| Adama Town | 8.5404416287309 | 39.269939577124 | 497 |
| Addis Ketema Sub City | 9.0403528863067 | 38.719498071639 | 198 |
| Afder | 5.6157720461364 | 42.109941092573 | 248 |
| Agaro Towm | 7.8529084294618 | 36.589125252828 | 41 |
| Agniwa zone | 7.7160772230671 | 34.481405001811 | 98 |
Showing 5 sample records. Hover over cells to see full content.
mfr_region
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| region | varchar(255) | Yes | NULL | ||
| lat | varchar(255) | Yes | NULL | ||
| lng | varchar(255) | Yes | NULL | ||
| count | int8(64,0) | Yes | NULL | ||
| region_id | int4(32,0) | Yes | NULL |
This table has no foreign key relationships.
| region | lat | lng | count | region_id |
|---|---|---|---|---|
| Addis Ababa City Administration | 8.9973923470995 | 38.765273579752 | 3065 | 1 |
| Afar Region | 11.441045709388 | 40.406054777687 | 735 | 2 |
| Amhara Region | 11.236085461693 | 38.278901287387 | 10570 | 3 |
| Benishangul-Gumuz Region | 10.426463014648 | 35.293170198576 | 791 | 4 |
| Central Ethiopia Region | 7.7066986601203 | 37.983521770658 | 2719 | 5 |
Showing 5 sample records. Hover over cells to see full content.
publications
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| publication_id | int8(64,0) | No | NULL | PRIMARY | Primary key identifier |
| title | varchar(255) | No | NULL | ||
| level | varchar(255) | No | NULL |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| pk_publications | CREATE UNIQUE INDEX pk_publications ON public.publications USING btree (publication_id) |
regions
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| region_id | varchar(255) | No | NULL | PRIMARY | Primary key identifier |
| name | varchar(255) | No | NULL | Name or title field | |
| his_strategic_plan | varchar(255) | Yes | '0'::character varying |
This table has no foreign key relationships.
| region_id | name | his_strategic_plan |
|---|---|---|
| 1 | Addis Ababa | True |
| 2 | Afar | True |
| 3 | Amhara | True |
| 4 | Benishangul-Gumuz | False |
| 5 | Central Ethiopia | False |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| pk_regions | CREATE UNIQUE INDEX pk_regions ON public.regions USING btree (region_id) |
research
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| research_id | varchar(255) | No | NULL | PRIMARY | Primary key identifier |
| title | varchar(255) | No | NULL | ||
| conducted | varchar(255) | Yes | '0'::character varying |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| pk_research | CREATE UNIQUE INDEX pk_research ON public.research USING btree (research_id) |
timetracker
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| trackerid | int4(32,0) | No | nextval('timetracker_trackerid_seq'::regclass) | PRIMARY | Primary key identifier |
| pagename | varchar(250) | Yes | NULL::character varying | Name or title field | |
| timeon | timestamp | Yes | NULL | Date/time field | |
| timeoff | timestamp | Yes | NULL | Date/time field | |
| userid | varchar(100) | Yes | NULL::character varying | ||
| recordid | varchar(100) | Yes | NULL::character varying |
This table has no foreign key relationships.
| trackerid | pagename | timeon | timeoff | userid | recordid |
|---|---|---|---|---|---|
| 2 | mfr_facilities_register_list.php | 2024-08-22 18:12:55 | 2024-08-22 18:12:56 | Guest | NULL |
| 3 | mfr_facilities_register_list.php | 2024-08-22 18:12:56 | 2024-08-22 18:12:57 | Guest | NULL |
| 1 | mfr_facilities_register_list.php | 2024-08-22 18:12:54 | 2024-08-22 18:12:57 | Guest | NULL |
| 34 | mfr_facilities_register_view.php | 2024-08-22 18:15:46 | 2024-08-22 18:15:47 | Guest | 1053907 |
| 54 | mfr_facilities_register_view.php | 2024-08-22 18:19:26 | 2024-08-22 18:19:29 | Guest | 1054886 |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| timetracker_pkey | CREATE UNIQUE INDEX timetracker_pkey ON public.timetracker USING btree (trackerid) |
webreport_admin
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| id | int4(32,0) | No | nextval('webreport_admin_id_seq'::regclass) | PRIMARY | Primary key identifier |
| tablename | varchar | No | NULL | Name or title field | |
| db_type | varchar | No | NULL | ||
| group_name | varchar | No | NULL | Name or title field |
This table has no foreign key relationships.
| id | tablename | db_type | group_name |
|---|---|---|---|
| 1156 | public.moh_indicator_data | project | |
| 1157 | public.moh_indicator_data | project | |
| 1158 | public.moh_indicator_data | project | |
| 1159 | public.ethprism_additional_organizational_and_behavioral_assessment | db | -1 |
| 1160 | public.ai_data_assistant | db | -1 |
Showing 5 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| webreport_admin_pkey | CREATE UNIQUE INDEX webreport_admin_pkey ON public.webreport_admin USING btree (id) |
webreport_sql
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| id | int4(32,0) | No | nextval('webreport_sql_id_seq'::regclass) | PRIMARY | Primary key identifier |
| sqlname | varchar | No | NULL | Name or title field | |
| sqlcontent | text | No | NULL |
This table has no foreign key relationships.
| id | sqlname | sqlcontent |
|---|---|---|
| 1 | Indicators Data Chart Query | SELECT "Moh Indicators - Indicator"."indicator_name" AS "Moh Indicators - Indicator__indicator_nam... |
| 2 | HISPMD Data Values | SELECT ig.indicator_group_name AS "Indicator Group", mi.indicator_name AS "Indicator Name", mi... |
Showing 2 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| webreport_sql_pkey | CREATE UNIQUE INDEX webreport_sql_pkey ON public.webreport_sql USING btree (id) |
webreport_style
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| report_style_id | int4(32,0) | No | nextval('webreport_style_report_style_id_seq'::regclass) | PRIMARY | Primary key identifier |
| type | varchar | No | NULL | ||
| field | varchar | No | NULL | ||
| group | varchar | No | NULL | ||
| style_str | varchar | No | NULL | ||
| uniq | varchar | No | NULL | ||
| repname | varchar | No | NULL | Name or title field | |
| styletype | varchar | No | NULL |
This table has no foreign key relationships.
No sample data available for this table.
| Index Name | Definition |
|---|---|
| webreport_style_pkey | CREATE UNIQUE INDEX webreport_style_pkey ON public.webreport_style USING btree (report_style_id) |
workforce
| Column | Type | Nullable | Default | Key | Description |
|---|---|---|---|---|---|
| workforce_id | varchar(255) | No | NULL | PRIMARY | Primary key identifier |
| region_id | varchar(255) | Yes | NULL | ||
| adequate_staff | varchar(255) | Yes | '0'::character varying | ||
| competency_index | varchar(255) | Yes | NULL |
This table has no foreign key relationships.
| workforce_id | region_id | adequate_staff | competency_index |
|---|---|---|---|
| 1 | 1 | True | 1 |
Showing 1 sample records. Hover over cells to see full content.
| Index Name | Definition |
|---|---|
| pk_workforce | CREATE UNIQUE INDEX pk_workforce ON public.workforce USING btree (workforce_id) |
| region_id_workforce | CREATE INDEX region_id_workforce ON public.workforce USING btree (region_id) |
Sample Queries
Practical SQL query examples for common HISPMD operations and reporting.
DHIS2 Reporting Analysis
Reporting Rates by Organization Unit
-- Get DHIS2 reporting rates by organization unit for latest period
SELECT
ou.name as organisation_unit,
rr.period_name,
rr.reporting_rate,
rr.actual_reports,
rr.expected_reports,
CASE
WHEN rr.reporting_rate >= 90 THEN 'High'
WHEN rr.reporting_rate >= 70 THEN 'Medium'
ELSE 'Low'
END as performance_category
FROM dhis2_reporting_rates rr
JOIN dhis2_organisation_units ou ON rr.organisation_unit_id = ou.organisation_unit_id
JOIN dhis2_periods p ON rr.period_id = p.period_id
WHERE p.end_date = (SELECT MAX(end_date) FROM dhis2_periods)
ORDER BY rr.reporting_rate DESC;
Monthly Reporting Trends
-- Monthly reporting trend for specific organization unit
SELECT
p.period_name,
p.start_date,
p.end_date,
rr.reporting_rate,
LAG(rr.reporting_rate) OVER (ORDER BY p.start_date) as previous_rate,
rr.reporting_rate - LAG(rr.reporting_rate) OVER (ORDER BY p.start_date) as change
FROM dhis2_reporting_rates rr
JOIN dhis2_periods p ON rr.period_id = p.period_id
WHERE rr.organisation_unit_id = 'ORG_UNIT_ID'
AND p.start_date >= CURRENT_DATE - INTERVAL '12 months'
ORDER BY p.start_date;
Health Facility Performance
Facility Performance Dashboard
-- Comprehensive facility performance view
SELECT
hf.facility_name,
hf.facility_type,
r.region_name,
ou.name as dhis2_org_unit,
rr.reporting_rate,
prism.overall_score as prism_score,
CASE
WHEN rr.reporting_rate >= 90 AND prism.overall_score >= 80 THEN 'High Performance'
WHEN rr.reporting_rate >= 70 AND prism.overall_score >= 60 THEN 'Medium Performance'
ELSE 'Needs Improvement'
END as performance_category
FROM moh_health_facilities hf
LEFT JOIN moh_regions r ON hf.region_id = r.region_id
LEFT JOIN dhis2_organisation_units ou ON hf.dhis2_org_unit_id = ou.organisation_unit_id
LEFT JOIN dhis2_reporting_rates rr ON ou.organisation_unit_id = rr.organisation_unit_id
AND rr.period_id = (SELECT period_id FROM dhis2_periods ORDER BY end_date DESC LIMIT 1)
LEFT JOIN ethprism_facility_level_rhis_performance_diagnostic prism
ON hf.facility_id = prism.facility_id
WHERE hf.is_active = true
ORDER BY performance_category, rr.reporting_rate DESC;
PRISM Assessment Analysis
-- PRISM assessment results by facility type and region
SELECT
r.region_name,
hf.facility_type,
COUNT(*) as facility_count,
ROUND(AVG(prism.technical_score), 2) as avg_technical_score,
ROUND(AVG(prism.organizational_score), 2) as avg_organizational_score,
ROUND(AVG(prism.behavioral_score), 2) as avg_behavioral_score,
ROUND(AVG(prism.overall_score), 2) as avg_overall_score
FROM ethprism_facility_level_rhis_performance_diagnostic prism
JOIN moh_health_facilities hf ON prism.facility_id = hf.facility_id
JOIN moh_regions r ON hf.region_id = r.region_id
GROUP BY r.region_name, hf.facility_type
ORDER BY r.region_name, avg_overall_score DESC;
Digital Health Monitoring
Digital Health Tool Implementation
-- Digital health tools implementation status by region
SELECT
r.region_name,
COUNT(DISTINCT dh.tool_id) as tools_implemented,
COUNT(DISTINCT hf.facility_id) as facilities_covered,
ROUND(COUNT(DISTINCT hf.facility_id) * 100.0 /
(SELECT COUNT(*) FROM moh_health_facilities WHERE region_id = r.region_id), 2) as coverage_percent
FROM digitalhealth dh
JOIN moh_health_facilities hf ON dh.facility_id = hf.facility_id
JOIN moh_regions r ON hf.region_id = r.region_id
WHERE dh.implementation_status = 'Implemented'
GROUP BY r.region_name
ORDER BY coverage_percent DESC;
User Access and Permissions
-- User access summary by organization
SELECT
o.organisation_name,
COUNT(DISTINCT u.user_id) as user_count,
COUNT(DISTINCT CASE WHEN u.is_active = true THEN u.user_id END) as active_users,
COUNT(DISTINCT CASE WHEN u.role = 'admin' THEN u.user_id END) as admin_users,
MAX(u.last_login) as last_activity
FROM hispmd_users u
JOIN hispmd_organisations o ON u.organisation_id = o.organisation_id
GROUP BY o.organisation_name
ORDER BY user_count DESC;
Data Quality and Validation
Data Completeness Check
-- Check data completeness for key indicators
SELECT
indicator_name,
COUNT(*) as total_records,
COUNT(CASE WHEN value IS NOT NULL THEN 1 END) as non_null_records,
ROUND(COUNT(CASE WHEN value IS NOT NULL THEN 1 END) * 100.0 / COUNT(*), 2) as completeness_percent
FROM moh_indicators
WHERE is_active = true
GROUP BY indicator_name
HAVING COUNT(CASE WHEN value IS NOT NULL THEN 1 END) * 100.0 / COUNT(*) < 90
ORDER BY completeness_percent ASC;
System Performance Monitoring
-- System performance and data timeliness
SELECT
tool_name,
implementation_status,
COUNT(*) as implementation_count,
AVG(performance_score) as avg_performance,
MIN(last_sync_date) as oldest_sync,
MAX(last_sync_date) as latest_sync
FROM digitalhealth
WHERE implementation_status IN ('Implemented', 'Pilot')
GROUP BY tool_name, implementation_status
ORDER BY avg_performance DESC;
Best Practices
Database Development Guidelines
Query Optimization
- Use EXPLAIN ANALYZE to identify performance bottlenecks in complex queries
- Create composite indexes for frequently queried column combinations
- Use partial indexes for filtered queries on large tables
- Implement materialized views for complex aggregations and reports
Data Integrity
- Always use transactions for operations modifying multiple related tables
- Implement CHECK constraints for domain-specific validation rules
- Use appropriate data types (e.g., DATE for dates, NUMERIC for precise calculations)
- Set up foreign key constraints with proper ON DELETE/UPDATE actions
Security Considerations
- Use parameterized queries to prevent SQL injection attacks
- Implement row-level security for sensitive health data
- Regularly audit user permissions and access patterns
- Encrypt sensitive data using PostgreSQL's pgcrypto extension
API Reference
Common API endpoints and data access patterns for HISPMD integration.
RESTful Endpoints
DHIS2 Integration API
-- GET /api/dhis2/reporting-rates?period=2024Q1&orgUnit=LEVEL_3
SELECT rr.*, ou.name as org_unit_name, p.period_name
FROM dhis2_reporting_rates rr
JOIN dhis2_organisation_units ou ON rr.organisation_unit_id = ou.organisation_unit_id
JOIN dhis2_periods p ON rr.period_id = p.period_id
WHERE p.period_name = '2024Q1'
AND ou.organisation_level = 'LEVEL_3'
ORDER BY rr.reporting_rate DESC;
Facility Performance API
-- GET /api/facilities/performance?region=ADDIS_ABABA&facilityType=HOSPITAL
SELECT hf.*, r.region_name, prism.overall_score as prism_score
FROM moh_health_facilities hf
LEFT JOIN moh_regions r ON hf.region_id = r.region_id
LEFT JOIN ethprism_facility_level_rhis_performance_diagnostic prism
ON hf.facility_id = prism.facility_id
WHERE hf.region_id = 'REGION_ID'
AND hf.facility_type = 'HOSPITAL'
AND hf.is_active = true;